/* ============================================================
   Evolvio Learning — Dach-Landingpage
   Brand tokens + base styles
   ============================================================ */

:root {
  /* Brand colors (verbindlich) */
  --navy-deep: #0D2137;
  --navy-mid:  #1E3A5F;
  --green:     #6DB33F;
  --green-light: #A8D470;
  --cream:     #F5F2EC;
  --white:     #FFFFFF;

  /* Ordivio product palette (blue/cyan — aus Logo & App-UI) */
  --ordivio:        #2E7DD2;
  --ordivio-bright: #57B7E8;
  --ordivio-deep:   #1E6FC4;
  --ordivio-grad:   linear-gradient(120deg, #57B7E8 0%, #2E7DD2 100%);

  /* Derived */
  --navy-deep-2: #0a1a2c;
  --ink-soft: rgba(255,255,255,0.72);
  --ink-softer: rgba(255,255,255,0.52);
  --cream-ink: #233044;
  --cream-ink-soft: rgba(35,48,68,0.66);
  --hairline: rgba(255,255,255,0.10);
  --hairline-dark: rgba(13,33,55,0.12);

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 50px -22px rgba(0,0,0,0.55);
  --shadow-card: 0 24px 60px -30px rgba(8,20,34,0.65);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  /* motion knob (overwritten by JS) */
  --motion: 1;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---- Typography helpers ---- */
.kicker {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.01em;
}
.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { position: relative; padding-block: clamp(72px, 11vh, 140px); }
.section.navy   { background: var(--navy-deep); color: var(--white); }
.section.navymid{ background: var(--navy-mid);  color: var(--white); }
.section.cream  { background: var(--cream); color: var(--cream-ink); }

.section-head { max-width: 760px; }
.section-head .kicker { color: var(--green); margin: 0 0 18px; }
.cream .section-head .kicker { color: #4f7d2a; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.section-head p.lede {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 60ch;
}
.cream .section-head p.lede { color: var(--cream-ink-soft); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s, color .25s;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-green {
  background: var(--green);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px -12px rgba(109,179,63,0.7), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.btn-green:hover { background: var(--green-light); box-shadow: 0 18px 40px -12px rgba(168,212,112,0.75); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-light); background: rgba(109,179,63,0.08); }

.cream .btn-ghost { color: var(--cream-ink); border-color: rgba(35,48,68,0.22); }
.cream .btn-ghost:hover { border-color: var(--green); color: #3f6b22; background: rgba(109,179,63,0.10); }

.btn-arrow { transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-lg { padding: 18px 34px; font-size: clamp(15px, 1.3vw, 18px); }

/* tiny corner V on green button */
.btn-green .vtick { color: var(--navy-deep); opacity: .55; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 16px var(--pad);
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(13,33,55,0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--hairline), 0 14px 40px -28px rgba(0,0,0,0.8);
  padding-block: 11px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-img { height: 34px; width: auto; display: block; transition: height .3s ease; }
.nav.scrolled .nav-logo-img { height: 30px; }
.nav-logo .logo-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.nav-logo .logo-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo .logo-word b { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* ---- Language toggle ---- */
.lang-toggle {
  display: flex; align-items: center; gap: 0;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-softer);
  padding: 5px 7px; border-radius: 6px;
  transition: color .18s, background .18s;
  line-height: 1;
}
.lang-btn:hover { color: var(--ink-soft); }
.lang-btn.active { color: var(--white); background: rgba(255,255,255,0.08); }
.lang-sep { font-size: 10px; color: var(--hairline); user-select: none; }
/* Mobile: full-width pill buttons in the burger menu */
.lang-toggle-mobile {
  flex-direction: row; gap: 8px;
  padding: 14px 6px 6px; border-top: 1px solid var(--hairline);
  margin-top: 6px;
}
.lang-toggle-mobile .lang-btn {
  flex: 1; text-align: center; justify-content: center;
  padding: 11px 8px; border-radius: 8px; font-size: 13px;
  border: 1px solid var(--hairline);
}
.lang-toggle-mobile .lang-btn.active {
  border-color: var(--green); color: var(--green-light);
  background: rgba(109,179,63,0.10);
}
.lang-sep { display: inline-block; }

.nav-burger { display: none; background: none; border: 0; padding: 10px; color: var(--white); min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(109,179,63,0.20), transparent 55%),
    radial-gradient(90% 80% at 8% 110%, rgba(30,58,95,0.9), transparent 60%),
    var(--navy-deep);
  overflow: hidden;
  padding-top: 96px;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(109,179,63,0.18); }
.hero-eyebrow span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--ink-soft); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--green) 0%, var(--green-light) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 26px 0 0; max-width: 52ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-slogan { margin-top: 30px; font-size: clamp(18px, 1.8vw, 22px); }
.hero-meta { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-meta .stat .n {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px); color: var(--white);
  line-height: 1;
}
.hero-meta .stat .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-softer); margin-top: 7px; }
.hero-meta .div { width: 1px; background: var(--hairline); }

/* Hero visual — Leo / V motif */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 360px; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-softer);
}
.scroll-hint .mouse { width: 22px; height: 34px; border: 1.5px solid var(--ink-softer); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:7px; border-radius:2px; background: var(--green); transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100%{ opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 70%{opacity:0; transform: translate(-50%,9px);} }
@media (max-width: 900px){ .scroll-hint{ display:none; } }
/* Auf flacheren Viewports reicht der Hero-Inhalt (inkl. Ordivio-Countdown)
   bis zum Boden — dort den Scroll-Hint ausblenden, sonst überlappt er. */
@media (max-height: 860px){ .scroll-hint{ display:none; } }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(calc(26px * var(--motion)));
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Vision cards
   ============================================================ */
.vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 820px){ .vision-grid{ grid-template-columns: 1fr; } }

.vcard {
  background: var(--white);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.4vw, 34px);
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(13,33,55,0.4); border-color: rgba(109,179,63,0.4); }
.vcard .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--green); }
.vcard .vico { width: 46px; height: 46px; margin: 18px 0 18px; }
.vcard h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; margin: 0 0 10px; color: var(--navy-deep); }
.vcard p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--cream-ink-soft); }
.vcard .vbar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--green), var(--green-light)); transform: scaleY(0); transform-origin: top; transition: transform .35s ease; }
.vcard:hover .vbar { transform: scaleY(1); }

/* ============================================================
   Ordivio
   ============================================================ */
.ordivio-inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px,5vw,72px); align-items: center; }
@media (max-width: 920px){ .ordivio-inner{ grid-template-columns: 1fr; gap: 44px; } }

.beta-badge {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--green-light);
  padding: 6px 12px; border-radius: 999px; font-weight: 500;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
@media (max-width: 540px){ .feature-grid{ grid-template-columns: 1fr; } }
.fcard {
  background: var(--navy-mid);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .28s, border-color .28s, background .28s;
}
.fcard:hover { transform: translateY(-4px); border-color: rgba(109,179,63,0.45); background: #244469; }
.fcard .fico { width: 34px; height: 34px; margin-bottom: 14px; color: var(--green-light); }
.fcard h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: var(--white); font-family: var(--font-body); }
.fcard p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-softer); }

/* device mockup — real Ordivio screenshots */
.device-stack { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; }
.phone {
  width: 248px;
  box-sizing: border-box;
  border-radius: 34px;
  background: linear-gradient(160deg, #1b3a5c, #0a1726);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-card);
  padding: 9px;
  position: relative;
}
.phone .screen { width:100%; border-radius: 26px; background: #eef1f6; overflow:hidden; position: relative; display: block; }
.phone .screen img { width: 100%; display: block; }
.phone-front { z-index: 3; transform: translateX(34px) rotate(2deg); }
.phone-behind { position: absolute; z-index: 1; width: 218px; left: 50%; top: 18px; transform: translateX(-92%) rotate(-7deg); opacity: 0.92; filter: saturate(0.96); }
@media (max-width: 920px){
  .phone-front { transform: translateX(20px) rotate(2deg); }
  .phone-behind { transform: translateX(-86%) rotate(-7deg); }
}
@media (max-width: 460px){
  .phone { width: 210px; }
  .phone-behind { display: none; }
  .phone-front { transform: none; }
}
.ph-top { padding: 16px 14px 10px; }
.ph-top .ph-date { font-family: var(--font-mono); font-size: 9px; color: #4f7d2a; letter-spacing: .1em; }
.ph-top .ph-h { font-family: var(--font-display); font-weight: 900; font-size: 17px; color: var(--navy-deep); margin-top: 4px; letter-spacing: -0.02em; }
.ph-list { padding: 4px 14px; display: flex; flex-direction: column; gap: 7px; }
.ph-item { display:flex; align-items:center; gap:8px; background: var(--white); border-radius: 9px; padding: 9px 10px; box-shadow: 0 6px 14px -10px rgba(13,33,55,.4); }
.ph-check { width:15px; height:15px; border-radius: 5px; border: 1.5px solid var(--green); flex:0 0 auto; }
.ph-item.done .ph-check { background: var(--green); }
.ph-bar { height: 7px; border-radius: 4px; background: #dfe6da; }
.ph-bar.s { width: 60%; } .ph-bar.m { width: 80%; } .ph-bar.l { width: 92%; }
.ph-item.done .ph-bar { background: #c7d3bd; }
.phone .badge-float {
  position: absolute; z-index: 4; left: -20px; bottom: 70px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--navy-deep);
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  padding: 9px 14px; border-radius: 12px; box-shadow: var(--shadow-soft);
}
.phone .badge-float img { width: 18px; height: 18px; border-radius: 5px; }
.card-behind {
  position: absolute; z-index: 1;
  width: 200px; height: 250px; right: 8%; top: 12%;
  background: var(--navy-mid); border: 1px solid var(--hairline);
  border-radius: 18px; transform: rotate(8deg);
  box-shadow: var(--shadow-card);
  display: none;
}
.mock-label {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-softer); white-space: nowrap;
}

/* ============================================================
   Founder story
   ============================================================ */
.story-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px,5vw,72px); align-items: center; }
@media (max-width: 900px){ .story-inner{ grid-template-columns: 1fr; gap: 40px; } }

.story-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #e8e3d7, #d9d2c2);
  border: 1px solid var(--hairline-dark);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 70px -40px rgba(13,33,55,0.5);
}
.story-photo .ph-ic { width: 80px; height: 80px; color: rgba(35,48,68,0.28); }
.story-photo .founder-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.story-photo .photo-label { position:absolute; bottom: 14px; left: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(35,48,68,0.5); }
.story-photo .corner-v { position:absolute; top: 14px; right: 14px; width: 30px; height: 30px; color: var(--green); }

.story-body blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.28; letter-spacing: -0.015em;
  margin: 0 0 26px; color: var(--navy-deep);
}
.cream .story-body blockquote .hl { color: var(--green); font-style: italic; }
.story-body p { font-size: clamp(15px,1.4vw,17.5px); line-height: 1.7; color: var(--cream-ink-soft); margin: 0 0 16px; max-width: 60ch; }
.signature { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.signature .sig-name { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--navy-deep); letter-spacing: -0.02em; }
.signature .sig-role { font-size: 13.5px; color: var(--cream-ink-soft); font-family: var(--font-mono); letter-spacing: .04em; margin-top: 3px; }
.signature .sig-av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-deep); color: var(--green-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; flex: 0 0 auto; }

/* ============================================================
   Funding
   ============================================================ */
.fund {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(109,179,63,0.16), transparent 55%),
    radial-gradient(80% 80% at -10% 100%, rgba(168,212,112,0.08), transparent 60%),
    var(--navy-deep);
  overflow: hidden;
}
.fund-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,68px); align-items: center; }
@media (max-width: 960px){ .fund-inner{ grid-template-columns: 1fr; gap: 44px; } }

.fund-points { display: flex; flex-direction: column; gap: 16px; margin: 32px 0 0; }
.fpoint { display: flex; gap: 16px; align-items: flex-start; }
.fpoint .fp-ic {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px;
  background: rgba(109,179,63,0.14); border: 1px solid rgba(109,179,63,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--green-light);
}
.fpoint .fp-t { font-weight: 600; font-size: 16.5px; color: var(--white); margin: 4px 0 4px; }
.fpoint .fp-d { font-size: 14px; line-height: 1.55; color: var(--ink-softer); margin: 0; }

/* progress card */
.fund-card {
  background: linear-gradient(165deg, rgba(30,58,95,0.9), rgba(13,33,55,0.6));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.fund-card::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 60% at 50% -10%, rgba(109,179,63,0.12), transparent 60%); pointer-events:none; }
.fund-card .fc-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--green-light); }
.fund-card .fc-amount { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 4px; flex-wrap: wrap; }
.fund-card .fc-raised { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 4.4vw, 52px); color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.fund-card .fc-goal { font-size: 15px; color: var(--ink-soft); }
.progress { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin: 18px 0 14px; position: relative; }
.progress .bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--green-light)); width: 0; transition: width 1.4s cubic-bezier(.2,.8,.2,1); position: relative; box-shadow: 0 0 18px rgba(109,179,63,0.5); }
.progress .bar::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); transform: translateX(-100%); animation: shimmer 2.6s ease-in-out infinite; }
@keyframes shimmer { 0%{ transform: translateX(-100%);} 60%,100%{ transform: translateX(180%);} }
.fc-stats { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 24px; }
.fc-stats .s .n { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--green-light); }
.fc-stats .s .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-softer); margin-top: 4px; }
.fund-card .btn { width: 100%; justify-content: center; }
.fc-note { font-family: var(--font-mono); font-size: 11px; color: var(--ink-softer); text-align: center; margin-top: 14px; letter-spacing: .03em; }
.fc-total-note { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-softer); opacity: 0.6; margin-bottom: 20px; letter-spacing: .04em; }
.fc-early-phase { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 16px 0 22px; }
.fc-reward { display: flex; align-items: center; gap: 10px; background: rgba(109,179,63,0.12); border: 1px solid rgba(109,179,63,0.28); border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; font-size: 13.5px; font-weight: 600; color: var(--green-light); }
.fc-reward svg { flex: none; color: var(--green-light); }
.fund-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.fund-quote { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 22px 24px; }
.fund-quote p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 14px; font-style: italic; }
.fund-quote-name { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green-light); }
@media (max-width: 640px) { .fund-testimonials { grid-template-columns: 1fr; } }

/* ============================================================
   Newsletter
   ============================================================ */
/* Newsletter (Landing Page) — structure mirrors Ordivio waitlist */
.nl-inner { position: relative; max-width: 620px; margin: 0 auto; text-align: center; }
.nl-kicker { color: #4f7d2a; margin-bottom: 0; }
.nl-h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px,3.8vw,48px); letter-spacing: -0.025em; margin: 12px 0 0; color: var(--navy-deep); }
.nl-sub { color: var(--cream-ink-soft); font-size: 16.5px; line-height: 1.6; margin: 18px 0 0; }

.nl-lead-magnet {
  display: inline-flex; align-items: center; gap: 13px;
  margin-top: 26px; background: rgba(109,179,63,0.09);
  border: 1px solid rgba(109,179,63,0.22); border-radius: var(--radius);
  padding: 13px 20px; text-align: left;
}
.nl-lm-ico {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--green); color: var(--navy-deep);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.nl-lead-magnet p { font-size: 13.5px; color: var(--cream-ink-soft); margin: 0; }
.nl-lead-magnet p b { display: block; color: var(--navy-deep); font-size: 14px; font-weight: 700; }

.nl-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 32px;
}
.nl-field { position: relative; flex: 1 1 300px; max-width: 380px; }
.nl-field input[type="email"] {
  width: 100%; font-family: inherit; font-size: 15.5px;
  color: var(--navy-deep); background: #fff;
  border: 2px solid rgba(13,33,55,0.18); border-radius: 999px;
  padding: 15px 24px; outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.nl-field input[type="email"]:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(109,179,63,0.16); }
.nl-field input.nl-invalid { border-color: #b3402f; }

.nl-consent-wrap { flex-basis: 100%; max-width: 560px; margin: 6px auto 0; }
.nl-check {
  display: flex; gap: 11px; align-items: flex-start; text-align: left; cursor: pointer;
  font-size: 12.5px; color: var(--cream-ink-soft); line-height: 1.5;
}
.nl-check a { color: #4f7d2a; text-decoration: underline; text-underline-offset: 2px; }
.nl-check a:hover { color: #3f6b22; }
.nl-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.nl-box {
  width: 20px; height: 20px; flex: none; margin-top: 1px; border-radius: 6px;
  border: 1.5px solid rgba(13,33,55,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.16s, border-color 0.16s;
}
.nl-box svg { width: 12px; height: 12px; opacity: 0; transition: opacity 0.16s; }
.nl-check input:checked + .nl-box { background: var(--green); border-color: var(--green); }
.nl-check input:checked + .nl-box svg { opacity: 1; }

.nl-err { flex-basis: 100%; font-size: 13px; color: #b3402f; margin-top: 8px; }
.nl-recaptcha {
  flex-basis: 100%; font-size: 11px; color: var(--cream-ink-softer, rgba(35,48,68,0.45));
  line-height: 1.55; text-align: center; margin: 12px auto 0;
}
.nl-recaptcha a { color: var(--cream-ink-soft); text-decoration: underline; text-underline-offset: 2px; }

.nl-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 26px;
  font-size: 13px; color: var(--cream-ink-softer, rgba(35,48,68,0.45));
}
.nl-proof svg { width: 15px; height: 15px; flex: none; }

.nl-check-wrap { display: flex; justify-content: center; margin-bottom: 28px; }
.nl-check-wrap svg { width: 64px; height: 64px; }
@keyframes nl-pop-in { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@keyframes nl-spin { to { transform: rotate(360deg); } }
.nl-inner--done { animation: nl-pop-in 0.45s ease; }

@media (max-width: 520px) {
  .nl-lead-magnet { display: flex; max-width: 100%; }
  .nl-btn { flex: 1 1 100%; justify-content: center; }
}

/* reCAPTCHA v3 badge ausblenden — Hinweistext sichtbar gem. Google-Richtlinien */
.grecaptcha-badge { visibility: hidden !important; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-deep-2); color: var(--ink-soft); padding-block: 64px 32px; border-top: 1px solid var(--hairline); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px){ .footer-top{ grid-template-columns: 1fr; gap: 32px; } }
.footer .f-brand .nav-logo { margin-bottom: 16px; }
.footer .f-brand p { max-width: 38ch; font-size: 14.5px; line-height: 1.6; color: var(--ink-softer); margin: 0 0 18px; }
.footer .f-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-softer); margin: 0 0 16px; }
.footer .f-col a { display: block; font-size: 15px; color: var(--ink-soft); padding: 6px 0; transition: color .2s; }
.footer .f-col a:hover { color: var(--green-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--hairline); }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--ink-softer); }
.footer-bottom .legal a:hover { color: var(--green-light); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all .25s; }
.socials a:hover { border-color: var(--green); color: var(--green-light); transform: translateY(-3px); background: rgba(109,179,63,0.08); }

/* generic icon sizing */
.ico { display: inline-block; vertical-align: middle; }

/* footer logo */
.footer-logo-img { height: 40px; width: auto; margin-bottom: 18px; display: block; }

/* Ordivio brand lockup — real logo on a white chip (exakte Schrift + Farbverlauf) */
.ordivio-lockup { display: inline-flex; align-items: center; background: var(--white); padding: 9px 16px; border-radius: 13px; margin-bottom: 20px; box-shadow: 0 12px 30px -14px rgba(0,0,0,0.55); }
.ordivio-logo-chip { height: 28px; width: auto; display: block; }

/* ============================================================
   Keyframes (hero visuals)
   ============================================================ */
@keyframes vRise { 0%,100%{ transform: translateY(0); opacity: .9;} 50%{ transform: translateY(-14px); opacity: 1;} }
@media (prefers-reduced-motion: reduce) {
  .progress .bar::after, .scroll-hint .mouse::after { animation: none; }
}

/* ============================================================
   LEO RIG — animation system (from "Leo Animationen")
   ============================================================ */
.leo .armR, .leo .armL, .leo .eyes, .leo .leoHead, .leo .mane, .leo .leoBob{ transform-box: view-box; }
.leo .armR{ transform-origin:160px 172px; }
.leo .armL{ transform-origin:80px 172px; }
.leo .eyes{ transform-origin:120px 102px; }
.leo .leoHead{ transform-origin:120px 150px; }
.leo .mane{ transform-origin:120px 104px; }
.leo .leoBob{ transform-origin:120px 244px; }

/* always-on idle life */
.leo .leoBob{ animation:leoFloat 3.6s ease-in-out infinite; }
.leo .eyes{ animation:leoBlink 4.4s ease-in-out infinite; }
.leo .mane{ animation:leoMane 5s ease-in-out infinite; }
.leo .armL{ animation:armSwayL 3.6s ease-in-out infinite; }
.leo.idle .armRBack, .leo.idle .armRFront { animation:armSwayR 3.6s ease-in-out infinite; }
.leo.idle .leoHead{ animation:leoHeadIdle 5.2s ease-in-out infinite; }
.leo .leoShadow{ animation:leoShadow 3.6s ease-in-out infinite; transform-box:view-box; transform-origin:120px 254px; }
.leo .sprout{ transform-box: fill-box; transform-origin: 50% 100%; animation:sproutSway 3.8s ease-in-out infinite; }
@keyframes sproutSway{0%,100%{transform:rotate(-4deg)}50%{transform:rotate(4deg)}}

@keyframes leoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes leoShadow{0%,100%{transform:scale(1)}50%{transform:scale(0.9)}}
@keyframes leoBlink{0%,90%,100%{transform:scaleY(1)}94%{transform:scaleY(0.12)}}
@keyframes leoMane{0%,100%{transform:rotate(-1.6deg)}50%{transform:rotate(1.6deg)}}
@keyframes leoHeadIdle{0%,100%{transform:rotate(-1.4deg)}50%{transform:rotate(1.4deg)}}
@keyframes armSwayL{0%,100%{transform:rotate(4deg)}50%{transform:rotate(-4deg)}}
@keyframes armSwayR{0%,100%{transform:rotate(-4deg)}50%{transform:rotate(4deg)}}

/* expression swaps */
.leo .eyesHappy, .leo .handThumb, .leo .mouthGrin, .leo .sparkles .spark{ opacity:0; }
.leo.wave .eyesHappy, .leo.thumbs .eyesHappy{ opacity:1; }
.leo.wave .eyesNormal, .leo.thumbs .eyesNormal{ opacity:0; }
.leo.thumbs .mouthGrin{ opacity:1; }
.leo.thumbs .mouthSmile{ opacity:0; }
.leo.thumbs .handThumb{ opacity:1; }
.leo.thumbs .handPaw{ opacity:0; }

/* hide back arm during wave/thumbs, show front arm */
.leo.wave .armRBack, .leo.thumbs .armRBack { opacity:0; }
.leo.idle .armRFront { opacity:0; }

/* WAVE */
.leo.wave .armRFront{ animation:leoWave 2.2s ease-in-out both; }
.leo.wave .leoHead{ animation:leoTilt 2.2s ease-in-out both; }
.leo.loop.wave .armRFront{ animation:leoWaveLoop 1.5s ease-in-out infinite; }
.leo.loop.wave .leoHead{ animation:leoTiltHold 1.5s ease-in-out infinite; }
@keyframes leoWave{
  0%{transform:rotate(0)} 14%{transform:rotate(-120deg)}
  27%{transform:rotate(-134deg)} 40%{transform:rotate(-110deg)}
  53%{transform:rotate(-132deg)} 66%{transform:rotate(-112deg)}
  79%{transform:rotate(-128deg)} 90%{transform:rotate(-118deg)}
  100%{transform:rotate(0)}
}
@keyframes leoWaveLoop{
  0%,100%{transform:rotate(-112deg)} 25%{transform:rotate(-134deg)}
  50%{transform:rotate(-110deg)} 75%{transform:rotate(-132deg)}
}
@keyframes leoTilt{0%,100%{transform:rotate(0)} 30%,75%{transform:rotate(6deg)}}
@keyframes leoTiltHold{0%,100%{transform:rotate(5deg)}50%{transform:rotate(7deg)}}

/* THUMBS UP */
.leo.thumbs .armRFront{ animation:leoThumb 2s ease-in-out both; }
.leo.thumbs .leoBob{ animation:leoFloat 3.6s ease-in-out infinite, leoHop 2s ease-in-out both; }
.leo.thumbs .spark{ animation:sparkPop 2s ease-in-out both; }
.leo.loop.thumbs .armRFront{ animation:leoThumbLoop 1.4s ease-in-out infinite; }
.leo.loop.thumbs .spark{ animation:sparkLoop 1.6s ease-in-out infinite; }
.leo.loop.thumbs .leoBob{ animation:leoFloat 3.6s ease-in-out infinite; }
@keyframes leoThumb{
  0%{transform:rotate(0)} 22%{transform:rotate(-120deg)}
  36%{transform:rotate(-110deg)} 50%{transform:rotate(-120deg)}
  64%{transform:rotate(-111deg)} 82%{transform:rotate(-117deg)}
  100%{transform:rotate(0)}
}
@keyframes leoThumbLoop{ 0%,100%{transform:rotate(-118deg)} 50%{transform:rotate(-110deg)} }
@keyframes leoHop{0%,100%{transform:translateY(0)}20%{transform:translateY(-6px)}40%{transform:translateY(0)}}
.leo .spark1{ transform-box:view-box; transform-origin:208px 161px; }
.leo .spark2{ transform-box:view-box; transform-origin:224px 170px; }
.leo .spark3{ transform-box:view-box; transform-origin:196px 134px; }
@keyframes sparkPop{
  0%,18%{opacity:0;transform:scale(0)} 34%{opacity:1;transform:scale(1.1)}
  55%{opacity:1;transform:scale(0.9)} 80%,100%{opacity:0;transform:scale(0.4)}
}
@keyframes sparkLoop{
  0%,100%{opacity:0;transform:scale(0.3)} 40%{opacity:1;transform:scale(1.1)} 70%{opacity:0.8;transform:scale(0.9)}
}

/* motion tweak = 0 → Leo still; plus system reduced-motion */
.leo-still .leo, .leo-still .leo * { animation: none !important; }
@media (prefers-reduced-motion: reduce){
  .leo *{ animation:none !important; }
}

/* ============================================================
   ORDIVIO COLOR SCHEME
   Wherever Ordivio is named or featured, adopt its blue/cyan.
   ============================================================ */

/* Inline brand name "Ordivio" — Logotype-Stil: Serife + Farbverlauf wie im Logo */
.ordivio-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  /* dark backgrounds: brightened gradient so it stays legible */
  background: linear-gradient(95deg, #79CEF0 0%, #46AEE6 46%, #5B93EF 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
/* light backgrounds: faithful navy → cyan → blue gradient (wie das Banner) */
.cream .ordivio-name {
  background: linear-gradient(95deg, #15395B 0%, #1E6F9E 36%, #2BA7D9 60%, #2E7DD2 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
/* keep heading weight when the name sits inside a display heading */
.section-head h2 .ordivio-name { font-weight: inherit; }

/* The Ordivio product section adopts the Ordivio accent scheme */
.ordivio-themed .section-head .kicker { color: var(--ordivio-bright); }
.ordivio-themed .beta-badge { background: var(--ordivio-bright); }
.ordivio-themed .fcard .fico { color: var(--ordivio-bright); }
.ordivio-themed .fcard:hover { border-color: rgba(46,125,210,0.55); background: #1d3c60; }
.ordivio-themed .btn-ghost:hover { border-color: var(--ordivio); color: var(--ordivio-bright); background: rgba(46,125,210,0.10); }
.ordivio-themed .badge-float { background: var(--ordivio); color: var(--white); }
.ordivio-themed .device-stack .card-behind { background: var(--ordivio-deep); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 0 clamp(12px, 3vw, 28px) clamp(12px, 3vw, 24px);
}
.cc-card {
  max-width: 980px; margin: 0 auto;
  background: var(--navy-mid);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.cc-text { flex: 1; min-width: 240px; }
.cc-card h4 { font-family: var(--font-display); font-weight: 900; font-size: 17px; letter-spacing: -0.01em; margin: 0 0 6px; color: var(--white); }
.cc-card p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.cc-card p a { color: var(--green-light); text-decoration: underline; text-underline-offset: 2px; }
.cc-actions { display: flex; gap: 10px; align-items: center; }
.cc-actions .btn { font-size: 14px; padding: 11px 20px; }
@media (max-width: 680px) {
  .cc-card { flex-direction: column; align-items: stretch; }
  .cc-actions .btn { flex: 1; justify-content: center; }
}

/* Tweaks panel: hide entirely when not active (host toggles visibility) */

/* ============================================================
   MOBILE OPTIMIZATION
   ============================================================ */

/* ---- Tablet / large phone ---- */
@media (max-width: 760px) {
  .hero { padding-top: 88px; min-height: auto; padding-bottom: 64px; }
  .hero-visual { min-height: auto; margin-top: 8px; }
  .hero-visual svg { width: 100%; max-width: 260px; height: auto; }
  .device-stack { min-height: 0; padding-block: 8px; }
  .phone-front { transform: rotate(1.5deg); }
  .section { padding-block: clamp(56px, 9vh, 96px); }
}

/* ---- Phones ---- */
@media (max-width: 560px) {
  /* Hero CTAs become full-width, easy thumb targets */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero-sub { font-size: 17px; }

  /* Compact nav CTA so logo + button + burger never collide on small screens */
  .nav { padding-inline: 16px; gap: 10px; }
  .nav .btn-green { padding: 10px 15px; font-size: 14px; gap: 7px; }
  .nav-logo-img { height: 30px; }
  .nav.scrolled .nav-logo-img { height: 28px; }

  /* Section headings + body tuned for small screens */
  .section-head h2 { font-size: clamp(27px, 8vw, 36px); }
  .vcard { padding: 24px; }
  .vcard h3 { font-size: 22px; }

  /* Funding progress card a touch tighter */
  .fund-card { padding: 24px 20px; }
  .fc-stats { gap: 16px; }

  /* Newsletter button full width under the input */
  .nl-btn { width: 100%; justify-content: center; }

  /* Footer: stack brand + 2 link columns as a clean 2-col grid below brand */
  .footer { padding-block: 52px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* ---- Very small phones (iPhone SE etc.) ---- */
@media (max-width: 380px) {
  .nav .btn-green { padding: 9px 13px; }
  .hero h1 { font-size: 32px; }
  .phone { width: 200px; }
}

/* ============================================================
   Ordivio Launch-Countdown (Hero) — klickbare Karte zur Ordivio-Seite
   ============================================================ */
.ordivio-count {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 13px 20px 13px 13px;
  background: rgba(46, 125, 210, 0.12);
  border: 1px solid rgba(87, 183, 232, 0.38);
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  z-index: 3;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.ordivio-count:hover {
  transform: translateY(-2px);
  border-color: var(--ordivio-bright);
  background: rgba(46, 125, 210, 0.18);
  box-shadow: 0 18px 44px -18px rgba(46, 125, 210, 0.6);
}
.ordivio-count:hover .btn-arrow { transform: translateX(4px); }
.ordivio-count .oc-icon { width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto; box-shadow: 0 8px 20px -8px rgba(46,125,210,0.7); }
.oc-main { display: flex; flex-direction: column; gap: 5px; }
.oc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ordivio-bright);
}
.oc-label .ordivio-name { font-size: 14px; text-transform: none; letter-spacing: 0; margin-right: 2px; }
.oc-digits { display: flex; align-items: baseline; gap: 9px; }
.oc-digits b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.oc-digits span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-softer);
  margin-left: -4px;
}
.oc-go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ordivio-bright);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .ordivio-count { width: 100%; justify-content: flex-start; padding: 12px 16px 12px 12px; gap: 13px; }
  .ordivio-count .oc-icon { width: 40px; height: 40px; }
  .oc-go { margin-left: 0; flex-basis: 100%; padding-left: 53px; margin-top: -4px; }
}

/* Larger, comfortable tap targets for all interactive elements on touch devices */
@media (hover: none) and (pointer: coarse) {
  .nav-links a, .footer a, .f-col a, .legal-foot a { padding-block: 10px; }
  .btn { min-height: 46px; }
}


/* ── Video Spot ── */
.video-spot-wrap { padding-block: 60px; }
.product-video {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 32px 80px -10px rgba(0,0,0,0.55);
  display: block;
}
@media (max-width: 600px) { .video-spot-wrap { padding-block: 36px; } }
