/* ═══════════════════════════════════════════════════════════
   VANTAGE DESK — Marketing Site
   Aurora Light Theme · Plus Jakarta Sans
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Aurora Light palette — mirrors the app */
  --indigo:  #5b5ee8;
  --violet:  #7c3aed;
  --pink:    #ec4899;
  --cyan:    #06b6d4;
  --emerald: #10b981;
  --amber:   #f59e0b;

  /* Backgrounds */
  --bg:      #f0f1ff;
  --bg-2:    #e8eaff;
  --bg-3:    #dfe1ff;
  --surface: rgba(255,255,255,0.88);

  /* Borders */
  --border:  rgba(91,94,232,0.12);
  --border-2:rgba(91,94,232,0.22);

  /* Text */
  --text:    #1a1740;
  --text-2:  rgba(26,23,64,0.72);
  --text-3:  rgba(26,23,64,0.48);

  /* Gradients */
  --grad:     linear-gradient(135deg, #5b5ee8 0%, #7c3aed 100%);
  --grad-alt: linear-gradient(135deg, #5b5ee8 0%, #a855f7 50%, #ec4899 100%);
  --aurora:   linear-gradient(135deg, #5b5ee8 0%, #ec4899 50%, #06b6d4 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(91,94,232,0.10), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(91,94,232,0.16), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 32px rgba(91,94,232,0.20), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 32px 80px rgba(91,94,232,0.24), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 28px rgba(91,94,232,0.35);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.80);
  --glass-border: rgba(91,94,232,0.14);
  --glass-blur:   16px;

  --nav-h: 68px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; }

.text-gradient {
  background: var(--grad-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── KEYFRAMES ────────────────────────────────────────────── */
@keyframes auroraShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes auroraGlow {
  0%   { box-shadow: 0 0 28px rgba(91,94,232,0.40), 0 0 60px rgba(91,94,232,0.12); }
  33%  { box-shadow: 0 0 28px rgba(236,72,153,0.36), 0 0 60px rgba(236,72,153,0.10); }
  66%  { box-shadow: 0 0 28px rgba(6,182,212,0.36),  0 0 60px rgba(6,182,212,0.10); }
  100% { box-shadow: 0 0 28px rgba(91,94,232,0.40), 0 0 60px rgba(91,94,232,0.12); }
}
@keyframes lp-spin-cw  { from { transform: translate(-50%,-50%) rotate(0deg);    } to { transform: translate(-50%,-50%) rotate(360deg);   } }
@keyframes lp-spin-ccw { from { transform: translate(-50%,-50%) rotate(0deg);    } to { transform: translate(-50%,-50%) rotate(-360deg);  } }
@keyframes lp-float    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse {
  0%   { transform: scale(.6); opacity: .5; }
  100% { transform: scale(2.4); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── KANBAN BACKGROUND STAGE ──────────────────────────────── */
.lp-stage {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
}

/* Column washes */
.lp-col { position: absolute; border-radius: 50%; filter: blur(80px); }
.lp-col-todo  {
  width: 55vw; height: 90vh; top: -15%; left: -8%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, #d8dffe 0%, transparent 70%);
  opacity: 0.60;
}
.lp-col-doing {
  width: 50vw; height: 70vh; top: 10%; left: 25%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, #fdebc4 0%, transparent 70%);
  opacity: 0.38;
}
.lp-col-done {
  width: 55vw; height: 90vh; top: -10%; right: -10%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, #cdf3e0 0%, transparent 70%);
  opacity: 0.50;
}

/* Ring cluster — upper-right, behind hero laptop */
.lp-rings-wrap { position: absolute; top: 46%; left: 67%; }
.lp-o1, .lp-o2, .lp-kpi-ring, .lp-core-glow { position: absolute; }
.lp-o1 {
  width: 460px; height: 460px; border-radius: 50%;
  border: 1px dashed rgba(99,102,241,0.18);
  transform: translate(-50%,-50%);
  animation: lp-spin-cw 240s linear infinite;
}
.lp-o2 {
  width: 640px; height: 640px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.10);
  transform: translate(-50%,-50%);
  animation: lp-spin-ccw 320s linear infinite;
}
.lp-kpi-ring {
  width: 340px; height: 340px; border-radius: 50%;
  transform: translate(-50%,-50%);
  background: conic-gradient(from -90deg, #8b5cf6 0%, #ec4899 22%, #06b6d4 44%, transparent 44%, transparent 100%);
  filter: blur(10px); opacity: 0.45;
}
.lp-core-glow {
  width: 200px; height: 200px; border-radius: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.30) 50%, transparent 80%);
  filter: blur(40px);
}

/* Orbital dots */
.lp-orbd, .lp-orbd-pink, .lp-orbd-cyan, .lp-orbd-green {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
}
.lp-orbd       { background: #6366f1; box-shadow: 0 0 12px rgba(99,102,241,0.6);  filter: blur(4px); opacity: 0.5; }
.lp-orbd-pink  { background: #ec4899; box-shadow: 0 0 12px rgba(236,72,153,0.6); filter: blur(4px); opacity: 0.5; }
.lp-orbd-cyan  { background: #06b6d4; box-shadow: 0 0 12px rgba(6,182,212,0.6);  filter: blur(4px); opacity: 0.5; }
.lp-orbd-green { background: #10b981; box-shadow: 0 0 12px rgba(16,185,129,0.6); filter: blur(4px); opacity: 0.5; }

/* Floating icon chips */
.lp-chip {
  position: absolute; display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -6px rgba(99,102,241,0.14);
  animation: lp-float 14s ease-in-out infinite;
  filter: blur(4px);
  opacity: 0.45;
}
.lp-chip.s2 { animation-duration: 18s; animation-delay: -3s;  }
.lp-chip.s3 { animation-duration: 22s; animation-delay: -6s;  }
.lp-chip.s4 { animation-duration: 16s; animation-delay: -2s;  }
.lp-chip.s5 { animation-duration: 20s; animation-delay: -8s;  }
.lp-chip.s6 { animation-duration: 25s; animation-delay: -11s; }
.lp-ti { background: rgba(199,210,254,0.65); border: 1px solid rgba(165,180,252,0.50); color: #4f46e5; }
.lp-ta { background: rgba(253,230,138,0.65); border: 1px solid rgba(251,191, 36,0.45); color: #b45309; }
.lp-tg { background: rgba(187,247,208,0.65); border: 1px solid rgba(110,231,183,0.50); color: #047857; }
.lp-tp { background: rgba(251,207,232,0.65); border: 1px solid rgba(249,168,212,0.50); color: #be185d; }
.lp-tc { background: rgba(186,230,253,0.65); border: 1px solid rgba(103,232,249,0.50); color: #0369a1; }

/* ── GRAIN SVG ────────────────────────────────────────────── */
.grain-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.032;
  pointer-events: none;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  line-height: 1;
  transition: filter .2s;
  box-shadow: 0 4px 16px rgba(91,94,232,0.36);
}
.btn-primary:hover {
  filter: brightness(1.18) saturate(1.1);
}
.btn-primary.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-primary.btn-white {
  background: rgba(255,255,255,0.95);
  color: var(--indigo);
  box-shadow: 0 4px 20px rgba(0,0,0,0.16);
}
.btn-primary.btn-white:hover { filter: brightness(1.06); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  color: var(--text-2);
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  line-height: 1;
  border: 1.5px solid var(--border-2);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(91,94,232,0.1);
}
.btn-outline.btn-lg { padding: 15px 28px; font-size: 15px; }

.btn-ghost-sm {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.btn-ghost-sm:hover { background: rgba(91,94,232,0.08); color: var(--text); }

.btn-primary-sm {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--grad);
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(91,94,232,0.32);
  transition: filter .2s;
}
.btn-primary-sm:hover { filter: brightness(1.18) saturate(1.1); }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(240,241,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(91,94,232,0.10);
  background: rgba(240,241,255,0.92);
}
.nav-inner {
  display: flex; align-items: center; gap: 8px;
  height: 100%; max-width: 1200px;
  margin-inline: auto; padding-inline: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  color: var(--text); margin-right: 24px; flex-shrink: 0;
}
.nav-logo-img { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 6px 14px; border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(91,94,232,0.08); color: var(--text); }
.nav-links .nav-muted { color: var(--text-3); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: 8px; }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px;
  background: rgba(240,241,255,0.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(91,94,232,0.10);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  padding: 10px 14px; border-radius: 10px;
}
.nav-mobile a:hover { background: rgba(91,94,232,0.08); color: var(--text); }

/* ── SECTION CHIP / HEADER ────────────────────────────────── */
.section-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--indigo);
  background: rgba(91,94,232,0.09);
  border: 1px solid rgba(91,94,232,0.18);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.section-header { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 36px; }
.section-title {
  font-size: clamp(32px,5vw,48px); font-weight: 800;
  line-height: 1.15; color: var(--text); margin-bottom: 16px;
  text-wrap: balance;
}
.section-sub { font-size: 18px; color: var(--text-2); line-height: 1.7; max-width: 620px; margin-inline: auto; text-wrap: pretty; }

/* ── SECTION LOGO MARK ────────────────────────────────────── */
.section-logo-mark {
  display: inline-block;
  width: 72px; height: 72px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.section-logo-mark svg { width: 100%; height: 100%; display: block; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
[data-animate] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ── HERO ENTRANCE ANIMATIONS ────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleUp {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-badge    { animation: heroFadeUp .70s cubic-bezier(.16,1,.3,1) .05s both; }
.hero-headline { animation: heroFadeUp .80s cubic-bezier(.16,1,.3,1) .16s both; }
.hero-sub      { animation: heroFadeUp .70s cubic-bezier(.16,1,.3,1) .28s both; }
.hero-ctas     { animation: heroFadeUp .65s cubic-bezier(.16,1,.3,1) .38s both; }
.hero-proof    { animation: heroFadeUp .60s cubic-bezier(.16,1,.3,1) .46s both; }
.hero-badges   { animation: heroFadeUp .60s cubic-bezier(.16,1,.3,1) .52s both; }
.hero-img-wrap { animation: heroScaleUp 1.0s cubic-bezier(.16,1,.3,1) .10s both; }
.float-card.fc-1 { animation: heroFadeUp .65s cubic-bezier(.16,1,.3,1) .50s both; }
.float-card.fc-2 { animation: heroFadeUp .65s cubic-bezier(.16,1,.3,1) .64s both; }
.float-card.fc-3 { animation: heroFadeUp .65s cubic-bezier(.16,1,.3,1) .78s both; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  padding-bottom: 40px;
  position: relative; overflow: hidden; background: transparent;
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 65% at 60% -10%, rgba(91,94,232,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 105% 55%, rgba(124,58,237,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at -5% 82%,  rgba(236,72,153,0.13) 0%, transparent 65%);
}
.hero-inner {
  display: grid; grid-template-columns: 0.6fr 1.4fr;
  align-items: center; gap: 60px;
  max-width: 1400px;
  margin-inline: auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; color: #16a34a;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.28);
  padding: 6px 14px 6px 10px; border-radius: 100px; margin-bottom: 22px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #16a34a; position: relative;
}
.badge-pulse::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: #16a34a; opacity: 0.3; animation: pulse 2s ease-out infinite;
}
.hero-headline {
  font-size: clamp(38px,5.5vw,60px); font-weight: 800;
  line-height: 1.1; color: var(--text); margin-bottom: 20px; letter-spacing: -.02em;
}
.grad-word {
  background: var(--aurora); background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: auroraShift 4s ease infinite;
}
.word-wrap { display: inline-block; overflow: hidden; }
.word-inner { display: inline-block; }

.hero-sub { font-size: 17px; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-proof { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-2); }
.proof-avs  { display: flex; }
.proof-av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: #fff; margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.hero-proof strong { color: var(--text); }

/* ── HERO BADGES ──────────────────────────────────────────── */
.hero-badges { display: flex; align-items: center; flex-wrap: wrap; margin-top: 20px; }
.h-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--text-2); padding: 4px 0; }
.h-stars  { color: var(--amber); font-size: 11px; letter-spacing: 1px; }
.h-badge-sep { width: 1px; height: 14px; background: var(--border-2); margin: 0 12px; flex-shrink: 0; }

/* ── HERO VISUAL ──────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; transform-style: preserve-3d; }

.hero-img-wrap {
  position: relative; width: 100%; max-width: 960px;
  border-radius: 20px;
  box-shadow: 0 60px 120px rgba(91,94,232,0.32), 0 16px 40px rgba(0,0,0,0.14);
  will-change: transform;
  transform-style: preserve-3d;
  cursor: zoom-in;
}
.hero-img-wrap img { width: 100%; display: block; border-radius: 20px; }

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); animation: float 5s ease-in-out infinite; white-space: nowrap;
}
.float-card.fc-1 { bottom: 14%; left: -7%; animation-delay: 0s; }
.float-card.fc-2 { top: 15%; right: -8%; animation-delay: 1.8s; }
.float-card.fc-3 { top: 55%; right: -10%; animation-delay: 0.9s; }

.fc-icon { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.fc-green { background: rgba(16,185,129,0.15); color: #059669; }
.fc-amber { background: rgba(245,158,11,0.15); color: #d97706; }
.fc-avs   { display: flex; }
.fc-av    {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff; margin-left: -6px;
}
.fc-av:first-child { margin-left: 0; }
.fc-title { font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.fc-sub   { font-size: 11px; color: var(--text-3); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap {
  padding: 24px 0 32px; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--glass-bg); backdrop-filter: blur(8px);
}
.marquee-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }
.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span  { font-size: 15px; font-weight: 600; color: var(--text-3); padding: 0 24px; letter-spacing: .01em; }
.marquee-track .mx   { color: var(--border-2); padding: 0 4px; }

/* ── FEATURES BENTO ───────────────────────────────────────── */
.features-section { padding: 56px 0; background: transparent; }

/* ── FEATURES REDESIGN ────────────────────────────────────── */
.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.feat-row-text .bento-icon { margin-bottom: 20px; }

.feat-row-text h3 {
  font-size: 26px; font-weight: 800;
  color: var(--text); margin-bottom: 14px; line-height: 1.15; letter-spacing: -.02em;
}

.feat-row-text > p {
  font-size: 15px; color: var(--text-2);
  line-height: 1.72; margin-bottom: 24px;
}

.feat-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 28px 72px rgba(91,94,232,0.16), 0 4px 18px rgba(0,0,0,0.14);
}
.feat-img-frame img { width: 100%; display: block; }

.feat-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative; overflow: hidden; will-change: transform;
  transition: border-color .25s, box-shadow .25s, transform .5s cubic-bezier(.22,.68,0,1.2);
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--aurora); background-size: 200% 200%;
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover { border-color: rgba(91,94,232,0.30); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; animation: auroraShift 3s ease infinite; }
.feat-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.feat-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; }

.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  flex-shrink: 0;
  background: rgba(91,94,232,0.10);
}
/* Per-card icon color using inline CSS custom property */
.bento-icon[style*="--ic"] {
  background: color-mix(in srgb, var(--ic) 12%, transparent);
}
.bento-icon svg { width: 22px; height: 22px; color: var(--ic, #5b5ee8); }

.feat-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.feat-tags span {
  font-size: 11.5px; font-weight: 600;
  color: var(--indigo);
  background: rgba(91,94,232,0.09);
  border: 1px solid rgba(91,94,232,0.16);
  padding: 3px 10px; border-radius: 100px; letter-spacing: .02em;
}

/* ── PRODUCT TABS ─────────────────────────────────────────── */
.tabs-section { padding: 100px 0; background: transparent; }

.tabs-bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: 100px; padding: 6px;
  width: fit-content; margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--text-3);
  padding: 9px 20px; border-radius: 100px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.tab-btn:hover { color: var(--text-2); background: rgba(91,94,232,0.07); }
.tab-btn.active { background: var(--grad); color: #fff; box-shadow: 0 2px 12px rgba(91,94,232,0.34); }
.tab-btn svg { flex-shrink: 0; }

.tabs-viewport { position: relative; min-height: 420px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp .4s cubic-bezier(.22,.68,0,1.2) both; }

.tab-layout { display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; gap: 56px; }

.tab-text .section-chip { margin-bottom: 14px; }
.tab-text h3 {
  font-size: clamp(22px,3vw,32px); font-weight: 800; line-height: 1.2;
  color: var(--text); margin-bottom: 16px; letter-spacing: -.01em;
}
.tab-text p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }

/* Browser frame */
.browser-frame {
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 40px 100px rgba(91,94,232,0.18), 0 12px 32px rgba(0,0,0,0.08);
  width: 100%;
}
.browser-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg-3); border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #fc605c; }
.browser-dots span:nth-child(2) { background: #fdbc40; }
.browser-dots span:nth-child(3) { background: #34c749; }
.browser-url {
  font-size: 11.5px; color: var(--text-3);
  background: rgba(91,94,232,0.06); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 12px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  flex: 1; max-width: 240px;
}
.browser-frame img { width: 100%; display: block; }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--text-2); }
.check-list li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; margin-top: 1px;
  background-color: rgba(91,94,232,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235b5ee8'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ── STATS — AURORA DARK ──────────────────────────────────── */
.stats-section { padding: 48px 0; background: transparent; }
.stats-section.stats-dark {
  background: linear-gradient(135deg, #13122e 0%, #1a1040 50%, #0e1832 100%);
  position: relative; overflow: hidden;
}
.stats-section.stats-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(91,94,232,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(236,72,153,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 50% 100%,rgba(6,182,212,0.10) 0%, transparent 60%);
}
.stats-section.stats-dark .container { position: relative; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-card {
  background: rgba(255,255,255,0.04); padding: 28px 20px;
  text-align: center; position: relative;
  backdrop-filter: blur(12px); transition: background .3s;
}
.stat-card:hover { background: rgba(255,255,255,0.07); }
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; border-radius: 2px;
  background: var(--aurora); background-size: 200% 200%;
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover::after { opacity: 1; animation: auroraShift 3s ease infinite; }

.stat-top { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 10px; }
.stat-num {
  font-size: 52px; font-weight: 800; line-height: 1;
  background: var(--aurora); background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: auroraShift 6s ease infinite;
}
.stat-pre, .stat-suffix {
  font-size: 26px; font-weight: 700;
  background: var(--aurora); background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: auroraShift 6s ease infinite;
}
.stat-label { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: .03em; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { padding: 72px 0; background: transparent; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }

.testi-card {
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow .25s, transform .5s cubic-bezier(.22,.68,0,1.2); will-change: transform;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-card.testi-featured {
  border-color: rgba(91,94,232,0.36);
  box-shadow: 0 8px 32px rgba(91,94,232,0.16);
  position: relative; top: -12px;
  animation: auroraGlow 6s ease infinite;
}
.testi-stars  { font-size: 14px; color: var(--amber); letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote  { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av     {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name   { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.testi-role   { font-size: 12px; color: var(--text-3); }

/* ── PRICING COUNTDOWN ────────────────────────────────────── */
@keyframes pcdFlip {
  0%   { opacity: 0; transform: translateY(-14px); }
  100% { opacity: 1; transform: translateY(0); }
}
.pricing-countdown {
  text-align: center;
  padding: 36px 40px 28px;
  background: rgba(91,94,232,0.06);
  border: 1px solid rgba(91,94,232,0.18);
  border-radius: 20px;
  max-width: 540px;
  margin: 0 auto 44px;
}
.pcd-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 20px;
}
.pcd-timer {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 16px;
}
.pcd-block {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 110px;
}
.pcd-num {
  font-size: 76px; font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: var(--aurora); background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: auroraShift 4s ease infinite;
  display: block;
}
.pcd-num.flip {
  animation: auroraShift 4s ease infinite, pcdFlip 0.35s cubic-bezier(.16,1,.3,1);
}
.pcd-unit-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-2);
}
.pcd-sep {
  font-size: 52px; font-weight: 300;
  color: rgba(91,94,232,0.35); line-height: 1;
  margin-bottom: 22px;
}
.pcd-deadline { font-size: 13px; color: var(--text-2); font-weight: 500; }
@media (max-width: 520px) {
  .pcd-block { min-width: 76px; }
  .pcd-num { font-size: 52px; }
  .pcd-sep { font-size: 36px; margin-bottom: 16px; }
  .pricing-countdown { padding: 28px 20px 22px; }
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-section { padding: 56px 0; background: transparent; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }

.pricing-card {
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl); padding: 36px;
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow .25s, transform .5s cubic-bezier(.22,.68,0,1.2), border-color .25s;
  will-change: transform;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: rgba(91,94,232,0.40);
  background: linear-gradient(180deg, rgba(91,94,232,0.06) 0%, rgba(255,255,255,0.88) 100%);
  animation: auroraGlow 8s ease infinite;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--aurora); background-size: 200% 200%; animation: auroraShift 4s ease infinite;
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-tier  { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.price-num     { font-size: 42px; font-weight: 800; color: var(--text); line-height: 1; }
.price-per     { font-size: 13px; color: var(--text-3); }
.pricing-desc  { font-size: 14px; color: var(--text-2); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-list  { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 32px; }
.pricing-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.pricing-list li.dim { opacity: .45; }
.chk { font-size: 13px; color: var(--emerald); font-weight: 700; flex-shrink: 0; width: 16px; text-align: center; }

.ea-pricing-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.ea-pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1.5px solid var(--indigo);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 0 4px rgba(91,94,232,0.08), var(--shadow-xl);
}

.ea-pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 16px;
}

.pricing-btn {
  display: block; text-align: center; padding: 14px;
  border-radius: var(--radius-md); font-size: 14px; font-weight: 600;
  transition: all .2s; margin-top: auto;
}
.pricing-btn.outline { border: 1.5px solid var(--border-2); color: var(--text-2); background: transparent; }
.pricing-btn.outline:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(91,94,232,0.05); }
.pricing-btn.solid { background: var(--grad); color: #fff; box-shadow: 0 4px 16px rgba(91,94,232,0.32); }
.pricing-btn.solid:hover { filter: brightness(1.18) saturate(1.1); }

/* ── BESPOKE ──────────────────────────────────────────────── */
.bespoke-section { padding: 0 0 56px; }
.bespoke-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.bespoke-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--pink), var(--cyan));
}
.bespoke-heading {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 12px 0 16px;
}
.bespoke-body-col p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.bespoke-points-col { display: flex; flex-direction: column; gap: 14px; }
.bespoke-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.bp-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--bpi, #5b5ee8) 12%, transparent);
  color: var(--bpi, #5b5ee8);
}
.bp-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.bp-desc  { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
  margin: 0 24px 48px;
  background: var(--aurora); background-size: 200% 200%;
  animation: auroraShift 6s ease infinite;
  border-radius: var(--radius-xl); padding: 56px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 20% 20%, rgba(255,255,255,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.final-cta h2   { font-size: clamp(32px,5vw,52px); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; }
.final-cta p    { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 36px; position: relative; }
.final-cta-inner{ position: relative; }
.cta-note       { font-size: 13px; color: rgba(255,255,255,0.62); margin-top: 20px; }

/* CTA logo mark */
.cta-logo-mark {
  display: inline-block; width: 56px; height: 56px;
  border-radius: 16px; overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  position: relative;
}
.cta-logo-mark svg { width: 100%; height: 100%; display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: rgba(240,241,255,0.70);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0 0 32px;
}
.footer-aurora-bar {
  height: 3px;
  background: var(--aurora); background-size: 200% 200%;
  animation: auroraShift 5s ease infinite;
  margin-bottom: 36px;
}
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 48px; margin-bottom: 36px; padding-top: 36px; }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 240px; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col  { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color .15s; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-3);
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,9,24,0.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease; cursor: zoom-out;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 86vh; border-radius: var(--radius-md);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7); object-fit: contain;
  transform: scale(0.92); transition: transform .35s cubic-bezier(.22,.68,0,1.2); cursor: default;
}
.lightbox-overlay.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 16px; display: grid; place-items: center;
  cursor: pointer; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.feat-img-frame img, .browser-frame img, .laptop-screen img { cursor: zoom-in; transition: opacity .2s; }
.feat-img-frame img:hover, .browser-frame img:hover, .laptop-screen img:hover { opacity: .88; }

/* ── APP SHOWCASE ─────────────────────────────────────────── */
.app-showcase-section { position: relative; }
.showcase-header-wrap { padding: 56px 0 0; }

.showcase-item {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

/* Colored radial spotlight per section via --sc-rgb custom property */
.showcase-item::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 72% 90% at 70% 50%, rgba(var(--sc-rgb, 91,94,232), 0.11) 0%, transparent 60%),
    radial-gradient(ellipse 38% 48% at 10% 90%,  rgba(var(--sc-rgb, 91,94,232), 0.07) 0%, transparent 60%);
}
.showcase-item.is-reverse::before {
  background:
    radial-gradient(ellipse 72% 90% at 30% 50%, rgba(var(--sc-rgb, 91,94,232), 0.11) 0%, transparent 60%),
    radial-gradient(ellipse 38% 48% at 90% 90%,  rgba(var(--sc-rgb, 91,94,232), 0.07) 0%, transparent 60%);
}

/* Colored separator line at top of each section */
.showcase-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(var(--sc-rgb, 91,94,232), 0.30) 25%,
    rgba(var(--sc-rgb, 91,94,232), 0.30) 75%,
    transparent 100%);
}

.showcase-item > .container { position: relative; z-index: 1; }

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  align-items: center;
  gap: 60px;
}
.showcase-inner.wide { grid-template-columns: 1fr 1.85fr; gap: 68px; }
.showcase-inner.reverse { grid-template-columns: 1.55fr 1fr; }
.showcase-inner.wide.reverse { grid-template-columns: 1.85fr 1fr; }
.showcase-inner.reverse .showcase-content { order: 2; }
.showcase-inner.reverse .showcase-screen  { order: 1; }

.showcase-logo-mark {
  width: 68px; height: 68px; border-radius: 18px; overflow: hidden;
  margin-bottom: 20px; box-shadow: var(--shadow-md); display: block; flex-shrink: 0;
}
.showcase-logo-mark svg { width: 100%; height: 100%; display: block; }

/* ── TITLE ROWS: logo stacked above centered heading ────────── */
.section-title-row {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  justify-content: center; margin-bottom: 16px;
}
.section-title-row .section-logo-mark { margin-bottom: 0; }
.section-title-row .section-title {
  margin-bottom: 0; text-align: center;
  font-size: clamp(30px, 4vw, 52px);
}

.showcase-title-row {
  display: flex; align-items: center; gap: 18px; margin-bottom: 14px;
}
.showcase-title-row .showcase-logo-mark { margin-bottom: 0; }
.showcase-title-row .showcase-title { margin-bottom: 0; font-size: clamp(30px, 4vw, 52px); }

.showcase-tag {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; border: 1px solid;
}

.showcase-title {
  font-size: clamp(28px,3.5vw,42px); font-weight: 800;
  line-height: 1.12; color: var(--text); margin-bottom: 14px; letter-spacing: -.02em;
}
.showcase-desc { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; }

/* Colored glow behind each screenshot, inherits --sc-rgb from parent */
.showcase-screen {
  position: relative;
}
.showcase-screen::before {
  content: '';
  position: absolute; inset: -40px -24px;
  border-radius: 44px;
  background: radial-gradient(ellipse 88% 62% at 50% 52%, rgba(var(--sc-rgb, 91,94,232), 0.26) 0%, transparent 65%);
  filter: blur(22px);
  z-index: -1; pointer-events: none;
}
.showcase-screen .browser-frame {
  box-shadow: 0 48px 120px rgba(var(--sc-rgb, 91,94,232), 0.30), 0 16px 40px rgba(0,0,0,0.12);
}

/* Placeholder for pages without screenshots */
.showcase-placeholder {
  width: 100%; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0f0e24 0%, #16103c 45%, #0b1428 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91,94,232,0.20);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  box-shadow: 0 48px 120px rgba(91,94,232,0.20), 0 16px 40px rgba(0,0,0,0.10);
  position: relative; overflow: hidden;
}
.showcase-placeholder::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 25% 40%, rgba(91,94,232,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 78% 65%, rgba(236,72,153,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 55% 85%, rgba(6,182,212,0.10) 0%, transparent 60%);
}
.placeholder-icon {
  width: 64px; height: 64px; border-radius: 18px; overflow: hidden;
  position: relative; box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.placeholder-icon svg { width: 100%; height: 100%; display: block; }
.placeholder-label {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); position: relative;
}

/* ── PRODUCT OVERVIEW (homepage) ─────────────────────────── */
.product-overview-section { padding: 56px 0; }

.preview-hero {
  max-width: 980px; margin: 0 auto 28px;
  position: relative;
}
.preview-hero .browser-frame {
  box-shadow: 0 48px 120px rgba(91,94,232,0.22), 0 16px 40px rgba(0,0,0,0.10);
}
.preview-hero::before {
  content: ''; position: absolute; inset: -44px -20px;
  border-radius: 48px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(91,94,232,0.18) 0%, transparent 65%);
  filter: blur(24px); z-index: -1; pointer-events: none;
}

.module-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; max-width: 720px;
  margin: 0 auto 28px;
}
.module-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 100px; border: 1px solid;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none; white-space: nowrap;
}
.module-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

.preview-tour-cta { text-align: center; }
.preview-tour-note { font-size: 13px; color: var(--text-3); margin-top: 14px; }

/* ── TOUR PAGE ────────────────────────────────────────────── */
.tour-hero {
  padding: calc(var(--nav-h) + 16px) 0 40px;
  text-align: center; position: relative; overflow: hidden;
}
.tour-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(91,94,232,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 105% 60%, rgba(124,58,237,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at -5% 80%,  rgba(236,72,153,0.10) 0%, transparent 65%);
}
.tour-hero .container { position: relative; }
.tour-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--indigo);
  margin-bottom: 28px; transition: opacity .2s;
  background: rgba(91,94,232,0.08); border: 1px solid rgba(91,94,232,0.18);
  padding: 6px 14px; border-radius: 100px;
}
.tour-back:hover { opacity: .78; }
.tour-nav-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; max-width: 680px;
  margin: 36px auto 0;
}
.tour-nav-pill {
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 100px; border: 1px solid;
  text-decoration: none; transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.tour-nav-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* ── PROBLEM SECTION ──────────────────────────────────────── */
.problem-section { padding: 56px 0; background: transparent; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.problem-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .5s cubic-bezier(.22,.68,0,1.2);
  will-change: transform;
}
.problem-card:hover { border-color: rgba(91,94,232,0.26); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--aurora); background-size: 200% 200%;
  opacity: 0; transition: opacity .3s;
}
.problem-card:hover::before { opacity: 1; animation: auroraShift 3s ease infinite; }

.problem-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: color-mix(in srgb, var(--pi, #5b5ee8) 12%, transparent);
  color: var(--pi, #5b5ee8);
  flex-shrink: 0;
}

.problem-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.problem-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── EARLY ACCESS SECTION ─────────────────────────────────── */
.ea-section { padding: 56px 0; background: transparent; }

.ea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ea-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .5s cubic-bezier(.22,.68,0,1.2), border-color .25s;
  will-change: transform;
}
.ea-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(91,94,232,0.26); }

.ea-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: color-mix(in srgb, var(--ei, #5b5ee8) 10%, transparent);
  color: var(--ei, #5b5ee8);
  flex-shrink: 0;
}
.ea-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ea-card p  { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }

.ea-cta { text-align: center; }
.ea-cta-note { font-size: 13px; color: var(--text-3); margin-top: 14px; }

/* ── TOUR TEASER GRID ─────────────────────────────────────── */
.tour-teaser-section { padding: 40px 0 56px; }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.teaser-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color .25s, box-shadow .25s, transform .5s cubic-bezier(.22,.68,0,1.2);
  will-change: transform;
  position: relative; overflow: hidden;
}
.teaser-card:hover { border-color: rgba(91,94,232,0.28); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.teaser-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--aurora); background-size: 200% 200%;
  opacity: 0; transition: opacity .3s;
}
.teaser-card:hover::before { opacity: 1; animation: auroraShift 3s ease infinite; }

.teaser-logo-mark {
  width: 56px; height: 56px; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); flex-shrink: 0; margin-bottom: 18px;
}
.teaser-logo-mark svg { width: 100%; height: 100%; display: block; }

.teaser-content { flex: 1; margin-bottom: 20px; }
.teaser-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; border: 1px solid;
}
.teaser-title {
  font-size: 18px; font-weight: 800; color: var(--text);
  line-height: 1.2; margin-bottom: 10px; letter-spacing: -.01em;
}
.teaser-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

.teaser-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  margin-top: auto; padding-top: 4px;
  transition: opacity .2s, gap .2s;
  text-decoration: none;
}
.teaser-link:hover { opacity: .78; gap: 10px; }

/* ── DEMO GATE ────────────────────────────────────────────── */
.demo-gate-section {
  margin: 0 0 0;
  padding: 60px 0 68px;
  background: linear-gradient(135deg, #13122e 0%, #1a1040 50%, #0e1832 100%);
  position: relative; overflow: hidden; text-align: center;
}
.demo-gate-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(91,94,232,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(236,72,153,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% 100%, rgba(6,182,212,0.10) 0%, transparent 60%);
}
.demo-gate-inner { position: relative; max-width: 640px; margin-inline: auto; }
.demo-gate-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px 6px 10px; border-radius: 100px; margin-bottom: 28px;
}
.demo-gate-section h2 {
  font-size: clamp(28px,4.5vw,46px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em;
}
.demo-gate-section p {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 36px;
}
.demo-gate-note { font-size: 13px; color: rgba(255,255,255,0.50); margin-top: 20px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-sub { max-width: 100%; margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof, .hero-badges { justify-content: center; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .float-card.fc-1 { left: -2%; bottom: 6%; }
  .float-card.fc-2 { right: -2%; top: 5%; }
  .float-card.fc-3 { right: -2%; top: 50%; }

  .feat-row { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid-4 { grid-template-columns: 1fr; }
  .bespoke-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 36px; }

  .tab-layout { grid-template-columns: 1fr; gap: 36px; }

  .showcase-inner,
  .showcase-inner.reverse,
  .showcase-inner.wide,
  .showcase-inner.wide.reverse { grid-template-columns: 1fr; gap: 48px; }
  .showcase-inner.reverse .showcase-content,
  .showcase-inner.wide.reverse .showcase-content { order: 0; }
  .showcase-inner.reverse .showcase-screen,
  .showcase-inner.wide.reverse .showcase-screen  { order: 0; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card.testi-featured { top: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .ea-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; margin-bottom: 32px; }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .features-showcase { gap: 56px; }
  .feat-row-text h3 { font-size: 22px; }
  .feat-card { padding: 28px; }
  .tabs-bar { flex-wrap: wrap; border-radius: var(--radius-lg); width: 100%; justify-content: center; }
  .float-card { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .problem-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ── DEMO REQUEST PAGE ─────────────────────────────────────── */
.demo-page-hero {
  padding: 88px 0 28px;
  text-align: center;
}
.demo-page-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800; color: var(--text);
  line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 16px;
}
.demo-page-sub {
  font-size: 17px; color: var(--text-2);
  line-height: 1.65; max-width: 540px; margin-inline: auto;
}

.demo-form-section { padding: 8px 0 72px; }

.demo-form-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* Form card */
.demo-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* Form fields */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.form-label { font-size: 13.5px; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.form-req { color: var(--indigo); margin-left: 1px; }
.form-opt { color: var(--text-3); font-weight: 400; }

.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px; font-family: inherit;
  color: var(--text); width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(91,94,232,0.12);
}
.form-input.error, .form-select.error { border-color: #f43f5e; box-shadow: 0 0 0 3px rgba(244,63,94,0.10); }
.form-select {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%235b5ee8'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 12px; color: #f43f5e; display: none; font-weight: 500; }
.form-error.show { display: block; }
.form-submit-error { font-size: 13px; color: #f43f5e; text-align: center; margin-bottom: 10px; display: none; font-weight: 500; }
.form-submit-error.show { display: block; }
.form-submit-btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-privacy-note {
  font-size: 11.5px; color: var(--text-3); text-align: center;
  margin-top: 14px; line-height: 1.5;
}

/* Success state */
.demo-success {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center; padding: 56px 24px;
}
.success-check {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(16,185,129,0.12); color: #10b981;
  display: grid; place-items: center; margin-bottom: 24px;
  box-shadow: 0 0 0 8px rgba(16,185,129,0.07);
}
.demo-success h3 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.demo-success p { font-size: 15px; color: var(--text-2); line-height: 1.65; max-width: 380px; }
.success-contact { margin-top: 20px !important; font-size: 13.5px !important; }
.success-contact a { color: var(--indigo); font-weight: 600; text-decoration: none; }

/* Info sidebar */
.demo-info-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }

.demo-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.demo-info-heading {
  font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 22px;
}
.di-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 22px; }
.di-item { display: flex; gap: 14px; align-items: flex-start; }
.di-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: color-mix(in srgb, var(--dii, #5b5ee8) 12%, transparent);
  color: var(--dii, #5b5ee8);
  display: grid; place-items: center;
}
.di-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.di-sub { font-size: 12px; color: var(--text-2); line-height: 1.55; }
.di-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.di-direct { display: flex; flex-direction: column; gap: 5px; }
.di-direct-label { font-size: 12px; color: var(--text-3); }
.di-direct-email {
  font-size: 13.5px; font-weight: 600; color: var(--indigo);
  text-decoration: none; transition: opacity .2s;
}
.di-direct-email:hover { opacity: .75; }

/* Modules reference card */
.demo-modules-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.dmc-header {
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
}
.dmc-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.dmc-pills span {
  font-size: 11.5px; font-weight: 600; color: var(--text-2);
  background: rgba(91,94,232,0.07);
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px;
}
.dmc-link {
  font-size: 12.5px; font-weight: 600; color: var(--indigo);
  text-decoration: none; transition: opacity .2s;
}
.dmc-link:hover { opacity: .75; }

@media (max-width: 900px) {
  .demo-form-layout { grid-template-columns: 1fr; }
  .demo-info-sidebar { position: static; }
}
@media (max-width: 580px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .demo-form-card { padding: 24px 20px; }
}

/* ── BUILT WITH ──────────────────────────────────────────────── */
.builtwith-section { padding: 80px 0; }
.builtwith-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.builtwith-heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin: 16px 0 24px;
}
.builtwith-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 14px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 96px 0; background: var(--bg); }
.faq-grid {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item summary.faq-q {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}
.faq-item summary.faq-q::-webkit-details-marker { display: none; }
.faq-item summary.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--indigo);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] > summary.faq-q::after { content: '−'; }
.faq-a {
  padding: 0 0 20px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
}

/* ── END DEMO PAGE ─────────────────────────────────────────── */

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-outline { text-align: center; justify-content: center; }
  .final-cta { margin-inline: 16px; padding: 48px 24px; border-radius: var(--radius-lg); }
  .bespoke-card { padding: 28px 20px; gap: 32px; }
  .tab-btn { padding: 8px 14px; font-size: 12.5px; }
}
