/* =================== RESET & BASE =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* =================== DESIGN TOKENS =================== */
:root {
  /* Radius-System: konsistent 4 Stufen */
  --r-xs: 6px;    /* badges, chips */
  --r-sm: 8px;    /* small elements */
  --r-md: 12px;   /* cards */
  --r-lg: 16px;   /* big cards */
  --r-pill: 100px;

  /* Schatten-System: 4 Stufen */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 12px -2px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 28px -6px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 48px -10px rgba(0,0,0,0.12);

  /* Spacing */
  --section-y: 120px;

  /* Colors */
  --ink: #0a0a0a;
  --ink-2: #262626;
  --ink-3: #525252;
  --ink-4: #737373;
  --ink-5: #94a3b8;
  --line: #f1f5f9;
  --line-2: #e5e5e5;
  --bg: #ffffff;
  --bg-2: #fafafa;

  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --hero-bg: #b8dde5;
  --yellow: #facc15;
  --lavender: #c4b5fd;
  --cyan-stripe: #67e8f9;
}
/* =================== A11Y =================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline-offset: 3px;
}
/* =================== ANNOUNCEMENT BAR =================== */
.announcement-bar {
  background: #0a0a0a;
  color: #fff;
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.15), transparent);
  animation: ann-shine 4s linear infinite;
}
@keyframes ann-shine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.announcement-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.announcement-badge {
  background: #f59e0b;
  color: #0a0a0a;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.announcement-inner a {
  color: #facc15;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.announcement-inner a:hover { color: #fbbf24; }
/* =================== SCROLL-REVEAL CORE =================== */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-stagger {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-stagger.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =================== NAV SCROLL STATE =================== */
.nav { transition: background 0.3s, box-shadow 0.3s; }
.nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
}
/* =================== HERO BADGE + TYPEWRITER =================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: hero-dot-pulse 2s ease-in-out infinite;
}
@keyframes hero-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12); }
}
/* hero-word-anim removed — original has no headline gradient/typewriter */

/* =================== LOGO MARQUEE =================== */
.logos-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* =================== BUTTON HOVER (for magnetic) =================== */
.btn-primary, .btn-primary-light, .btn-dark {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.15s, box-shadow 0.2s;
}
/* =================== FAQ ANIMATION =================== */
.faq-item p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  transition:
    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    margin-top 0.3s ease,
    padding-top 0.3s ease;
}
.faq-item[open] p {
  max-height: 400px;
  opacity: 1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f4f4f5;
}
/* =================== HERO FLOAT TRANSITIONS =================== */
/* removed — parallax deactivated, transforms now static */

/* =================== SVG CHART PREPARE =================== */
.animated-chart path[stroke] {
  /* JS sets dasharray/offset on intersect — fallback ensures visibility */
}
/* =================== SHIMMER REMOVED — wasn't in original =================== */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
input { font-family: inherit; }
/* =================== NAV =================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,10,10,0.04);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  position: relative;
}
.logo {
  font-weight: 700; font-size: 17px;
  display: flex; align-items: center; gap: 8px;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: #0a0a0a; color: #fff;
  border-radius: 5px;
}
.nav-links {
  display: flex; gap: 26px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 13.5px; color: #525252; font-weight: 500;
  transition: color .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover { color: #0a0a0a; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-dark {
  padding: 8px 14px;
  background: #0a0a0a; color: #fff;
  border-radius: 100px; font-size: 13px; font-weight: 500;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-dark:hover { background: #1e1e1e; transform: translateY(-1px); }
/* =================== HERO =================== */
.hero {
  background: var(--hero-bg);
  padding: 80px 28px 130px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
  position: relative;
}
.hero-text h1 {
  font-size: 56px; font-weight: 800; line-height: 1.0;
  letter-spacing: -0.042em;
  color: #0a0a0a;
  margin-bottom: 24px;
}
.hero-text p {
  font-size: 16px; color: #404040;
  margin-bottom: 30px;
  max-width: 470px;
  line-height: 1.6;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: #0a0a0a; color: #fff;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.btn-primary:hover {
  background: #1e1e1e;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.hero-meta-text {
  font-size: 13px;
  color: #404040;
}
.hero-meta-text strong { color: #0a0a0a; font-weight: 600; }
/* Hero visual — PIXELGENAU ZUM ORIGINAL */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  margin-left: auto;
  margin-right: 0;
}
.hero-yellow-bg {
  position: absolute;
  top: 10px;
  left: 20px;
  right: 0;
  height: 280px;
  background: #facc15;
  border-radius: 8px;
  z-index: 1;
  transform: rotate(-3deg);
  box-shadow: 0 16px 32px -10px rgba(250,204,21,0.45);
}
.hero-card {
  position: absolute;
  top: 32px;
  left: 0;
  right: 40px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 22px 44px -10px rgba(0,0,0,0.18), 0 6px 12px -4px rgba(0,0,0,0.06);
  overflow: hidden;
  z-index: 2;
}
.hero-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f4f4f5;
  background: #fafafa;
}
.hero-card-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: rgba(139, 92, 246, 0.10);
  color: #6d28d9;
  border-radius: var(--r-xs);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hero-meta-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-meta-value {
  font-size: 12.5px;
  font-weight: 600;
  color: #6d28d9;
  letter-spacing: -0.01em;
  line-height: 1;
}
.card-dots { display: flex; gap: 5px; flex-shrink: 0; }
.card-dots span {
  width: 9px; height: 9px; border-radius: 50%;
}
.card-dots span:nth-child(1) { background: #f87171; }
.card-dots span:nth-child(2) { background: #fbbf24; }
.card-dots span:nth-child(3) { background: #34d399; }
.hero-card-content {
  padding: 24px 24px 18px;
}
.hero-line-chart { width: 100%; height: 90px; }
/* Suchpille 1 (groß, mit Button) */
.hero-search {
  position: absolute;
  bottom: 50px;
  left: 30px;
  right: 70px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 16px 32px -8px rgba(0,0,0,0.18), 0 4px 8px -2px rgba(0,0,0,0.06);
  padding: 5px 5px 5px 14px;
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
}
.hero-search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 12.5px;
  color: #525252;
  outline: none;
  padding: 4px 0;
}
.hero-search input::placeholder { color: #a3a3a3; }
.hero-search-btn {
  width: 28px; height: 28px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s;
  flex-shrink: 0;
}
.hero-search-btn:hover { transform: translateX(2px); }
/* Suchpille 2 (kleiner, schmaler) */
.hero-search-2 {
  position: absolute;
  bottom: 6px;
  left: 60px;
  right: 100px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.14), 0 2px 6px -2px rgba(0,0,0,0.04);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #0a0a0a;
  font-weight: 500;
  z-index: 3;
}
/* =================== LOGO STRIP =================== */
.logos {
  padding: 44px 28px;
  background: #fff;
  border-bottom: 1px solid #f4f4f5;
}
.logos-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.logos-label {
  font-size: 11px; color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 22px;
}
.brand-mark {
  font-size: 14px;
  font-weight: 600;
  color: #a3a3a3;
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity .15s;
}
.brand-mark:hover { opacity: 1; color: #525252; }
/* =================== SPLIT SECTION =================== */
.split-section {
  padding: 120px 28px;
  background: #fff;
}
.split-section-alt {
  background: #fafafa;
}
.split-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px;
  align-items: center;
}
.split-reverse .split-inner { direction: rtl; }
.split-reverse .split-inner > * { direction: ltr; }
.split-text h2 {
  font-size: 42px; font-weight: 800;
  line-height: 1.08; letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: #0a0a0a;
}
.split-text p {
  font-size: 15.5px; color: #525252;
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.split-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #262626;
}
.bullet-item svg { flex-shrink: 0; }
/* Stats card — PIXELGENAU ZUM ORIGINAL */
.stats-card-wrapper {
  position: relative;
  max-width: 420px;
}
.stats-stripes {
  position: absolute;
  left: -28px; bottom: -18px;
  width: 175px; height: 110px;
  z-index: 1;
  background: repeating-linear-gradient(
    -50deg,
    #67e8f9,
    #67e8f9 4px,
    transparent 4px,
    transparent 9px
  );
  opacity: 0.9;
  border-radius: 4px;
}
.stats-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2;
}
.stats-card-header {
  padding: 11px 16px;
  border-bottom: 1px solid #f4f4f5;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stats-card-body {
  padding: 26px 26px 22px;
}
.stats-label {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.stats-value {
  font-size: 44px;
  font-weight: 800;
  color: #6366f1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  line-height: 1.0;
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.stats-trend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.trend-up {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: #10b981;
  background: #d1fae5;
  padding: 3px 8px;
  border-radius: var(--r-xs);
}
.trend-label {
  font-size: 11px;
  color: var(--ink-5);
}
.stats-mini-chart {
  height: 36px;
  margin-bottom: 18px;
  padding: 0 2px;
}
.stats-mini-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.stats-selects {
  margin-bottom: 8px;
}
.stats-selects:last-of-type {
  margin-bottom: 22px;
}
.select-pill {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--r-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s;
  cursor: pointer;
}
.select-pill:hover {
  border-color: #c4c4c4;
  background: #fafafa;
}
.select-flag {
  font-size: 14px;
}
.select-value {
  flex: 1;
  font-size: 12.5px;
  color: #0a0a0a;
  font-weight: 500;
}
.select-caret {
  font-size: 9px;
  color: #94a3b8;
}
.stats-footer-brand {
  padding-top: 16px;
  border-top: 1px solid #f4f4f5;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.2em;
  text-align: center;
}
/* AI composition — Original-treuer Lavender-Block */
.ai-composition {
  position: relative;
  height: 360px;
  width: 100%;
  max-width: 480px;
  margin-left: 0;
}
.ai-purple-bg {
  position: absolute;
  inset: 0;
  background: #c4b5fd;
  border-radius: 14px;
  z-index: 1;
}
.ai-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 32px -8px rgba(0,0,0,0.18), 0 4px 10px -4px rgba(0,0,0,0.06);
  z-index: 2;
}
/* Hauptkarte zentriert mit Chart */
.ai-card-main {
  top: 100px;
  left: 50px;
  right: 50px;
  padding: 14px 18px 12px;
}
.ai-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ai-tab-mini {
  font-size: 10.5px;
  font-weight: 600;
  color: #fff;
  background: #0a0a0a;
  padding: 3px 9px;
  border-radius: 5px;
}
.ai-chart { width: 100%; height: 80px; }
/* Prompt-Karte 1 — oben rechts schwebend */
.ai-card-prompt {
  top: 28px;
  right: 30px;
  padding: 9px 14px 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-card-prompt:hover { transform: translateY(-2px); }
.ai-card-prompt-2 {
  top: auto;
  bottom: 32px;
  right: auto;
  left: 30px;
  z-index: 3;
}
.prompt-icon {
  width: 30px; height: 30px;
  background: #ede9fe;
  border-radius: 7px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 15px;
}
.prompt-title {
  font-size: 12px;
  font-weight: 600;
  color: #0a0a0a;
}
.prompt-meta {
  font-size: 10.5px;
  color: #737373;
  margin-top: 1px;
}
/* Floating Callout — Performance-Badge */
.ai-callout-float {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 7px 13px 7px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  z-index: 4;
}
/* Mini-Pills für mehr Composition wie im Original */
.ai-mini-pill {
  position: absolute;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  z-index: 4;
}
.ai-mini-pill-1 {
  bottom: 18px;
  right: 24px;
}
.ai-mini-dot {
  width: 6px; height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}
/* =================== DEMO ============= */
.demo {
  padding: 100px 28px;
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
}
.demo-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 100px;
  font-size: 10.5px;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 10px;
  color: #0a0a0a;
}
.section-sub {
  font-size: 15.5px; color: #737373;
  margin-bottom: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.demo-mockup {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(15, 23, 42, 0.18), 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  background: #fff;
  border: 1px solid #e5e7eb;
}
.demo-mockup img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
/* =================== HOW IT WORKS =================== */
.how {
  padding: 120px 28px;
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
}
.how-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.how-steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.how-step {
  position: relative;
}
.how-step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.how-number {
  width: 38px; height: 38px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.how-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, #d4d4d4, #d4d4d4 4px, transparent 4px, transparent 8px);
}
.how-icon-wrap {
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0a0a0a;
}
.how-step p {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
}
/* =================== FEATURES =================== */
.features {
  background: #fff;
  padding: 120px 28px;
  border-top: 1px solid #f4f4f5;
}
.features-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.features-sub {
  font-size: 15.5px; color: #737373;
  margin-bottom: 56px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-card {
  padding: 28px 22px;
  background: #fafafa;
  border: 1px solid #f4f4f5;
  border-radius: 14px;
  text-align: left;
  transition: all .2s;
}
.feature-card:hover {
  background: #fff;
  border-color: #e5e5e5;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.08);
}
.feature-mini-icon {
  width: 32px; height: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
}
.feature-mini-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 11px;
  border: 1px solid currentColor;
  opacity: 0.15;
}
.icon-blue { background: #eff6ff; color: #2563eb; }
.icon-purple { background: #f5f3ff; color: #8b5cf6; }
.icon-yellow { background: #fffbeb; color: #d97706; }
.icon-green { background: #f0fdf4; color: #059669; }
.feature-card { text-align: center; }
.feature-mini-icon { margin-left: auto; margin-right: auto; }
.feature-card h3 {
  font-size: 15.5px; font-weight: 600;
  margin-bottom: 6px;
  color: #0a0a0a;
}
.feature-card p {
  font-size: 13px;
  color: #737373;
  line-height: 1.55;
  margin-bottom: 16px;
}
.feature-card h3, .feature-card p { text-align: center; }
/* =================== COMPARISON =================== */
.compare {
  padding: 120px 28px;
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
}
.compare-inner {
  max-width: 980px; margin: 0 auto;
  text-align: center;
}
.compare-table {
  margin-top: 56px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.06);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid #f4f4f5;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.compare-head {
  background: #fafafa;
  font-size: 13px;
  font-weight: 600;
  color: #525252;
}
.compare-feature {
  padding: 14px 20px;
  font-size: 14px;
  color: #262626;
  text-align: left;
  font-weight: 500;
}
.compare-col {
  padding: 14px 12px;
  text-align: center;
  font-size: 13.5px;
  color: #525252;
}
.compare-col.compare-us {
  background: #f8fafc;
  position: relative;
}
.compare-row.compare-head .compare-col.compare-us {
  background: #0a0a0a;
  color: #fff;
}
.us-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
/* =================== RISK REVERSAL =================== */
.risk-reversal {
  padding: 120px 28px;
  background: #fafafa;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.risk-reversal-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}
.risk-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.risk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.risk-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.risk-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.risk-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-4);
}
.risk-card a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
@media (max-width: 880px) {
  .risk-grid { grid-template-columns: 1fr; }
}
@keyframes ring1 {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes ring2 {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.7; }
}
/* =================== PRICING =================== */
.pricing {
  padding: 120px 28px;
  background: #fff;
  border-top: 1px solid #f4f4f5;
}
.pricing-inner {
  max-width: 920px; margin: 0 auto;
  text-align: center;
}
.pricing-sub {
  font-size: 15.5px; color: #737373;
  margin-bottom: 48px;
}
/* =================== PRICING CARD — clean rectangle (2 columns) =================== */
.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: left;
}
.price-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.price-left {
  padding: 48px 44px 36px;
  display: flex;
  flex-direction: column;
}
.price-right {
  padding: 48px 44px 36px;
}
.price-divider {
  width: 1px;
  background: var(--line);
  margin: 32px 0;
}
.price-tag-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.dollar {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.amount {
  font-size: 76px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1;
}
.price-suffix {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-4);
  margin-left: 4px;
}
.price-strike-line {
  font-size: 13px;
  color: var(--ink-5);
  margin-bottom: 28px;
}
.launch-notify {
  margin: 64px auto 0;
  max-width: 640px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
}
.launch-notify::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b8dde5;
  border-radius: 0 0 6px 6px;
}
.launch-notify h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.launch-notify p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-4);
  margin-bottom: 20px;
}
.launch-notify p.launch-notify-meta {
  margin-bottom: 0;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-5);
}
.launch-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}
.launch-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
}
.launch-form input[type="email"]:focus {
  border-color: var(--ink);
}
.launch-form input[type="email"].input-error {
  border-color: #ef4444;
}
.launch-form button {
  white-space: nowrap;
}
@media (max-width: 520px) {
  .launch-form { flex-direction: column; }
  .launch-form button { width: 100%; }
}
.device-notice {
  margin: 20px auto 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-5);
  text-align: center;
  max-width: 600px;
  padding: 12px 20px;
  background: #fafafa;
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
.preorder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid #fde68a;
  text-transform: uppercase;
}
.preorder-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d97706;
  animation: preorderPulse 2.4s ease-in-out infinite;
}
@keyframes preorderPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.25); }
}
.price-free-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-4);
}
.price-free-note strong {
  color: var(--ink);
}
.price-preorder-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-4);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 18px 0 22px;
}
.price-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
  margin-bottom: 20px;
}
.price-foot {
  font-size: 12.5px;
  color: var(--ink-4);
  margin-bottom: 16px;
}
.dot-sep {
  color: var(--line-2);
  margin: 0 6px;
}
.price-discount-toggle {
  font-size: 12.5px;
  color: var(--ink-4);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
  align-self: flex-start;
}
.price-discount-toggle:hover {
  color: var(--ink);
}
.price-discount-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.price-discount-wrap.open {
  max-height: 120px;
  margin-top: 12px;
}
.price-discount-wrap .discount-input {
  margin: 0;
  max-width: 100%;
}
.price-features-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-5);
  margin-bottom: 18px;
}
.price-features {
  list-style: none;
  padding: 0;
}
.price-features li {
  padding: 9px 0 9px 26px;
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #10b981;
  border-bottom: 2px solid #10b981;
  transform: rotate(-45deg);
}
.browser-support {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-4);
}
.bs-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-5);
  margin-right: 6px;
}
.bs-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 12px;
  background: #f5f5f5;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.bs-badge small {
  color: var(--ink-5);
  font-weight: 500;
  margin-left: 4px;
}
/* =================== FAQ =================== */
.faq {
  padding: 120px 28px;
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
}
.faq-inner {
  max-width: 980px; margin: 0 auto;
  text-align: center;
}
.faq-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}
.faq-item {
  background: #fff;
  border: 1px solid #f4f4f5;
  border-radius: 12px;
  padding: 18px 22px;
  transition: all .2s;
}
.faq-item:hover { border-color: #e5e5e5; }
.faq-item[open] { box-shadow: 0 8px 20px -4px rgba(0,0,0,0.05); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 22px; height: 22px;
  background: #f4f4f5;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 15px;
  color: #525252;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: #0a0a0a;
  color: #fff;
}
.faq-item p {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f4f4f5;
  font-size: 13.5px;
  color: #525252;
  line-height: 1.6;
}
/* =================== FOOTER =================== */
.footer {
  background: #171717;
  color: #a3a3a3;
  padding: 70px 28px 28px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2.5fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo-dark {
  color: #fff;
  margin-bottom: 14px;
}
.logo-mark-dark {
  background: #fff;
  color: #171717;
}
.footer-tagline {
  font-size: 13.5px;
  color: #a3a3a3;
  margin-bottom: 26px;
  max-width: 260px;
  line-height: 1.55;
}
.newsletter-block label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.newsletter {
  display: flex; gap: 4px;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 100px;
  padding: 4px 4px 4px 16px;
  max-width: 300px;
  transition: border .15s;
}
.newsletter:focus-within { border-color: #525252; }
.newsletter input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.newsletter input::placeholder { color: #737373; }
.newsletter button {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 50%;
  color: #171717;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s;
}
.newsletter button:hover { transform: translateX(2px); }
.footer-newsletter-note {
  font-size: 11.5px;
  color: #737373;
  margin-top: 10px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 13.5px;
  color: #a3a3a3;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px;
}
.footer-socials-row,
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 100px;
  font-size: 12px;
  color: #cbd5e1;
  transition: all .15s;
}
.social-pill:hover {
  background: #fff;
  color: #171717;
  border-color: #fff;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.copyright {
  font-size: 12.5px; color: #737373;
}
.footer-legal {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
}
.footer-legal a {
  color: #737373;
  transition: color .15s;
}
.footer-legal a:hover { color: #fff; }
/* =================== TRUST STATS BANNER — cleaner, original-treu =================== */
.trust-stats {
  background: #fafafa;
  color: var(--ink);
  padding: 64px 28px;
  border-bottom: 1px solid var(--line);
}
.trust-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat {
  text-align: center;
  position: relative;
}
.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -12px;
  width: 1px; height: 50px;
  background: var(--line-2);
  transform: translateY(-50%);
}
.ts-value {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.ts-label {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
}
/* =================== USE CASES =================== */
.usecases {
  padding: 120px 28px;
  background: #fff;
  border-top: 1px solid #f4f4f5;
}
.usecases-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.usecase-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.usecase-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow-xs);
}
.usecase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.usecase-card[data-color="indigo"] { --accent: #6366f1; }
.usecase-card[data-color="amber"] { --accent: #f59e0b; }
.usecase-card[data-color="purple"] { --accent: #8b5cf6; }
.usecase-card[data-color="emerald"] { --accent: #10b981; }
.usecase-card:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.usecase-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.usecase-badge {
  display: inline-block;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.usecase-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}
.usecase-card p {
  font-size: 14.5px;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 20px;
}
.usecase-list {
  list-style: none;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.usecase-list li {
  padding: 7px 0;
  font-size: 13px;
  color: #262626;
  display: flex;
  align-items: center;
  gap: 8px;
}
.uc-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
/* =================== INTEGRATIONS =================== */
.integrations {
  padding: 120px 28px;
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
}
.integrations-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.integrations-orbit {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 480px;
  margin: 60px auto 0;
}
.orbit-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 130px; height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.12);
}
.orbit-center span {
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
}
.orbit-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed #e5e5e5;
  border-radius: 50%;
}
.orbit-ring-1 { width: 290px; height: 290px; animation: orbit-rotate 30s linear infinite; }
.orbit-ring-2 { width: 460px; height: 460px; animation: orbit-rotate 50s linear infinite reverse; }
@keyframes orbit-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.orbit-item {
  position: absolute;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.08);
  z-index: 5;
  transition: transform 0.2s;
}
.orbit-item:hover { transform: scale(1.05); }
.orbit-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.orbit-label {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
}
.orbit-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.status-live { background: #d1fae5; color: #065f46; }
.status-soon { background: #fef3c7; color: #92400e; }
.status-planned { background: #ede9fe; color: #5b21b6; }
.orbit-pos-1 { left: 50%; top: 8%; transform: translateX(-50%); }
.orbit-pos-2 { right: 4%; top: 30%; }
.orbit-pos-3 { right: 4%; bottom: 30%; }
.orbit-pos-4 { left: 50%; bottom: 8%; transform: translateX(-50%); }
.orbit-pos-5 { left: 4%; bottom: 30%; }
.orbit-pos-6 { left: 4%; top: 30%; }
/* =================== ROADMAP =================== */
.roadmap {
  padding: 120px 28px;
  background: #fff;
  border-top: 1px solid #f4f4f5;
}
.roadmap-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.roadmap-timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
  position: relative;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, #e5e5e5, #e5e5e5 6px, transparent 6px, transparent 12px);
}
.roadmap-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  position: relative;
  transition: all 0.2s;
  box-shadow: var(--shadow-xs);
}
.roadmap-item.done { background: #f0fdf4; border-color: #bbf7d0; }
.roadmap-item.current { background: #fef9c3; border-color: #fde68a; }
.roadmap-item.current::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  border: 2px solid #f59e0b;
  pointer-events: none;
  animation: roadmap-pulse 2s ease-in-out infinite;
}
@keyframes roadmap-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.rm-quarter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #525252;
  margin-bottom: 4px;
}
.rm-status {
  font-size: 12px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.roadmap-item.done .rm-status { color: #047857; }
.roadmap-item.current .rm-status { color: #b45309; }
.roadmap-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.roadmap-item ul {
  list-style: none;
}
.roadmap-item li {
  font-size: 13px;
  color: #525252;
  padding: 4px 0;
  position: relative;
  padding-left: 14px;
}
.roadmap-item li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #94a3b8;
}
.roadmap-cta {
  margin-top: 40px;
  text-align: center;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #d4d4d4;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.btn-ghost-dark:hover {
  background: #0a0a0a;
  color: #fff;
}
@keyframes seal-rotate {
  to { transform: rotate(360deg); }
}
/* =================== STICKY CTA BAR =================== */
.sticky-cta {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 7px 7px 7px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25), 0 6px 12px -4px rgba(0,0,0,0.1);
  z-index: 80;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  max-width: calc(100vw - 32px);
}
.sticky-cta.sticky-show {
  transform: translateX(-50%) translateY(0);
}
.sticky-cta.sticky-closed {
  transform: translateX(-50%) translateY(120%) !important;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.sticky-cta-text strong {
  font-weight: 700;
  font-size: 14px;
}
.sticky-cta-text span {
  color: #94a3b8;
  font-size: 11.5px;
}
.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sticky-btn {
  padding: 10px 18px !important;
  font-size: 13px !important;
  background: #fff !important;
  color: #0a0a0a !important;
}
.sticky-btn:hover {
  background: #f4f4f5 !important;
}
.sticky-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  color: #94a3b8;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.15s;
}
.sticky-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
/* =================== HELP FAB =================== */
.help-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 52px; height: 52px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.3);
  z-index: 70;
  transition: all 0.2s;
}
.help-fab:hover {
  transform: scale(1.1);
  background: #1e1e1e;
}
.help-panel {
  position: fixed;
  right: 24px; bottom: 90px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px -8px rgba(0,0,0,0.2);
  padding: 22px;
  z-index: 71;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.help-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.help-header strong { font-size: 16px; color: #0a0a0a; }
.help-header button {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #f4f4f5;
  color: #525252;
  font-size: 16px;
  display: flex;
  align-items: center; justify-content: center;
}
.help-header button:hover { background: #e5e5e5; }
.help-panel > p {
  font-size: 13px;
  color: #737373;
  margin-bottom: 14px;
}
.help-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #fafafa;
  border-radius: 10px;
  font-size: 13.5px;
  color: #0a0a0a;
  font-weight: 500;
  margin-bottom: 6px;
  transition: background 0.15s;
}
.help-action:hover { background: #f4f4f5; }
/* =================== COOKIE BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 24px 48px -8px rgba(0,0,0,0.2);
  z-index: 90;
  padding: 20px 24px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.cookie-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-banner.cookie-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.cookie-text {
  flex: 1;
}
.cookie-text strong {
  display: block;
  font-size: 14px;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 12.5px;
  color: #525252;
  line-height: 1.5;
}
.cookie-text a {
  color: #6366f1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-cookie-primary, .btn-cookie-secondary {
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.15s;
}
.btn-cookie-primary {
  background: #0a0a0a;
  color: #fff;
}
.btn-cookie-primary:hover { background: #1e1e1e; }
.btn-cookie-secondary {
  background: #f4f4f5;
  color: #525252;
}
.btn-cookie-secondary:hover { background: #e5e5e5; }
/* =================== MOBILE BURGER & DRAWER =================== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 102;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.mobile-drawer.open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.mobile-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: 88%;
  max-width: 360px;
  height: 100%;
  background: #fff;
  padding: 22px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-drawer-close {
  width: 36px; height: 36px;
  background: var(--bg-2);
  border-radius: 50%;
  font-size: 22px;
  color: var(--ink-3);
}
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.mobile-drawer-nav a {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-cta {
  margin-bottom: 28px;
}
.mobile-drawer-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-3);
}
.mobile-drawer-foot a {
  padding: 8px 12px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
}
/* =================== FOUNDER SECTION =================== */
.founder {
  padding: var(--section-y) 28px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}
.founder-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: center;
}
.founder-photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.founder-photo-bg {
  position: absolute;
  inset: 20px 0 0 20px;
  background: var(--lavender);
  border-radius: var(--r-lg);
  transform: rotate(-3deg);
}
.founder-photo-circle {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 6px solid #fff;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2) 0%, #fff 100%);
}
.founder-badge {
  position: absolute;
  top: -10px; right: -10px;
  padding: 8px 16px;
  background: var(--yellow);
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.founder-text h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 12px 0 18px;
  color: var(--ink);
}
.founder-text p {
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 14px;
}
.founder-text em {
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
}
.founder-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
  transition: color 0.15s;
}
.founder-link:hover { color: var(--ink); }
.founder-stat {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid var(--line-2);
}
.founder-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.founder-stat span {
  font-size: 11px;
  color: var(--ink-5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
/* =================== DISCOUNT CODE — compact =================== */
.discount-input {
  display: flex;
  gap: 6px;
  max-width: 280px;
  margin: 0 auto;
}
.discount-input input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-family: inherit;
  background: var(--bg-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.15s;
  text-align: center;
}
.discount-input input:focus { border-color: var(--accent); background: #fff; }
.discount-input button {
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s;
}
.discount-input button:hover { background: #1e1e1e; }
.discount-feedback {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 8px;
  min-height: 16px;
}
.discount-feedback.success { color: #10b981; }
.discount-feedback.error { color: #ef4444; }
.affiliate .btn-primary {
  background: #fff;
  color: var(--ink);
}
.affiliate .btn-primary:hover {
  background: #f4f4f5;
  box-shadow: 0 12px 28px -8px rgba(255,255,255,0.2);
}
/* =================== STATUS INDICATOR (Footer) =================== */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  color: #6ee7b7;
  font-weight: 500;
  margin-bottom: 24px;
}
.status-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0.1); }
}
/* =================== 404 ERROR PAGE =================== */
.error-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  background: var(--hero-bg);
}
.error-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.error-glitch {
  position: relative;
  margin-bottom: 28px;
  height: 120px;
}
.error-code {
  position: relative;
  z-index: 2;
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
}
.error-code-shadow {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-48%);
  z-index: 1;
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--yellow);
  line-height: 1;
  display: inline-block;
}
.error-inner h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--ink);
}
.error-inner > p {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.error-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(10,10,10,0.1);
  border-bottom: 1px solid rgba(10,10,10,0.1);
  margin-bottom: 28px;
}
.error-links a {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}
.error-links a:hover { color: var(--ink); text-decoration: underline; }
.error-help p {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.error-mail {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* =================== THANK YOU PAGE =================== */
.thanks-page {
  min-height: calc(100vh - 70px);
  padding: 50px 28px 80px;
  background: linear-gradient(180deg, var(--bg-2) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.thanks-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.thanks-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.thanks-confetti span {
  position: absolute;
  font-size: 24px;
  color: var(--c);
  animation: confetti-fall 4s ease-out infinite;
}
.thanks-confetti span:nth-child(1) { left: 10%; animation-delay: 0s; }
.thanks-confetti span:nth-child(2) { left: 25%; animation-delay: 0.5s; }
.thanks-confetti span:nth-child(3) { left: 50%; animation-delay: 1s; }
.thanks-confetti span:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.thanks-confetti span:nth-child(5) { left: 85%; animation-delay: 2s; }
.thanks-confetti span:nth-child(6) { left: 40%; animation-delay: 2.5s; }
@keyframes confetti-fall {
  0% { transform: translateY(-50px) rotate(0); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.thanks-check {
  display: inline-flex;
  margin-bottom: 24px;
  animation: thanks-check-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) backwards;
}
@keyframes thanks-check-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.thanks-inner h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 14px 0 12px;
  color: var(--ink);
}
.thanks-sub {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.thanks-receipt {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 30px;
  margin-bottom: 48px;
  text-align: left;
  box-shadow: var(--shadow-md);
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-3);
}
.receipt-row:last-child { border-bottom: none; padding-bottom: 0; }
.receipt-row strong { color: var(--ink); font-weight: 600; }
.receipt-highlight strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
}
.status-dot-mini {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}
.thanks-next h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-align: center;
}
.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-bottom: 48px;
}
.thanks-step {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
}
.ts-num {
  width: 36px; height: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.ts-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.ts-content p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: 10px;
}
.ts-content em { font-weight: 600; color: var(--ink); font-style: normal; padding: 1px 5px; background: var(--bg-2); border-radius: 4px; }
.thanks-foot {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.thanks-foot p { font-size: 13.5px; color: var(--ink-3); margin-bottom: 4px; }
.thanks-mail {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.thanks-share { margin-top: 28px; }
.thanks-share a { color: var(--accent); font-weight: 600; }
/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr; }
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .trust-stat:nth-child(2)::after { display: none; }
  .roadmap-timeline { grid-template-columns: repeat(2, 1fr); }
  .roadmap-timeline::before { display: none; }
  .casestudy-grid { grid-template-columns: 1fr; }
  .trust-badges-row { grid-template-columns: repeat(2, 1fr); }
  .affiliate-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .founder-meta { justify-content: center; }
}
@media (max-width: 900px) {
  .usecase-grid { grid-template-columns: 1fr; }
  .integrations-orbit { height: 380px; max-width: 360px; }
  .orbit-ring-1 { width: 240px; height: 240px; }
  .orbit-ring-2 { width: 340px; height: 340px; }
  .orbit-center { width: 100px; height: 100px; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee-features { justify-content: center; }
  .press-grid { grid-template-columns: 1fr; }
  .activity-toast { left: 12px; right: 12px; max-width: none; }
  .help-panel { right: 12px; left: 12px; width: auto; bottom: 84px; }
  .sticky-cta { padding-left: 18px; padding-right: 8px; }
  .sticky-cta-text strong { font-size: 13px; }
  .sticky-cta-text span { font-size: 10.5px; }
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .announcement-inner { font-size: 11.5px; gap: 8px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .founder-text h2, .affiliate-content h2 { font-size: 30px; }
  .error-code, .error-code-shadow { font-size: 92px; }
  .thanks-inner h1 { font-size: 32px; }
  .hero-inner, .split-inner, .privacy-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-text h1 { font-size: 40px; }
  .section-title, .split-text h2, .privacy-text h2, .cta-band h2 { font-size: 30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-line { display: none; }
  .price-content { grid-template-columns: 1fr; }
  .price-divider { display: none; }
  .price-left { padding: 40px 28px 24px; }
  .price-right { padding: 24px 28px 32px; border-top: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-bottom-row { justify-content: center; text-align: center; }
  .split-reverse .split-inner { direction: ltr; }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .compare-table { font-size: 12px; }
  .compare-row .compare-col:nth-child(4),
  .compare-row .compare-col:nth-child(5) { display: none; }
  .demo-content { padding: 30px; }
  .demo-video-area { height: 200px; }
  .ai-composition { max-width: 100%; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .amount { font-size: 56px; }
  .hero { padding: 50px 22px 90px; }
  .hero-text h1 { font-size: 32px; }
  .nav-cta { gap: 8px; }
  .btn-ghost { display: none; }
  .privacy-visual { height: 220px; }
  .privacy-shield { width: 110px; height: 110px; }
  .privacy-ring-1 { width: 160px; height: 160px; }
  .privacy-ring-2 { width: 210px; height: 210px; }
}
