*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; overscroll-behavior: none; }
::selection { background: rgba(0,135,90,0.15); color: #00205b; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── Focus Styles ── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

:root {
  --navy: #00205b;
  --navy-deep: #071224;
  --green: #00875a;
  --green-light: #10b981;
  --gold: #f59e0b;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --radius: 8px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}



/* ── Layout ── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center; height: 72px; padding-top: 14px;
}
.nav__logo { height: 30px; display: block; }
.nav__right { display: flex; align-items: center; gap: 8px; position: relative; }
.nav__login {
  position: absolute; top: -20px; right: 2px;
  font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s; white-space: nowrap; letter-spacing: 0.3px;
}
.nav__login:hover { color: rgba(255,255,255,0.8); }
.nav.scrolled .nav__login { color: var(--text-muted); }
.nav.scrolled .nav__login:hover { color: var(--navy); }
.nav__link {
  font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 400;
  padding: 8px 16px; border-radius: 8px; transition: color 0.3s, background 0.2s;
}
.nav__link:hover { color: #fff; }
.nav.scrolled .nav__link { color: var(--text); }
.nav.scrolled .nav__link:hover { background: var(--bg-soft); color: var(--navy); }
/* Language switcher */
.nav__lang {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.nav__lang:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.nav.scrolled .nav__lang { color: var(--text-muted); border-color: var(--border); }
.nav.scrolled .nav__lang:hover { color: var(--navy); background: var(--bg-soft); }
/* Logo inversion on dark nav */
.nav__logo { transition: filter 0.3s; filter: brightness(0) invert(1); }
.nav.scrolled .nav__logo { filter: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: 100px; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s ease; border: none;
  font-family: 'Inter', sans-serif; text-decoration: none; line-height: 1;
}
.btn--primary {
  background: linear-gradient(135deg, #00205b 0%, #0a3a8a 100%); color: #fff;
  box-shadow: 0 1px 3px rgba(0,32,91,0.12), 0 4px 16px rgba(0,32,91,0.12);
}
.btn--primary:hover { box-shadow: 0 2px 6px rgba(0,32,91,0.15), 0 8px 24px rgba(0,32,91,0.22); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); }
.btn--outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--navy); background: var(--bg-soft); }
.btn--white {
  background: #fff; color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn--nav {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.btn--nav:hover { background: rgba(255,255,255,0.18); }
.nav.scrolled .btn--nav {
  background: linear-gradient(135deg, #00205b 0%, #0a3a8a 100%); color: #fff;
  border-color: transparent;
}
.btn--sm { padding: 10px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }
.btn--lg { padding: 16px 36px; font-size: 16px; font-weight: 700; }
.btn--full { width: 100%; justify-content: center; }
.btn__arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Hero ── */
.hero {
  padding-top: 140px; padding-bottom: 80px;
  background:
    radial-gradient(ellipse 600px 500px at 15% 10%, rgba(16,185,129,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 500px 600px at 85% 20%, rgba(59,130,246,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 800px 400px at 50% 90%, rgba(99,102,241,0.12) 0%, transparent 70%),
    linear-gradient(165deg, #050d1a 0%, #0a1a35 45%, #070f20 100%);
  color: #fff; overflow: clip; position: relative;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03; mix-blend-mode: overlay;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__title {
  font-family: 'Inter', sans-serif; font-size: 66px; font-weight: 800;
  line-height: 1.0; letter-spacing: -2.8px; margin-bottom: 28px;
  max-width: 760px;
}
.hero__title em {
  font-style: normal; font-weight: 800; color: var(--green-light);
}
.hero__sub {
  font-size: 17px; line-height: 1.75; color: #7e8faa;
  max-width: 520px; margin-bottom: 40px; font-weight: 300;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* ── Hero Fan (smooth clickable) ── */
.hero-fan {
  position: relative;
  height: 580px;
  margin: 80px auto 0;
  max-width: 1100px;
  touch-action: pan-y;
  -webkit-user-select: none; user-select: none;
}
/* Dramatic glow behind the fan */
.hero-fan::before {
  content: '';
  position: absolute;
  width: 1100px; height: 700px;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 600px 450px at 40% 50%, rgba(16,185,129,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 550px 450px at 65% 45%, rgba(59,130,246,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 300px 300px at 50% 55%, rgba(139,92,246,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}
.hero-fan__card {
  position: absolute;
  width: 680px;
  border-radius: 14px;
  overflow: hidden;
  left: 50%;
  top: 50%;
  margin-left: -340px;
  margin-top: -250px;
  transform-origin: center center;
  cursor: grab;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
/* Browser chrome on every card */
.hero-fan__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  background: #1a1f2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-fan__chrome-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.hero-fan__chrome-url {
  flex: 1; margin-left: 6px;
  background: rgba(255,255,255,0.05); border-radius: 5px;
  padding: 4px 12px; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  font-family: 'JetBrains Mono', monospace;
}
.hero-fan__card img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: top;
  display: block;
}
/* Positions: tight overlap, center BIGGER */
.hero-fan__card[data-pos="-2"] { transform: translateX(-240px) rotate(-5deg) scale(0.78); opacity: 0.7; z-index: 1; }
.hero-fan__card[data-pos="-1"] { transform: translateX(-120px) rotate(-2.5deg) scale(0.88); opacity: 0.88; z-index: 3; }
.hero-fan__card[data-pos="0"]  {
  transform: translateX(0) rotate(0deg) scale(1.08); opacity: 1; z-index: 5;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-fan__card[data-pos="1"]  { transform: translateX(120px) rotate(2.5deg) scale(0.88); opacity: 0.88; z-index: 3; }
.hero-fan__card[data-pos="2"]  { transform: translateX(240px) rotate(5deg) scale(0.78); opacity: 0.7; z-index: 1; }

/* Hover lift on center card */
.hero-fan__card[data-pos="0"]:hover {
  transform: translateX(0) rotate(0deg) scale(1.1) translateY(-6px);
  box-shadow: 0 50px 120px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.12);
}

/* Label */
.hero-fan__label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
  letter-spacing: 0.5px; text-transform: uppercase;
  pointer-events: none;
}

/* Dots below fan */
.hero-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 24px 0 8px; position: relative; z-index: 10;
  width: fit-content; margin: 0 auto;
  background: rgba(0,15,50,0.45); backdrop-filter: blur(12px);
  border-radius: 20px; padding: 10px 18px;
  margin-top: 16px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer; border: none; padding: 0;
  position: relative;
}
.hero-dot::before {
  content: ''; position: absolute;
  top: -18px; left: -10px; right: -10px; bottom: -18px;
}
.hero-dot.active {
  background: var(--green-light);
  width: 28px; border-radius: 4px;
}

/* Entrance animation */
.hero-fan__card {
  animation: fan-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-fan__card:nth-child(1) { animation-delay: 0.08s; }
.hero-fan__card:nth-child(2) { animation-delay: 0.13s; }
.hero-fan__card:nth-child(3) { animation-delay: 0.18s; }
.hero-fan__card:nth-child(4) { animation-delay: 0.23s; }
.hero-fan__card:nth-child(5) { animation-delay: 0.28s; }
@keyframes fan-enter {
  from { opacity: 0 !important; transform: translateX(0) rotate(0deg) translateY(30px) scale(0.88) !important; }
}

/* ── Trust bar ── */
.trust {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.trust__row {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.trust__icon {
  width: 18px; height: 18px; color: var(--green);
}

/* ── Logo marquee ── */
.marquee-section {
  padding: 52px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.marquee-label {
  text-align: center; font-size: 14px; font-weight: 500;
  color: var(--text-muted); margin-bottom: 28px;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee__track {
  display: flex; align-items: center; gap: 56px; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__logo {
  height: 28px; width: auto; filter: grayscale(100%); opacity: 0.35;
  transition: all 0.3s;
}
.marquee__logo:hover { filter: grayscale(0%); opacity: 0.7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section headers ── */
.sh { margin-bottom: 48px; }
.sh--center { text-align: center; }
.sh__title {
  font-family: 'Inter', sans-serif;
  font-size: 38px; font-weight: 700; letter-spacing: -1.8px; line-height: 1.08;
  color: var(--navy);
}
.sh__title span { color: var(--text-muted); }
.sh__sub {
  font-size: 16px; color: var(--text-muted); max-width: 520px;
  line-height: 1.7; margin-top: 14px;
}
.sh--center .sh__sub { margin-left: auto; margin-right: auto; }

/* ── Features: 3 hero + compact extras ── */
.features-hero { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.feature-row {
  display: grid; grid-template-columns: 280px 1fr; gap: 20px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.feature-row:last-child { border-bottom: none; }
.feature-row__title {
  font-size: 20px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.2px;
  display: flex; align-items: center; gap: 12px;
}
.feature-row__icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-row__icon svg { width: 18px; height: 18px; }
.feature-row__icon--auto { background: rgba(16,185,129,0.08); color: var(--green-light); }
.feature-row__icon--brand { background: rgba(59,130,246,0.08); color: #3b82f6; }
.feature-row__icon--data { background: rgba(245,158,11,0.08); color: #f59e0b; }
/* Subtle pulse on the autopilot icon */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.2); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.feature-row__icon--auto { animation: pulse-ring 2.5s ease infinite; }
.feature-row__desc {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
}
.features-extras {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 8px;
}
.features-extra {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all 0.2s;
}
.features-extra:hover { border-color: var(--green); background: rgba(0,135,90,0.03); }
.features-extra svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.features-extra:nth-child(2) svg { color: #3b82f6; }
.features-extra:nth-child(2):hover { border-color: #3b82f6; background: rgba(59,130,246,0.03); }
.features-extra:nth-child(3) svg { color: #f59e0b; }
.features-extra:nth-child(3):hover { border-color: #f59e0b; background: rgba(245,158,11,0.03); }
.features-extra:nth-child(4) svg { color: var(--navy); }
.features-extra:nth-child(4):hover { border-color: var(--navy); background: rgba(0,32,91,0.03); }

/* ── Social proof callout ── */
.proof {
  text-align: center; padding: 80px 28px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(16,185,129,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #071224 0%, #0c1e3a 50%, #0a1830 100%);
  color: #fff; position: relative; overflow: clip;
}
.proof::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03; mix-blend-mode: overlay;
}
.proof > * { position: relative; z-index: 1; }
.proof__stat {
  font-size: 88px; font-weight: 800; color: #fff;
  letter-spacing: -4px; line-height: 1;
  font-family: 'Inter', sans-serif;
}
.proof__label {
  font-size: 17px; color: rgba(255,255,255,0.55); margin-top: 12px;
  line-height: 1.6;
}

/* ── Showcase section ── */
.showcase { background: var(--bg-soft); }
.showcase__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.showcase__img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,32,91,0.08), 0 0 0 1px var(--border);
}
.showcase__img img { width: 100%; height: auto; display: block; }
.showcase__content { max-width: 480px; }
.showcase__list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.showcase__item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.showcase__check {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
}

/* ── Process flow ── */
.process {
  max-width: 700px; margin: 0 auto;
  font-size: 20px; line-height: 1.8; color: var(--text-muted);
  text-align: center;
}
.process strong {
  color: var(--navy); font-weight: 700;
}
.process .arrow {
  display: inline-block; margin: 0 8px;
  color: var(--green); font-weight: 400;
}

/* ── Use case cards ── */
.uc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.uc {
  padding: 40px 36px; border-radius: 10px; background: var(--bg);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.uc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.uc--ext::before { background: var(--navy); }
.uc--int::before { background: var(--green); }
.uc__tag {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.uc__tag--ext { background: rgba(0,32,91,0.05); color: var(--navy); }
.uc__tag--int { background: rgba(0,135,90,0.06); color: var(--green); }
.uc__title {
  font-family: 'Inter', sans-serif;
  font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 12px;
}
.uc__desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.uc__list { display: flex; flex-direction: column; gap: 12px; }
.uc__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
}

/* ── Stats bar ── */
.stats-section {
  background: var(--navy-deep); color: #fff; position: relative;
  overflow: clip;
}
.stats-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03; mix-blend-mode: overlay;
}
.stats-section .wrap { position: relative; z-index: 1; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 56px;
}
.stat {
  background: rgba(255,255,255,0.03); padding: 36px 24px; text-align: center;
}
.stat__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px; font-weight: 700; line-height: 1; color: #fff;
}
.stat__label {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.stat__sub { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }
.stats-text { max-width: 640px; }
.stats-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; color: #fff;
}
.stats-text p {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.45);
}
.stats-text p + p { margin-top: 16px; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier {
  padding: 36px 28px; border-radius: 10px; background: var(--bg);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  position: relative;
}
.tier--featured {
  border: 2px solid var(--navy);
  box-shadow: 0 8px 32px rgba(0,32,91,0.08);
}
.tier__badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%) translateY(-50%);
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; letter-spacing: 0.5px;
}
.tier__name {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-muted); margin-bottom: 6px;
}
.tier__headline {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 4px;
}
.tier__desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.tier__list { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.tier__item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.tier__note {
  margin-top: 28px; font-size: 13px; color: var(--text-muted); text-align: center;
}

/* ── Check icon ── */
.check { flex-shrink: 0; width: 20px; height: 20px; }

/* ── CTA section ── */
.cta-section {
  background:
    radial-gradient(ellipse 600px 400px at 50% 60%, rgba(16,185,129,0.15) 0%, transparent 70%),
    linear-gradient(165deg, #050d1a 0%, #0a1a35 50%, #070f20 100%);
  color: #fff; text-align: center;
  position: relative; overflow: clip;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03; mix-blend-mode: overlay;
}
.cta-section .wrap { position: relative; z-index: 1; }
.cta__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px; font-weight: 800; letter-spacing: -2.2px; line-height: 1.05;
  margin-bottom: 16px;
}
.cta__title em { font-style: italic; color: var(--green-light); }
.cta__sub {
  color: #7e8faa; font-size: 17px; max-width: 460px;
  margin: 0 auto 36px; line-height: 1.7;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1; transform: translateX(0);
}

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer__left { display: flex; align-items: center; gap: 14px; }
.footer__logo { height: 20px; opacity: 0.75; }
.footer__copy { color: var(--text); font-size: 12px; }
.footer__links { display: flex; gap: 22px; font-size: 13px; }
.footer__links a { color: var(--text); text-decoration: none; }
.footer__links a:hover { color: var(--green); }
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.footer__social a:hover { color: var(--green); }

/* ── FAQ ── */
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child {
  border-top: 1px solid var(--border);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item[open] .faq__q::after {
  content: '−';
}
.faq__a {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 28px 80px;
}
.legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.legal-content .legal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--green);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--navy);
}
.legal-content strong {
  font-weight: 600;
}

/* ── Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,15,50,0.5); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 680px;
  max-height: 90vh; max-height: 90dvh; overflow: hidden; position: relative;
  box-shadow: 0 32px 80px rgba(0,20,80,0.25);
  display: flex; flex-direction: column;
}
.modal__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.modal__title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); }
.modal__close {
  background: var(--bg-soft); border: none; border-radius: 10px;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.modal__body { flex: 1; overflow: auto; }
.modal__body iframe { width: 100%; height: 620px; border: none; }
.modal__fallback { padding: 32px; text-align: center; color: var(--text-muted); font-size: 14px; }
.modal__fallback p { margin-bottom: 16px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .feature-row { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 96px; padding-bottom: 48px; }
  .hero__title { font-size: 38px; letter-spacing: -1.8px; }
  .hero__sub { font-size: 15px; }
  .hero-fan { height: 320px; margin-top: 28px; }
  .hero-fan__card { width: 400px; margin-left: -200px; margin-top: -125px; }
  .hero-fan__card img { height: 300px; }
  .hero-fan__card[data-pos="-2"] { transform: translateX(-210px) rotate(-5deg) scale(0.84); }
  .hero-fan__card[data-pos="-1"] { transform: translateX(-100px) rotate(-2.5deg) scale(0.92); }
  .hero-fan__card[data-pos="1"]  { transform: translateX(100px) rotate(2.5deg) scale(0.92); }
  .hero-fan__card[data-pos="2"]  { transform: translateX(210px) rotate(5deg) scale(0.84); }
  .hero-fan__chrome { padding: 7px 10px; }
  .hero-fan__chrome-dot { width: 6px; height: 6px; }
  .hero-fan__chrome-url { font-size: 9px; padding: 3px 8px; }
  .hero-fan__label { font-size: 10px; padding: 4px 10px; bottom: 10px; left: 10px; }
  .sh__title { font-size: 30px; letter-spacing: -1.2px; }
  .feature-row { grid-template-columns: 1fr; gap: 6px; }
  .feature-row__title { font-size: 17px; }
  .process { font-size: 16px; }
  .uc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer__inner { flex-direction: column; text-align: center; gap: 20px; padding: 0 20px; }
  .footer__left { flex-direction: column; gap: 8px; }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px 22px; }
  .footer__social { justify-content: center; }
  .showcase__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta__title { font-size: 30px; letter-spacing: -1.2px; }
  .proof__stat { font-size: 64px; letter-spacing: -3px; }
  /* Nav – tablet: login wird inline, kein padding-top mehr nötig */
  .nav__inner { height: 60px; padding: 0 20px; }
  .nav__logo { height: 28px; }
  .nav__link { font-size: 13px; padding: 6px 10px; }
  .nav__login {
    position: static; font-size: 12px; padding: 6px 10px;
    color: rgba(255,255,255,0.55);
  }
  .nav.scrolled .nav__login { color: var(--text-muted); }
  .btn--nav.btn--sm { font-size: 12px; padding: 9px 18px; letter-spacing: 0.3px; }
  .nav__lang { font-size: 11px; padding: 4px 8px; }
  /* Modal – tablet */
  .modal { border-radius: 16px; }
  .modal__header { padding: 14px 18px; }
  .modal__body iframe { height: 520px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero { padding-top: 80px; }
  .hero__title { font-size: 32px; letter-spacing: -1.5px; }
  .hero__sub { font-size: 14px; }
  .stat__value { font-size: 32px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero-fan { height: 240px; margin-top: 20px; }
  .hero-fan__card { width: 280px; margin-left: -140px; margin-top: -88px; }
  .hero-fan__card img { height: 210px; }
  .hero-fan__card[data-pos="-2"],
  .hero-fan__card[data-pos="2"] { display: none; }
  .hero-fan__card[data-pos="-1"] { transform: translateX(-90px) rotate(-3deg) scale(0.88); }
  .hero-fan__card[data-pos="1"]  { transform: translateX(90px) rotate(3deg) scale(0.88); }
  .sh__title { font-size: 26px; letter-spacing: -1px; }
  .cta__title { font-size: 26px; }
  .proof__stat { font-size: 52px; }
  .features-extras { gap: 6px; }
  .features-extra { font-size: 12px; padding: 6px 12px; }
  /* Nav – mobile: Live-Demo ausblenden, Button kompakter */
  .nav__inner { height: 52px; padding: 0 16px; }
  .nav__logo { height: 24px; }
  .nav__right { gap: 6px; }
  .nav__link { display: none; }
  .btn--nav.btn--sm {
    font-size: 11px; padding: 8px 14px;
    text-transform: none; letter-spacing: 0; gap: 6px;
  }
  .btn--nav .btn__arrow { width: 14px; height: 14px; }
  .nav__lang { font-size: 10px; padding: 3px 6px; }
  /* Modal – mobile: dvh für iPhone Chrome Adressleiste */
  .modal-overlay { padding: 10px; }
  .modal { border-radius: 14px; max-height: 88vh; max-height: 88dvh; }
  .modal__header { padding: 12px 16px; }
  .modal__title { font-size: 14px; }
  .modal__close { width: 32px; height: 32px; border-radius: 8px; }
  .modal__body iframe { height: 70vh; height: 70dvh; min-height: 320px; }
  .modal__fallback { padding: 24px 16px; }
}