/* ============================================================
   Qintr — "Signal" design system
   Hostinger-inspired: DM Sans, purple #673DE6, purple gradient,
   light + dark sections, glassmorphism.
   DM Sans loaded via Google Fonts in base.html.
   ============================================================ */

:root {
  /* Hostinger-inspired purple palette + purple-only gradient */
  --purple-50: #F5F3FE; --purple-100: #ECE8FD; --purple-200: #D7CDFA;
  --purple-300: #B7A6F5; --purple-400: #8B78FF; --purple-500: #673DE6;
  --purple-600: #5A32CC; --purple-700: #4826A3; --purple-800: #301C6E; --purple-900: #251951;
  --lime: #2FD98A; --amber: #FFB020;
  --accent-300: #FFE0A3; --accent-400: #FFC94D; --accent-500: #F5A623;
  --success: #12B76A; --warning: #F79009; --danger: #E5484D;
  /* colourful accent set (purple stays primary; no pink) */
  --c-violet: #7C4DFF; --c-violet-bg: rgba(124,77,255,.12);
  --c-blue:   #3E6DF5; --c-blue-bg:   rgba(62,109,245,.12);
  --c-teal:   #12B3C4; --c-teal-bg:   rgba(18,179,196,.13);
  --c-green:  #17B26A; --c-green-bg:  rgba(23,178,106,.13);
  --c-amber:  #F5960B; --c-amber-bg:  rgba(245,150,11,.15);
  --c-coral:  #FF6B57; --c-coral-bg:  rgba(255,107,87,.14);

  --bg: #FFFFFF; --bg-soft: #F6F4FE; --surface: #FFFFFF; --surface-2: #FAF8FF;
  --border: #EAE6F6; --border-2: #DBD3F0;
  --text: #222225; --text-soft: #4B4763; --text-mute: #6F6B87;

  --ink: #1A1046; --ink-2: #140B36; --navy: #251951; --navy-deep: #0E0A24;
  --royal: #673DE6; --royal-2: #8B78FF;
  --violet-mid: #8B78FF; --violet-muted: #5A32CC;
  --lavender: #F1ECFD; --lavender-border: #DFD3FA;
  --grad: linear-gradient(96deg, #A78BFA, #673DE6 58%, #4826A3);
  --grad-soft: linear-gradient(135deg, #8B78FF, #673DE6);
  --grad-btn: linear-gradient(92deg, #8B5CF6, #673DE6);
  --grad-hero: linear-gradient(180deg, #2A1560 0%, #37206F 30%, #472699 50%, #6248C4 66%, #8E74E0 78%, #C6B7F0 90%, #FFFFFF 100%);
  --glass-bg: rgba(255,255,255,.62); --glass-brd: rgba(255,255,255,.75);

  --shadow-xs: 0 1px 2px rgba(16,12,36,.05);
  --shadow-sm: 0 2px 6px rgba(16,12,36,.06), 0 1px 2px rgba(16,12,36,.04);
  --shadow-md: 0 12px 30px rgba(40,26,90,.10), 0 3px 8px rgba(16,12,36,.05);
  --shadow-lg: 0 30px 70px rgba(40,26,90,.16), 0 8px 20px rgba(16,12,36,.06);
  --shadow-glow: 0 12px 34px rgba(103,61,230,.34);

  --r-sm: 10px; --r-md: 14px; --r-lg: 18px; --r-xl: 26px; --r-2xl: 34px; --r-full: 999px;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "DM Sans", system-ui, sans-serif;
  --serif: var(--display); /* legacy alias: old rules that ask for --serif now get the grotesque */
  --max: 1200px;
  --nav-h: 64px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

[data-theme="dark"] {
  --purple-500: #8B78FF; --purple-600: #7C63FF; --purple-400: #A78BFA; --purple-300: #C4B5FD;
  --bg: #140A33; --bg-soft: #1A0F44; --surface: #211653; --surface-2: #291B62;
  --border: #382473; --border-2: #4A3390;
  --text: #F4EFFF; --text-soft: #C6BDEC; --text-mute: #968BC6;
  --royal: #8B78FF; --royal-2: #A78BFA;
  --violet-muted: #C4B5FD; --violet-mid: #A78BFA;
  --lavender: rgba(139,120,255,.1); --lavender-border: #4A3390;
  --grad-hero: linear-gradient(180deg, #22114F 0%, #2A165E 42%, #241457 70%, #1B1046 88%, var(--bg) 100%);
  --glass-bg: rgba(255,255,255,.07); --glass-brd: rgba(255,255,255,.16);
  --shadow-xs: 0 1px 2px rgba(0,0,0,.4);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.4);
  --shadow-md: 0 12px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.6);
  --shadow-glow: 0 12px 34px rgba(139,120,255,.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--text);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  line-height: 1.6; overflow-x: hidden; letter-spacing: -.006em;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; letter-spacing: -.014em; line-height: 1.14; }
::selection { background: var(--purple-500); color: #fff; }
:focus-visible { outline: 2px solid var(--purple-500); outline-offset: 3px; border-radius: 4px; }
[x-cloak] { display: none !important; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--purple-500); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- motion utilities ---------- */
.reveal, [data-scroll] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * .07s);
}
.reveal.in, [data-scroll].in { opacity: 1; transform: none; }
.reveal-1 { --i: 1; } .reveal-2 { --i: 2; } .reveal-3 { --i: 3; } .reveal-4 { --i: 4; } .reveal-5 { --i: 5; }
/* reveal variants — kept gentle and consistent, Hostinger-style calm fade-up */
.reveal.rv-left { transform: translate(-16px, 8px); }
.reveal.rv-left.in { transform: none; }
.reveal.rv-right { transform: translate(16px, 8px); }
.reveal.rv-right.in { transform: none; }
.reveal.rv-scale { transform: translateY(18px) scale(.985); }
.reveal.rv-scale.in { transform: none; }
.reveal.rv-still { transform: none; filter: none; }
.reveal.rv-still.in { transform: none; }
.story-card:nth-child(1) { --i: 1; } .story-card:nth-child(2) { --i: 2; } .story-card:nth-child(3) { --i: 3; }

@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes word-rise { from { opacity: 0; transform: translateY(1.1em) rotate(2deg); } to { opacity: 1; transform: none; } }

.grain {
  position: absolute; inset: 0; opacity: .26; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- atoms ---------- */
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 14.5px; border: 1px solid transparent;
  cursor: pointer; border-radius: 12px; padding: 12px 22px; position: relative;
  transition: transform .2s var(--ease-spring), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px; justify-content: center; white-space: nowrap;
  letter-spacing: -.01em;
}
.btn-primary { background-color: var(--purple-500); background-image: var(--grad-btn); color: #fff; box-shadow: 0 10px 30px rgba(103,61,230,.32); border: 0; }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06) saturate(1.06); box-shadow: 0 18px 42px rgba(103,61,230,.44); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-2); box-shadow: var(--shadow-xs); }
.btn-secondary:hover { border-color: var(--purple-400); color: var(--purple-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--text-soft); }
.btn-ghost:hover { color: var(--text); background: var(--bg-soft); }
.btn-ghost-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.24); backdrop-filter: blur(8px); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* floating theme toggle (bottom-left) */
.theme-fab {
  position: fixed; left: 20px; bottom: 20px; z-index: 85;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: var(--surface); color: var(--text); border: 1px solid var(--border-2);
  box-shadow: var(--shadow-md); font-size: 19px; line-height: 1;
  transition: transform .22s var(--ease-spring), box-shadow .22s, background .22s, border-color .22s;
}
.theme-fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--shadow-lg); border-color: var(--purple-400); }
.theme-fab:active { transform: translateY(-1px) scale(1); }
@media (max-width: 600px) { .theme-fab { left: 14px; bottom: 14px; width: 44px; height: 44px; font-size: 18px; } }

.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(140deg, var(--purple-400), var(--purple-600) 60%, var(--purple-800));
  display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-glow);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--purple-600);
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--purple-400); display: inline-block; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-600); }
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-400); box-shadow: 0 0 0 4px rgba(255,201,77,.22); animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 3px rgba(255,201,77,.24); } 50% { box-shadow: 0 0 0 7px rgba(255,201,77,0); } }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s5); box-shadow: var(--shadow-sm); }
.glass { background: var(--glass-bg); -webkit-backdrop-filter: blur(18px) saturate(1.5); backdrop-filter: blur(18px) saturate(1.5); border: 1px solid var(--glass-brd); }
.section-dark .glass, .section-dark .stream, .section-dark .tcard { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--s5); }
.muted { font-size: 13px; color: var(--text-mute); }
.example-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--violet-muted); text-align: center; margin: 0 auto var(--s4); padding: 4px 12px; border-radius: 999px; background: var(--lavender); border: 1px solid var(--lavender-border); }
.example-tag::before { content: "◆"; font-size: 8px; color: var(--purple-500); }
.section-head + .example-tag, p.example-tag { display: block; width: max-content; }
.section-dark .example-tag { color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
[data-theme="dark"] .example-tag { background: rgba(139,120,255,.12); }
.grad-word { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 70; background: transparent; border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, backdrop-filter .3s; }
.nav.scrolled { border-bottom-color: var(--border); background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: saturate(1.4) blur(18px); }
/* Deep-purple home hero: nav rides light over it until scrolled */
body[data-page="home"] .nav:not(.scrolled) { color: #fff; }
body[data-page="home"] .nav:not(.scrolled) .nav-brand,
body[data-page="home"] .nav:not(.scrolled) .nav-links { color: #fff; }
body[data-page="home"] .nav:not(.scrolled) .nav-links > button:hover,
body[data-page="home"] .nav:not(.scrolled) .nav-links > a:hover { color: #fff; background: rgba(255,255,255,.14); }
body[data-page="home"] .nav:not(.scrolled) .btn-ghost { color: #fff; }
body[data-page="home"] .nav:not(.scrolled) .btn-ghost:hover { background: rgba(255,255,255,.14); }
body[data-page="home"] .nav:not(.scrolled) .btn-primary { background: #fff; background-image: none; color: var(--purple-600); box-shadow: 0 8px 22px rgba(20,8,60,.28); }
body[data-page="home"] .nav:not(.scrolled) .nav-burger { color: #fff; }
.nav-in { max-width: var(--max); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
/* Qintr wordmark logo */
.wordmark { display: inline-flex; align-items: center; line-height: 0; }
.wordmark svg { height: 30px; width: auto; display: block; overflow: visible; }
.wm-dot { fill: var(--wm-dot, #4f03fd); }
.foot-brand-col .wordmark svg { height: 36px; }
/* on a deep-purple hero, the mark goes white with a light dot */
body[data-page="home"] .nav:not(.scrolled) .wm-dot { fill: #C4B5FD; }
.nav-links { display: flex; gap: 2px; align-items: center; font-size: 14px; font-weight: 500; color: var(--text-soft); position: relative; }
.nav-links > button, .nav-links > a { padding: 8px 13px; border-radius: 10px; background: none; border: 0; color: inherit; cursor: pointer; font: inherit; font-weight: 500; transition: color .18s, background .18s; }
.nav-links > button:hover, .nav-links > a:hover, .nav-links > a[aria-current="page"] { color: var(--purple-600); background: var(--purple-50); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.theme-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full); padding: 7px 12px; font-weight: 500; font-size: 13px; transition: border-color .2s; }
.theme-toggle:hover { border-color: var(--border-2); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; color: var(--text); padding: 6px; }
.nav-burger svg { width: 24px; height: 24px; }
.nav-mobile { display: none; flex-direction: column; padding: 8px 24px 24px; border-top: 1px solid var(--border); background: var(--surface); max-height: calc(100vh - 64px); overflow-y: auto; }
.nav-mobile.open { display: flex; animation: fade-up .3s var(--ease); }
.nav-mobile a, .nav-mobile summary { font-size: 15px; font-weight: 500; color: var(--text-soft); padding: 9px 0; display: block; }
.nav-mobile details { border-bottom: 1px solid var(--border); padding: 6px 0; }
.nav-mobile summary { font-weight: 600; color: var(--text); cursor: pointer; }
.nav-mobile details a { font-weight: 500; padding-left: 8px; font-size: 14px; }

.mega {
  display: none; position: absolute; top: calc(100% + 12px); left: 0; width: min(880px, calc(100vw - 48px));
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 24px; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; z-index: 80;
}
.mega.open { display: grid; animation: fade-up .28s var(--ease); }
.mega h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; font-weight: 700; }
.mega a { display: block; padding: 8px 10px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text); transition: background .16s, color .16s; }
.mega a:hover { background: var(--lavender); color: var(--purple-700); }
.mega a span { display: block; font-size: 12px; font-weight: 500; color: var(--text-mute); margin-top: 1px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta a.btn-ghost { display: none; }
  .mega { display: none !important; }
}

/* ============================================================
   HERO — light, animated aurora + floating product window
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 68px 24px 90px; background: var(--bg); }
.hero-aurora { position: absolute; inset: -30% -10% auto -10%; height: 120%; pointer-events: none; z-index: 0; filter: blur(64px); opacity: .9; }
.hero-aurora span { position: absolute; border-radius: 50%; mix-blend-mode: multiply; animation: aurora 22s ease-in-out infinite alternate; }
[data-theme="dark"] .hero-aurora span { mix-blend-mode: screen; opacity: .5; }
.hero-aurora .a1 { width: 640px; height: 640px; background: radial-gradient(circle, #8B78FF, transparent 66%); top: -14%; left: -8%; opacity: .8; }
.hero-aurora .a2 { width: 560px; height: 560px; background: radial-gradient(circle, #A78BFA, transparent 66%); top: -20%; right: -6%; opacity: .55; animation-delay: -7s; }
.hero-aurora .a3 { width: 480px; height: 480px; background: radial-gradient(circle, #B7A6F5, transparent 70%); bottom: -34%; left: 32%; opacity: .5; animation-delay: -13s; }
/* Home hero has a deep-purple gradient bg, so its orbs add light instead of multiplying */
.hero-center .hero-aurora { filter: blur(76px); opacity: .7; }
.hero-center .hero-aurora span { mix-blend-mode: screen; }
.hero-center .hero-aurora .a1 { background: radial-gradient(circle, #7C63FF, transparent 66%); opacity: .5; }
.hero-center .hero-aurora .a2 { background: radial-gradient(circle, #9E86EA, transparent 66%); opacity: .42; }
.hero-center .hero-aurora .a3 { background: radial-gradient(circle, #6B4BD6, transparent 70%); opacity: .4; }
@keyframes aurora { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px, 34px, 0) scale(1.14); } }

.hero-grid { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.02fr 1.06fr; gap: 54px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-2); box-shadow: var(--shadow-xs);
  font-size: 12.5px; font-weight: 600; color: var(--text-soft); margin-bottom: 22px;
  animation: fade-up .7s var(--ease) both;
}
.hero-badge b { background: var(--purple-500); color: #fff; border-radius: 999px; padding: 3px 9px; font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.hero h1 { font-size: clamp(38px, 5vw, 60px); line-height: 1.08; letter-spacing: -.018em; text-wrap: balance; margin: 0; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; animation: word-rise .9s var(--ease) both; }
.hero h1 .line:nth-child(1) > span { animation-delay: .05s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .14s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .23s; }
.hero-sub { max-width: 46ch; font-size: 18px; color: var(--text-soft); margin: 22px 0 28px; line-height: 1.55; animation: fade-up .9s var(--ease) .34s both; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: fade-up .9s var(--ease) .42s both; }
.hero-trust { font-size: 12.5px; color: var(--text-mute); margin-top: 18px; animation: fade-up .9s var(--ease) .5s both; }
.hero-trust b { color: var(--text-soft); font-weight: 600; }
.icp-switch { display: flex; flex-wrap: nowrap; gap: 8px; margin: 22px 0 0; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; animation: fade-up .9s var(--ease) .5s both; }
.icp-switch::-webkit-scrollbar { display: none; }
.icp-chip { flex: 0 0 auto; border: 1px solid var(--border-2); background: var(--surface); color: var(--text-soft); border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: all .2s var(--ease-spring); white-space: nowrap; }
.icp-chip:hover { border-color: var(--purple-400); color: var(--purple-600); }
.icp-chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
[data-theme="dark"] .icp-chip.on { background: #fff; color: var(--ink); border-color: #fff; }

/* floating product window */
.device {
  --tilt-x: 0deg; --tilt-y: 0deg; position: relative;
  transform: perspective(1700px) rotateY(calc(-7deg + var(--tilt-y))) rotateX(calc(4deg + var(--tilt-x)));
  transform-style: preserve-3d; transition: transform .3s var(--ease);
  border-radius: 20px; background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.4) inset;
  overflow: hidden; animation: float-window 7s ease-in-out infinite;
}
@keyframes float-window { 0%, 100% { transform: perspective(1700px) rotateY(calc(-7deg + var(--tilt-y))) rotateX(calc(4deg + var(--tilt-x))) translateY(0); } 50% { transform: perspective(1700px) rotateY(calc(-7deg + var(--tilt-y))) rotateX(calc(4deg + var(--tilt-x))) translateY(-12px); } }
.device-chrome { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.device-dots { display: flex; gap: 6px; }
.device-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; background: #ff5f57; }
.device-dots i:nth-child(2) { background: #febc2e; } .device-dots i:nth-child(3) { background: #28c840; }
.device-url { flex: 1; font-size: 12px; font-weight: 500; color: var(--text-mute); background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; text-align: center; }
.device-tabs { display: flex; gap: 4px; padding: 10px 12px 4px; background: var(--surface-2); }
.device-tabs button { border: 0; background: transparent; color: var(--text-mute); border-radius: 9px; padding: 7px 12px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .18s; }
.device-tabs button[aria-selected="true"] { background: var(--purple-500); color: #fff; }
.device-screen { background: var(--surface-2); color: var(--text); min-height: 400px; padding: 16px; overflow: hidden; position: relative; }
.preview-enter { animation: preview-in .5s var(--ease); }
@keyframes preview-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

.proof-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 12px; }
.proof-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-align: left; }
.proof-photo { width: 100%; height: 118px; object-fit: cover; display: block; }
.proof-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.proof-body .quote { font-size: 13px; line-height: 1.45; font-weight: 500; }
.proof-card.tall .proof-photo { height: 172px; }
.proof-card.video-card { position: relative; }
.proof-card.video-card .proof-photo { height: 150px; }
.cine-play { position: absolute; top: 52px; left: 50%; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.94); color: var(--purple-600); font-size: 15px; box-shadow: 0 8px 24px rgba(0,0,0,.28); display: grid; place-items: center; }
.vtime { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.55); color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 999px; }
.carousel-stage { display: flex; gap: 12px; height: 100%; align-items: stretch; padding: 8px 4px; }
.carousel-stage .proof-card { min-width: 210px; flex: 1; animation: card-float 5s ease-in-out infinite; }
.carousel-stage .proof-card:nth-child(2) { animation-delay: -1.6s; }
@keyframes card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-stage { min-height: 372px; border-radius: 14px; overflow: hidden; position: relative; background: linear-gradient(180deg, rgba(247,245,255,.15), rgba(20,15,40,.5)), url("../img/people/lena.jpg") center 20% / cover no-repeat; }
.faux-nav { position: relative; z-index: 1; display: flex; justify-content: space-between; padding: 16px 18px; color: #fff; font-size: 12px; font-weight: 700; }
.glass-badge { position: absolute; z-index: 2; left: 50%; bottom: 28px; transform: translateX(-50%); width: min(340px, 86%); background: rgba(255,255,255,.85); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.7); border-radius: 20px; padding: 16px 18px; box-shadow: 0 20px 50px rgba(0,0,0,.3); display: flex; align-items: center; gap: 14px; }
[data-theme="dark"] .glass-badge { background: rgba(22,19,31,.82); border-color: rgba(255,255,255,.12); }
.glass-badge .score { font-family: var(--display); font-size: 34px; line-height: 1; font-weight: 700; }
.cine-stage { position: relative; border-radius: 14px; overflow: hidden; min-height: 372px; }
.cine-stage img { width: 100%; height: 372px; object-fit: cover; display: block; }
.cine-stage .cine-play { top: 46%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; font-size: 20px; }
.cine-cap { position: absolute; left: 14px; right: 14px; bottom: 14px; background: rgba(8,6,15,.66); backdrop-filter: blur(14px); color: #fff; border-radius: 14px; padding: 12px 14px; }
.cine-cap p { font-size: 14px; margin: 0 0 6px; }
.cine-cap .person .rl { color: rgba(255,255,255,.6); }
.cine-cap .person .nm { color: #fff; }

.float-tag { position: absolute; z-index: 3; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg); font-size: 12.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; animation: float-tag 6s ease-in-out infinite; }
.float-tag .ft-ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 13px; }
.float-tag.ft-1 { top: 10%; left: -28px; } .float-tag.ft-2 { bottom: 14%; left: -18px; animation-delay: -3s; }
@keyframes float-tag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .device, .hero-aurora span, .carousel-stage .proof-card, .float-tag, .preview-enter { animation: none !important; } }

/* ==================== HOME (fresh build) ==================== */
.hero-center { position: relative; overflow: hidden; margin-top: calc(-1 * var(--nav-h)); padding: calc(var(--nav-h) + 46px) 24px 0; background: var(--grad-hero); text-align: center; }
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero-center .kicker { justify-content: center; margin-bottom: 20px; color: rgba(255,255,255,.82); animation: fade-up .7s var(--ease) both; }
.hero-center .kicker .dot { box-shadow: 0 0 0 4px rgba(255,201,77,.28); }
.hero-center h1 { font-size: clamp(38px, 5.1vw, 62px); font-weight: 400; line-height: 1.08; letter-spacing: -.018em; margin: 0; color: #fff; text-shadow: 0 2px 30px rgba(20,8,60,.3); animation: fade-up .8s var(--ease) .05s both; }
.hero-center h1 .grad-word { background: linear-gradient(96deg, #E9DEFF, #C4B5FD 55%, #A78BFA); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 60ch; margin: 22px auto 30px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.84); animation: fade-up .9s var(--ease) .15s both; }
.hero-center .hero-ctas { justify-content: center; animation: fade-up .9s var(--ease) .25s both; }
.hero-center .btn-primary { background: #fff; background-image: none; color: var(--purple-600); box-shadow: 0 12px 34px rgba(20,8,60,.34); }
.hero-center .btn-primary:hover { color: var(--purple-700); box-shadow: 0 18px 44px rgba(20,8,60,.44); filter: none; }
.hero-center .btn-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: none; }
.hero-center .btn-secondary:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.4); }
.hero-center .hero-trust { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 18px; animation: fade-up .9s var(--ease) .35s both; }
.hero-center .hero-trust b { color: #fff; font-weight: 600; }
.hero-stage { position: relative; z-index: 1; max-width: 1000px; margin: 54px auto 0; animation: fade-up 1s var(--ease) .3s both; }
.stage-note { text-align: center; font-size: 12.5px; color: var(--text-mute); margin: 16px auto 0; letter-spacing: .01em; }

/* ---- Hero: a live "Wall of Love" building itself ---- */
.hero-app { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--surface-2); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.app-wall { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 14px; height: 424px; overflow: hidden; }
/* cheap gradient fades (instead of a CSS mask, which repaints the moving layer every frame and janks) */
.app-wall::before, .app-wall::after { content: ""; position: absolute; left: 0; right: 0; height: 58px; z-index: 2; pointer-events: none; }
.app-wall::before { top: 0; background: linear-gradient(180deg, var(--surface-2), transparent); }
.app-wall::after { bottom: 0; background: linear-gradient(0deg, var(--surface-2), transparent); }
.aw-col { display: flex; flex-direction: column; gap: 12px; will-change: transform; backface-visibility: hidden; transform: translateZ(0); animation: wall-up 34s linear infinite; }
.aw-col:nth-child(2) { animation-duration: 44s; }
.aw-col:nth-child(3) { animation-duration: 29s; }
.hero-app:hover .aw-col { animation-play-state: paused; }
@keyframes wall-up { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, -50%, 0); } }

.wl-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow-xs); }
.wl-stars { color: #FFB020; font-size: 12px; letter-spacing: 1.5px; }
.wl-card p { font-size: 12.5px; line-height: 1.45; color: var(--text); margin: 8px 0 11px; }
.wl-by { display: flex; align-items: center; gap: 8px; }
.wl-by .avatar { width: 26px; height: 26px; flex: 0 0 auto; }
.wl-nm { font-size: 11.5px; font-weight: 600; display: flex; flex-direction: column; line-height: 1.2; color: var(--text); }
.wl-nm small { font-weight: 500; color: var(--text-mute); font-size: 10.5px; }
.wl-vid { padding: 0; overflow: hidden; }
.wl-vid .video-thumb { position: relative; height: 132px; min-height: 0; border-radius: 0; }
.wl-vid .video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wl-rate { display: flex; align-items: center; gap: 12px; }
.wl-score { font-family: var(--display); font-weight: 700; font-size: 30px; line-height: 1; display: flex; gap: 2px; color: var(--text); }
.wl-score span { color: #FFB020; font-size: 15px; }
.wl-rate small { color: var(--text-mute); font-size: 11px; display: block; margin-top: 2px; }

.app-badge { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 10px 15px; box-shadow: var(--shadow-lg); animation: badge-pop .7s var(--ease-spring) .7s both; }
.app-badge-score { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1; color: var(--text); }
.app-badge-txt { display: flex; flex-direction: column; gap: 3px; }
.app-badge-txt small { font-size: 11px; color: var(--text-mute); font-weight: 500; }
@keyframes badge-pop { from { opacity: 0; transform: translateY(12px) scale(.94); } to { opacity: 1; transform: none; } }

.app-toast { position: absolute; right: 16px; top: 62px; z-index: 3; display: flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; border-radius: 12px; padding: 10px 14px; box-shadow: 0 16px 40px rgba(10,4,30,.4); opacity: 0; animation: toast-cycle 8s ease-in-out 1.4s infinite; }
.app-toast-ic { width: 22px; height: 22px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; flex: 0 0 auto; }
.app-toast-txt { display: flex; flex-direction: column; line-height: 1.25; }
.app-toast-txt b { font-size: 12.5px; }
.app-toast-txt small { font-size: 11px; opacity: .72; }
@keyframes toast-cycle {
  0%, 100% { opacity: 0; transform: translateX(14px) scale(.96); }
  5% { opacity: 1; transform: none; }
  24% { opacity: 1; transform: none; }
  32% { opacity: 0; transform: translateX(14px) scale(.96); }
}
@media (prefers-reduced-motion: reduce) {
  .aw-col { animation: none; }
  .app-toast { animation: none; opacity: 1; transform: none; }
}

.build > * { animation: build-in .55s var(--ease) both; }
.tcard.build, .build.video-thumb, .r-badge.build { animation: build-in .55s var(--ease) both; }
.build > *:nth-child(1) { animation-delay: .04s; } .build > *:nth-child(2) { animation-delay: .12s; }
.build > *:nth-child(3) { animation-delay: .2s; } .build > *:nth-child(4) { animation-delay: .28s; }
@keyframes build-in { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .build > *, .tcard.build, .build.video-thumb, .r-badge.build { animation: none; } }

/* how-it-works loop */
.loop-row { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.loop-step { flex: 1 1 260px; max-width: 320px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.loop-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.loop-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--lavender); border: 1px solid var(--lavender-border); display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; }
.loop-n { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-600); }
.loop-step h3 { font-size: 22px; margin: 8px 0 10px; }
.loop-step p { font-size: 15px; color: var(--text-soft); line-height: 1.6; }
.loop-arrow { display: flex; align-items: center; font-size: 26px; color: var(--purple-300); font-weight: 700; }

/* ==================== PRODUCT TOUR (sticky tabs) ==================== */
.tour { position: relative; }
.tour-head { max-width: 720px; margin: 0 auto; padding: 88px 24px 0; text-align: center; }
.tour-head h2 { font-size: clamp(30px, 4vw, 48px); text-wrap: balance; }
.tour-head .lead { font-size: 17px; color: var(--text-soft); margin-top: 16px; line-height: 1.55; }

.tour-tabs { position: sticky; top: 72px; z-index: 40; display: flex; justify-content: center; padding: 22px 16px; pointer-events: none; }
.tour-tabs-inner {
  pointer-events: auto; display: inline-flex; gap: 4px; max-width: 100%; overflow-x: auto; scrollbar-width: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full); padding: 6px; box-shadow: var(--shadow-md);
}
.tour-tabs-inner::-webkit-scrollbar { display: none; }
.tour-tab { flex: 0 0 auto; border: 0; background: transparent; color: var(--text-soft); font: inherit; font-weight: 600; font-size: 14.5px; padding: 9px 22px; border-radius: var(--r-full); cursor: pointer; transition: background .25s var(--ease), color .25s; }
.tour-tab:hover { color: var(--text); }
.tour-tab.is-active { background: var(--ink); color: #fff; }
[data-theme="dark"] .tour-tab.is-active { background: var(--purple-500); }

.tour-panel { position: relative; padding: 40px 24px 96px; scroll-margin-top: 120px; }
.tour-panel-in { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.02fr 1.1fr; gap: 60px; align-items: center; min-height: 460px; }
.tour-panel.flip .tour-media { order: -1; }
.tour-copy .tour-step { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 16px; }
.tour-copy h3 { font-size: clamp(27px, 3.4vw, 42px); font-weight: 500; letter-spacing: -.016em; line-height: 1.1; text-wrap: balance; }
.tour-copy > p { font-size: 17px; color: var(--text-soft); line-height: 1.62; margin-top: 18px; max-width: 48ch; }
.tour-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(340px, 100%); margin-top: 30px; padding-bottom: 14px; border-bottom: 1px solid var(--border-2); font-weight: 600; font-size: 15.5px; color: var(--text); transition: border-color .2s; }
.tour-link span { transition: transform .25s var(--ease); }
.tour-link:hover { border-color: var(--purple-500); } .tour-link:hover span { transform: translateX(5px); }
.tour-note { font-size: 13px; color: var(--text-mute); margin-top: 18px; }

/* panel palettes */
.tp-lavender { --stage: var(--c-blue); background: linear-gradient(180deg, var(--bg-soft), var(--lavender)); }
.tp-white { --stage: var(--c-green); background: var(--bg); }
.tp-dark { --stage: #FFB84D; background: radial-gradient(120% 130% at 15% 0%, #2A165E 0%, var(--ink) 55%); }
.tp-purple { --stage: #FF8A5B; background: radial-gradient(130% 130% at 85% 10%, #7C5CF0 0%, var(--royal) 48%, #3F1FA0 100%); }
.tp-light { --stage: var(--c-coral); background: linear-gradient(180deg, var(--bg), var(--bg-soft)); }
.tp-dark, .tp-purple { color: #fff; }
.tp-dark .tour-copy h3, .tp-purple .tour-copy h3 { color: #fff; }
.tp-dark .tour-copy > p, .tp-purple .tour-copy > p { color: rgba(255,255,255,.74); }
.tour-copy .tour-step { color: var(--stage, var(--purple-600)); }
.tp-dark .tour-link, .tp-purple .tour-link { color: #fff; border-color: rgba(255,255,255,.28); }
.tp-dark .tour-link:hover, .tp-purple .tour-link:hover { border-color: rgba(255,255,255,.6); }
.tp-dark .tour-note, .tp-purple .tour-note { color: rgba(255,255,255,.6); }

/* mock cards */
.mock { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--shadow-lg); max-width: 440px; margin-inline: auto; }
.tp-dark .mock, .tp-purple .mock { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 30px 70px rgba(10,4,30,.4); color: #fff; }
.tp-dark .mk-big, .tp-purple .mk-big { color: #fff; }
.tp-dark .mk-sub, .tp-purple .mk-sub { color: rgba(255,255,255,.72); }
.mk-ask { font-family: var(--display); font-size: 20px; font-weight: 500; margin: 14px 0 18px; }
.mk-rec { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 14px; background: var(--lavender); border: 1px solid var(--lavender-border); }
.mk-rec-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--stage, var(--purple-500)); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.mk-rec-ic .ic { width: 22px; height: 22px; }
.mk-rec b { display: block; font-size: 14.5px; } .mk-rec small { color: var(--text-mute); font-size: 12.5px; }
.mk-or { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--text-mute); font-size: 12.5px; }
.mk-or::before, .mk-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.mk-write { padding: 14px 16px; border-radius: 14px; border: 1px dashed var(--border-2); }
.mk-write p { color: var(--text-mute); font-size: 14px; margin-top: 6px; }
.mk-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.mk-stars.sm { font-size: 12px; }
.mock-btn { display: block; text-align: center; margin-top: 18px; padding: 12px; border-radius: 12px; background: var(--grad-btn); color: #fff; font-weight: 600; font-size: 14px; }

/* inbox mock */
.mk-inbox { padding: 18px; }
.mk-inbox-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; border-bottom: 1px solid var(--border); }
.mk-inbox-head b { font-size: 15px; }
.mk-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px 6px; border-bottom: 1px solid var(--border); }
.mk-item:last-child { border-bottom: 0; }
.mk-item .avatar { width: 34px; height: 34px; }
.mk-item-b p { font-size: 13px; color: var(--text-soft); line-height: 1.4; margin-top: 3px; }
.mk-state { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.mk-state.on { background: rgba(18,183,106,.12); color: var(--success); }
.mk-state.priv { background: var(--lavender); color: var(--purple-600); }
.mk-state.pend { background: var(--bg-soft); color: var(--text-mute); border: 1px solid var(--border); }

/* wall mock (Show) */
.mock-wall { columns: 2; column-gap: 14px; max-width: 460px; margin-inline: auto; }
.mock-wall .tcard { break-inside: avoid; margin-bottom: 14px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); color: #fff; }
.mock-wall .tcard .quote { color: #fff; } .mock-wall .tcard .nm { color: #fff; } .mock-wall .tcard .rl { color: rgba(255,255,255,.66); }

/* grow mock */
.mk-grow { max-width: 420px; }
.mk-grow-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 16px 0 20px; }
.mk-big { font-family: var(--display); font-weight: 700; font-size: 46px; line-height: 1; color: var(--text); }
.mk-big span { color: #F5A623; font-size: 30px; }
.mk-sub { font-size: 12.5px; color: var(--text-mute); margin-top: 6px; max-width: 18ch; }
.mk-spark { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.mk-spark i { width: 10px; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, color-mix(in srgb, var(--stage, var(--purple-400)) 55%, #fff), var(--stage, var(--purple-600))); display: block; }
.mk-auto { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; background: var(--c-coral-bg); border: 1px solid color-mix(in srgb, var(--c-coral) 22%, transparent); }
.mk-auto b { display: block; font-size: 14px; } .mk-auto small { color: var(--text-mute); font-size: 12.5px; }
.mk-toggle { position: relative; flex: 0 0 auto; width: 42px; height: 24px; border-radius: 999px; background: var(--c-green); }
.mk-toggle::after { content: ""; position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }

@media (max-width: 860px) {
  .tour-panel-in { grid-template-columns: 1fr; gap: 34px; }
  .tour-panel.flip .tour-media { order: 0; }
  .tour-copy { text-align: left; }
  .mock, .mock-wall, .mk-grow { margin-inline: 0; }
}

/* ---------- customer-voice cards (praise / pulse / problems) ---------- */
.section-dark.section-voice { background: radial-gradient(100% 92% at 50% -12%, #2A1560 0%, var(--ink) 52%, var(--ink-2) 100%); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.vcard {
  position: relative; overflow: hidden; border-radius: var(--r-2xl); padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.vcard::before { content: ""; position: absolute; inset: -55% -20% auto -20%; height: 72%; pointer-events: none; opacity: .5;
  background: radial-gradient(58% 100% at 50% 0%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 72%); }
.vcard > * { position: relative; z-index: 1; }
.vcard:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 55%, transparent); box-shadow: 0 30px 64px rgba(6,2,22,.5); }
.voice-grid .vcard:nth-child(2) { transform: translateY(-24px); }
.voice-grid .vcard:nth-child(2):hover { transform: translateY(-30px); }

.vcard-preview { border-radius: 16px; background: rgba(8,4,22,.42); border: 1px solid rgba(255,255,255,.1); padding: 16px; min-height: 140px; margin-bottom: 20px; display: flex; flex-direction: column; justify-content: center; }
.vcard-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 16%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent); }
.vcard h3 { font-size: 20px; color: #fff; margin: 13px 0 8px; }
.vcard > p { font-size: 14.5px; color: rgba(255,255,255,.68); line-height: 1.6; }
.vcard-flow { margin-top: 16px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.82); display: flex; align-items: center; gap: 8px; }
.vcard-flow > span, .vcard-flow .ic { color: var(--accent); flex: 0 0 auto; }
.vcard-flow .ic { width: 15px; height: 15px; }

.vp-stars { color: #FFC94D; font-size: 13px; letter-spacing: 1.5px; }
.vp-quote p { font-size: 14px; color: #fff; line-height: 1.45; margin: 9px 0 13px; }
.vp-by { display: flex; align-items: center; gap: 9px; }
.vp-by .avatar { width: 30px; height: 30px; }
.vp-nm { font-size: 12.5px; font-weight: 600; color: #fff; display: flex; flex-direction: column; line-height: 1.25; }
.vp-nm small { font-weight: 500; color: rgba(255,255,255,.55); font-size: 11px; }

.vp-rating { display: flex; align-items: center; gap: 16px; }
.vp-score { font-family: var(--display); font-weight: 700; font-size: 42px; line-height: 1; color: #fff; display: flex; align-items: flex-start; gap: 2px; }
.vp-score span { color: #FFC94D; font-size: 20px; }
.vp-meta .vp-stars { margin-bottom: 8px; }
.vp-pile { display: flex; align-items: center; }
.vp-pile .face { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; border: 2px solid #1a1046; margin-left: -8px; }
.vp-pile .face:first-child { margin-left: 0; }
.vp-pile .face img { width: 100%; height: 100%; object-fit: cover; }
.vp-pile small { margin-left: 10px; font-size: 11px; color: rgba(255,255,255,.6); }

.vp-lock { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.82); }
.vp-lock .ic { width: 15px; height: 15px; color: var(--accent); }
.vp-redact { display: flex; flex-direction: column; gap: 8px; margin: 15px 0; }
.vp-redact i { height: 8px; border-radius: 4px; background: rgba(255,255,255,.14); display: block; }
.vp-only { font-size: 11px; color: var(--accent); font-weight: 600; }

@media (max-width: 860px) {
  .voice-grid { grid-template-columns: 1fr; }
  .voice-grid .vcard:nth-child(2) { transform: none; }
}

/* collect import band */
.import-band { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.import-band h3 { font-size: 19px; margin-bottom: 4px; }
.import-band > div:first-child { flex: 1 1 260px; }
.import-band .source-row { justify-content: flex-end; margin-top: 0; flex: 1 1 300px; }

/* display (dark) */
.display-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; }
.display-showcase { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 24px; }
.mini-widgets { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.mini-widgets .tcard, .mini-widgets .r-badge, .mini-faces { margin: 0; }
.mini-video { min-height: 128px; border-radius: 14px; }
.mini-faces { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.embed-snippet { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #0d0b16; box-shadow: var(--shadow-lg); }
.es-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,.05); font-size: 12px; color: rgba(255,255,255,.62); border-bottom: 1px solid rgba(255,255,255,.1); }
.es-copy { background: var(--purple-500); color: #fff; border: 0; border-radius: 8px; padding: 5px 12px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: background .2s; }
.es-copy:hover { background: var(--purple-400); }
.embed-snippet pre { margin: 0; padding: 16px; overflow-x: auto; }
.embed-snippet code { font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace; font-size: 13px; line-height: 1.6; color: #d9d2ff; white-space: pre; }

/* problem — the reader's own thoughts, quote-style */
.pains { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.pain { position: relative; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--purple-400); border-radius: 12px; padding: 18px 22px; font-size: 17px; line-height: 1.5; color: var(--text-soft); }
.pain b { color: var(--text); font-weight: 600; }

/* benefits — the outcomes */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.b-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--ic-bg, var(--lavender)); border: 1px solid color-mix(in srgb, var(--ic, var(--purple-400)) 26%, transparent); display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; }
.benefit h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -.01em; }
.benefit p { font-size: 15.5px; color: var(--text-soft); line-height: 1.65; }

/* collect & show */
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cs-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-sm); }
.cs-panel > .eyebrow { margin-bottom: 12px; }
.cs-panel h3 { font-size: 24px; margin-bottom: 20px; }
.cs-list { display: flex; flex-direction: column; gap: 4px; }
.cs-list a, .cs-list div { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px; transition: background .16s; }
.cs-list a:hover { background: var(--lavender); }
.cs-list .ci { font-size: 20px; flex-shrink: 0; width: 24px; text-align: center; }
.cs-list b { font-size: 15px; display: block; }
.cs-list span { font-size: 13.5px; color: var(--text-mute); }

/* audiences */
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.audience-card { display: block; background: transparent; border: 0; border-radius: 0; padding: 0; text-align: left; transition: transform .3s var(--ease); }
.audience-card:hover { transform: translateY(-6px); box-shadow: none; }
.au-media { position: relative; overflow: hidden; border-radius: var(--r-xl); aspect-ratio: 4 / 5; margin-bottom: 15px;
  background: var(--surface-2); box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .4s var(--ease); }
.audience-card:hover .au-media { box-shadow: var(--shadow-lg); }
.au-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.audience-card:hover .au-media img { transform: scale(1.06); }
.au-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,4,26,.5), transparent 42%); z-index: 1; pointer-events: none; }
.au-media::after { content: "↗"; position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-size: 15px; font-weight: 700; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(-4px); transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 2; }
.audience-card:hover .au-media::after { opacity: 1; transform: none; }
.ind-tag { position: absolute; left: 10px; top: 10px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 11px; border-radius: 999px; color: #fff; background: var(--ic, var(--purple-500)); box-shadow: var(--shadow-sm); }

/* solution page hero photo banner */
.sol-photo { position: relative; overflow: hidden; border-radius: var(--r-2xl); aspect-ratio: 21 / 7; max-height: 380px; margin: 0 auto 8px; box-shadow: var(--shadow-lg); }
.sol-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sol-photo .ind-tag { top: 16px; left: 16px; font-size: 12px; padding: 6px 14px; }
.sol-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,4,26,.45), transparent 55%); pointer-events: none; }
@media (max-width: 720px) { .sol-photo { aspect-ratio: 4 / 5; max-height: 420px; } }
.audience-card h3 { font-size: 16px; margin-bottom: 4px; }
.audience-card p { font-size: 13.5px; color: var(--text-soft); line-height: 1.45; }

/* line-icon sizing & color (replaces cheap emoji) */
.loop-ico, .b-ico { color: var(--ic, var(--purple-600)); }
.loop-ico .ic, .b-ico .ic { width: 26px; height: 26px; }
.stream-ico { color: var(--accent); }
.stream-ico .ic { width: 28px; height: 28px; }
.cs-list .ci { color: var(--ic, var(--purple-500)); display: inline-flex; align-items: center; justify-content: center; }
.cs-list .ci .ic { width: 20px; height: 20px; }
.au-ico { color: var(--ic, var(--purple-600)); line-height: 0; }

/* colourful icon-tile rotation across grids */
.benefit-grid .benefit:nth-child(5n+1), .cs-list a:nth-child(5n+1), .audience-card:nth-child(5n+1) { --ic: var(--c-violet); --ic-bg: var(--c-violet-bg); }
.benefit-grid .benefit:nth-child(5n+2), .cs-list a:nth-child(5n+2), .audience-card:nth-child(5n+2) { --ic: var(--c-teal);   --ic-bg: var(--c-teal-bg); }
.benefit-grid .benefit:nth-child(5n+3), .cs-list a:nth-child(5n+3), .audience-card:nth-child(5n+3) { --ic: var(--c-amber);  --ic-bg: var(--c-amber-bg); }
.benefit-grid .benefit:nth-child(5n+4), .cs-list a:nth-child(5n+4), .audience-card:nth-child(5n+4) { --ic: var(--c-green);  --ic-bg: var(--c-green-bg); }
.benefit-grid .benefit:nth-child(5n+5), .cs-list a:nth-child(5n+5), .audience-card:nth-child(5n+5) { --ic: var(--c-coral);  --ic-bg: var(--c-coral-bg); }
.au-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin: 0 auto 12px; background: var(--ic-bg, var(--lavender)); border: 1px solid color-mix(in srgb, var(--ic, var(--purple-400)) 26%, transparent); }
.au-ico .ic { width: 30px; height: 30px; display: inline-block; }

@media (max-width: 1024px) {
  .streams { grid-template-columns: 1fr; }
  .display-grid { grid-template-columns: 1fr; }
  .loop-arrow { display: none; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .import-band .source-row { justify-content: flex-start; }
  .cs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-center { padding-top: calc(var(--nav-h) + 22px); }
  .app-wall { grid-template-columns: 1fr 1fr; height: 380px; }
  .aw-col:nth-child(3) { display: none; }
  .app-toast { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-widgets { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .pain { font-size: 16px; }
}

/* ---------- logo / trust marquee ---------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 22px 0; overflow: hidden; }
.trust-strip .lbl { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.logo-marquee { display: flex; gap: 44px; width: max-content; animation: marquee 34s linear infinite; }
.logo-marquee .lm-item { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--text-mute); opacity: .8; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.trust-mask { -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.trust-strip:hover .logo-marquee { animation-play-state: paused; }

/* ---------- sections ---------- */
.section { padding: 100px 24px; position: relative; }
.section-tight { padding: 72px 24px; }
.section-in { max-width: var(--max); margin: 0 auto; }
.section-lavender { background: linear-gradient(180deg, var(--bg) 0%, var(--lavender) 100%); }
[data-theme="dark"] .section-lavender { background: linear-gradient(180deg, #0d0b16, #0a0812); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .eyebrow { color: var(--purple-300); } .section-dark .eyebrow::before { background: var(--purple-400); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.66); }
.section-dark .story-card { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.1); }
.section-dark .story-card h3 { color: #fff; } .section-dark .story-card p { color: rgba(255,255,255,.66); }
.section-royal { background: var(--royal); color: #fff; }
.section-royal .eyebrow { color: var(--purple-300); } .section-royal .eyebrow::before { background: var(--purple-300); }
.section-royal .section-head h2, .section-royal h2, .section-royal h3 { color: #fff; }
.section-royal .lead, .section-royal p { color: rgba(255,255,255,.74); }
.section-royal .stat .num { background: linear-gradient(160deg, #fff, var(--purple-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-royal .stat .lbl { color: rgba(255,255,255,.8); }
/* deep-purple section: dark, rich background with white section head + white cards */
.section-deep { background: radial-gradient(120% 130% at 50% -5%, #2E1A63 0%, var(--ink) 60%); color: #fff; }
.section-deep .eyebrow { color: var(--purple-300); } .section-deep .eyebrow::before { background: var(--purple-400); }
.section-deep .section-head h2 { color: #fff; }
.section-deep .section-head .lead { color: rgba(255,255,255,.72); }
.section-deep .benefit { box-shadow: 0 26px 56px rgba(8,3,26,.42); border-color: transparent; }
.section-deep .benefit h3 { color: var(--text); }
.section-deep .benefit p { color: var(--text-soft); }
[data-theme="dark"] .section-deep { background: radial-gradient(120% 130% at 50% -5%, #241457 0%, var(--bg) 62%); }
.section-head { text-align: center; margin-bottom: 56px; max-width: 680px; margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); text-wrap: balance; }
.section-head .lead { font-size: 17px; color: var(--text-soft); margin-top: 16px; line-height: 1.55; }
.serif { font-family: var(--display); }

/* shared light gradient-glow hero — matches .feat-hero-glow so every page reads the same */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  margin-top: calc(-1 * var(--nav-h)); padding: calc(var(--nav-h) + 52px) 24px 60px;
  background:
    radial-gradient(68% 62% at 18% -8%, rgba(150,122,255,.60) 0%, transparent 60%),
    radial-gradient(64% 60% at 86% -6%, rgba(96,150,255,.48) 0%, transparent 62%),
    linear-gradient(180deg, #E7E0FB 0%, #ECE6FD 24%, #F2EFFD 48%, #F8F6FE 72%, var(--bg) 100%);
}
[data-theme="dark"] .page-hero {
  background:
    radial-gradient(68% 62% at 18% -8%, rgba(150,122,255,.34) 0%, transparent 60%),
    radial-gradient(64% 60% at 86% -6%, rgba(96,150,255,.26) 0%, transparent 62%),
    linear-gradient(180deg, #21174F 0%, #1D1447 30%, #191140 60%, var(--bg) 100%);
}
.page-hero .grain { display: none; }
.page-hero .wrap { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 500; letter-spacing: -.02em; line-height: 1.1; text-wrap: balance; margin: 0; color: var(--text); }
.page-hero p { font-size: clamp(16.5px, 1.4vw, 18.5px); line-height: 1.55; color: var(--text-soft); max-width: 52ch; margin: 16px auto 0; }

/* light, gradient-glow feature-page hero (Alaan + Hostinger) */
.feat-hero-glow {
  position: relative; overflow: hidden; text-align: center;
  margin-top: calc(-1 * var(--nav-h)); padding: calc(var(--nav-h) + 40px) 24px 0;
  /* colour is anchored to the very top edge so it sits behind the transparent
     nav (seamless header merge) and fades to the page bg toward the bottom */
  background:
    radial-gradient(68% 62% at 18% -8%, rgba(150,122,255,.60) 0%, transparent 60%),
    radial-gradient(64% 60% at 86% -6%, rgba(96,150,255,.48) 0%, transparent 62%),
    linear-gradient(180deg, #E7E0FB 0%, #ECE6FD 24%, #F2EFFD 48%, #F8F6FE 72%, var(--bg) 100%);
}
[data-theme="dark"] .feat-hero-glow {
  background:
    radial-gradient(68% 62% at 18% -8%, rgba(150,122,255,.34) 0%, transparent 60%),
    radial-gradient(64% 60% at 86% -6%, rgba(96,150,255,.26) 0%, transparent 62%),
    linear-gradient(180deg, #21174F 0%, #1D1447 30%, #191140 60%, var(--bg) 100%);
}
.feat-hero-glow .wrap { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.feat-hero-glow h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; text-wrap: balance; color: var(--text); margin: 0; }
.feat-hero-glow .wrap > p { font-size: clamp(16.5px, 1.4vw, 18.5px); line-height: 1.55; color: var(--text-soft); max-width: 50ch; margin: 16px auto 0; }
.feat-hero-glow .hero-ctas { justify-content: center; margin-top: 24px; }
.feat-hero-glow .hero-trust { margin-top: 14px; }

/* benefit checklist — a single centred row of green-check proof points */
.hero-checklist-inline { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin: 20px auto 0; padding: 0; max-width: 680px; }
.hero-checklist-inline li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--text); font-weight: 500; }
.hero-checklist-inline .ic { width: 17px; height: 17px; color: var(--c-green); flex: 0 0 auto; stroke-width: 2.5; }

/* product mock floating in the lower gradient (Alaan) — lifted so its top
   is comfortably above the fold on landing */
.fhg-visual { position: relative; z-index: 1; margin: 30px auto 0; max-width: 860px; }
.fhg-visual .app-frame { box-shadow: 0 40px 80px -24px rgba(40,26,90,.35), 0 12px 28px -12px rgba(40,26,90,.2); animation: fade-up 1s var(--ease) .15s both; }
.fhg-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 11px 15px; font-size: 13px; font-weight: 600; color: var(--text); box-shadow: 0 16px 38px rgba(40,26,90,.16); animation: fade-up .8s var(--ease) both; }
.fhg-chip .ic { width: 15px; height: 15px; color: var(--c-green); }
.fhg-chip-a { top: 12%; left: -3%; animation-delay: .4s; }
.fhg-chip-b { bottom: 18%; right: -3%; animation-delay: .6s; }
.fhg-chip-b .ic { color: var(--c-amber); }

@media (max-width: 900px) {
  .fhg-visual { max-width: 640px; }
  .fhg-chip-a { left: 0; }
  .fhg-chip-b { right: 0; }
}
@media (max-width: 640px) {
  .feat-hero-glow { padding: calc(var(--nav-h) + 36px) 20px 0; }
  .fhg-visual { margin-top: 40px; }
  .fhg-chip { display: none; }
}

/* story / how-it-works cards */
.story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 30px 26px; min-height: 240px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-card::after { content: ""; position: absolute; inset: auto -20% -40% 20%; height: 150px; background: radial-gradient(circle, rgba(103,61,230,.16), transparent 70%); pointer-events: none; }
.story-card .n { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--purple-600); letter-spacing: .1em; }
.story-card h3 { font-size: 20px; margin: 12px 0 10px; }
.story-card p { font-size: 15px; color: var(--text-soft); }

/* grids */
.collect-grid, .features-grid, .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.setup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; align-items: start; }
.setup-card h3 { font-family: var(--display); font-size: 17px; margin-bottom: 14px; }
.setup-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.setup-card li { font-size: 14px; color: var(--text-soft); padding-left: 22px; position: relative; line-height: 1.5; }
.setup-card li::before { content: "→"; position: absolute; left: 0; color: var(--purple-500); font-weight: 700; }
.collect-card, .feat { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 26px; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s; position: relative; overflow: hidden; }
.collect-card { display: block; }
.collect-card:hover, .feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.collect-card .ico, .feat .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--ic-bg, var(--lavender)); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; border: 1px solid color-mix(in srgb, var(--ic, var(--purple-400)) 26%, transparent); }
.collect-card h3, .feat h3 { font-size: 18px; margin-bottom: 8px; }
.collect-card p, .feat p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }
.collect-card .muted { margin-top: 12px; font-weight: 600; color: var(--ic, var(--purple-600)); }
.collect-card .ico, .feat .ico { color: var(--ic, var(--purple-600)); }
/* rotate feature-card tiles by position within their grid */
.feat:nth-child(6n+1), .collect-card:nth-child(6n+1) { --ic: var(--c-violet); --ic-bg: var(--c-violet-bg); }
.feat:nth-child(6n+2), .collect-card:nth-child(6n+2) { --ic: var(--c-blue);   --ic-bg: var(--c-blue-bg); }
.feat:nth-child(6n+3), .collect-card:nth-child(6n+3) { --ic: var(--c-teal);   --ic-bg: var(--c-teal-bg); }
.feat:nth-child(6n+4), .collect-card:nth-child(6n+4) { --ic: var(--c-amber);  --ic-bg: var(--c-amber-bg); }
.feat:nth-child(6n+5), .collect-card:nth-child(6n+5) { --ic: var(--c-green);  --ic-bg: var(--c-green-bg); }
.feat:nth-child(6n+6), .collect-card:nth-child(6n+6) { --ic: var(--c-coral);  --ic-bg: var(--c-coral-bg); }
.collect-card .ico .ic, .feat .ico .ic { width: 24px; height: 24px; }

/* product hub — grouped capability map */
.cap-group { margin-bottom: 44px; }
.cap-group:last-child { margin-bottom: 0; }
.cap-title { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.cap-title .ic { width: 17px; height: 17px; }
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 16px; }

/* alternating why blocks */
.why-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 40px 0; }
.why-block + .why-block { border-top: 1px solid var(--border); }
.why-block:nth-child(even) .why-visual { order: -1; }
.why-word { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 6vw, 76px); line-height: .92; letter-spacing: -.04em; margin-bottom: 8px; }
.why-block h3 { font-size: 24px; margin: 6px 0 12px; }
.why-block p { font-size: 16px; color: var(--text-soft); line-height: 1.6; max-width: 42ch; }
.why-block .mini-quote { margin-top: 20px; padding-left: 16px; border-left: 3px solid var(--purple-300); font-size: 14.5px; color: var(--text-soft); font-style: italic; }
.why-block .mini-quote cite { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-mute); font-style: normal; font-weight: 600; }
.why-fact { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; background: var(--lavender); border: 1px solid var(--lavender-border); font-size: 14.5px; font-weight: 600; color: var(--text); }
.why-fact b { color: var(--purple-600); }
.why-visual { position: relative; }

/* pinned how-it-works */
.pinned { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pinned-steps { display: flex; flex-direction: column; gap: 14px; }
.pinned-step { border: 1px solid var(--border); border-radius: 20px; padding: 26px; background: var(--surface); transition: border-color .3s, box-shadow .3s, background .3s; cursor: default; }
.pinned-step.on { border-color: var(--purple-400); box-shadow: var(--shadow-md); }
.pinned-step .pn { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: var(--purple-600); }
.pinned-step h3 { font-size: 21px; margin: 8px 0 8px; }
.pinned-step p { font-size: 15px; color: var(--text-soft); }
.pinned-visual { position: sticky; top: 100px; }
.pinned-frame { border: 1px solid var(--border); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; min-height: 420px; position: relative; }
.pinned-pane { position: absolute; inset: 0; opacity: 0; transform: scale(1.02); transition: opacity .5s var(--ease), transform .5s var(--ease); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.pinned-pane.on { opacity: 1; transform: none; }
.pinned-pane .pp-head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: var(--display); font-size: 15px; }

/* pricing teaser (home) */
.price-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.pt-item { position: relative; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 18px; padding: 24px 22px; text-align: left; background: var(--surface); box-shadow: var(--shadow-xs); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.pt-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pt-pop { border-color: var(--purple-300); background: linear-gradient(180deg, var(--surface), var(--lavender)); box-shadow: 0 18px 40px rgba(103,61,230,.14); }
.pt-flag { position: absolute; top: -10px; left: 22px; background: var(--purple-500); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 11px; border-radius: 999px; }
.pt-name { font-size: 12.5px; color: var(--text-mute); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.pt-price { font-family: var(--display); font-weight: 700; font-size: 32px; margin-top: 8px; letter-spacing: -.02em; line-height: 1; }
.pt-price.pt-price-sm { font-size: 24px; }
.pt-price small { font-size: 14px; color: var(--text-mute); font-weight: 500; font-family: var(--sans); }
.pt-tag { font-size: 13px; color: var(--text-soft); margin-top: 6px; }
.pt-feat { list-style: none; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 9px; }
.pt-pop .pt-feat { border-top-color: var(--lavender-border); }
.pt-feat li { font-size: 13px; color: var(--text-soft); padding-left: 23px; position: relative; line-height: 1.4; }
.pt-feat li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: #fff; font-size: 9px; font-weight: 700; width: 16px; height: 16px; background: var(--success); border-radius: 50%; display: grid; place-items: center; }
.price-teaser-note { text-align: center; font-size: 13px; color: var(--text-mute); margin: 22px auto 0; }
@media (max-width: 900px) { .price-teaser { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .price-teaser { grid-template-columns: 1fr; } }

/* stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -.03em; background: linear-gradient(160deg, var(--purple-500), var(--purple-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-dark .stat .num { background: linear-gradient(160deg, #fff, var(--purple-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: 14.5px; color: var(--text-soft); margin-top: 10px; font-weight: 500; }
.section-dark .stat .lbl { color: rgba(255,255,255,.66); }

/* source pills / import */
.source-band { margin-top: 12px; text-align: center; }
.source-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.source-pill, .icp-pill { padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border-2); font-size: 13px; font-weight: 600; color: var(--text-soft); transition: transform .35s var(--ease-spring), border-color .2s, color .2s; }
.source-row.in .source-pill { animation: pill-pop .6s var(--ease) both; }
.source-row.in .source-pill:nth-child(3n) { animation-delay: .05s; }
.source-row.in .source-pill:nth-child(3n+1) { animation-delay: .12s; }
.source-row.in .source-pill:nth-child(3n+2) { animation-delay: .18s; }
@keyframes pill-pop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.source-pill:hover { transform: translateY(-3px); border-color: var(--purple-400); color: var(--purple-600); }

/* widget cards */
.tcard { background: var(--surface); color: var(--text); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.tcard .quote, .tcard .nm { color: var(--text); }
.tcard .quote { font-size: 14px; line-height: 1.55; }
.person { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.person .nm, .person .rl { display: block; }
.person .nm { font-weight: 700; font-size: 13px; } .person .rl { font-size: 11.5px; color: var(--text-mute); }
.stars { display: inline-flex; gap: 2px; color: var(--accent-500); font-size: 14px; }
.avatar { width: 36px; height: 36px; border-radius: 999px; background: linear-gradient(135deg, var(--purple-400), var(--purple-700)); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; flex-shrink: 0; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb { position: relative; border-radius: 12px; overflow: hidden; min-height: 110px; background: linear-gradient(135deg, var(--purple-800), var(--purple-500)); }
.video-thumb .play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-thumb .play span { width: 40px; height: 40px; border-radius: 999px; background: #fff; display: grid; place-items: center; color: var(--purple-500); font-size: 14px; }
.vbadge { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.45); color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 999px; }
.w-wall { columns: 2; column-gap: 12px; }
.w-wall .tcard { break-inside: avoid; margin-bottom: 12px; }
.w-carousel, .w-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.w-marquee { overflow: hidden; }
.w-marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 30s linear infinite; }
.w-marquee-track.rev { animation-direction: reverse; }
.w-marquee-track .tcard { width: 250px; flex-shrink: 0; }
.w-marquee:hover .w-marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .w-marquee-track, .logo-marquee { animation: none; } }
.r-badge { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 12px 16px; }
.face-pile { display: flex; }
.face-pile .avatar, .face-pile img { margin-left: -8px; border: 2px solid var(--surface); }
.face-pile .avatar:first-child, .face-pile img:first-child { margin-left: 0; }
.face-pile img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

.widget-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.w-tab { font-size: 14px; font-weight: 600; padding: 9px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border-2); color: var(--text-soft); cursor: pointer; transition: all .18s; }
.w-tab:hover { border-color: var(--purple-400); }
.w-tab.on { background: var(--purple-500); color: #fff; border-color: var(--purple-500); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 20px; cursor: pointer; text-align: left; width: 100%; font: inherit; color: inherit; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.g-card:hover, .g-card.on { border-color: var(--purple-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.g-card .cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--purple-600); }
.badge-free { font-size: 10px; font-weight: 700; background: var(--success); color: #fff; border-radius: 999px; padding: 2px 8px; }

/* ==================== feature-page "app screen" frame ==================== */
.app-frame { position: relative; max-width: 760px; margin: 0 auto; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; }
.app-frame .device-screen { min-height: 300px; }
[data-theme="dark"] .app-frame .device-chrome, [data-theme="dark"] .app-frame .device-screen { background: var(--surface-2); }

/* form lab */
.form-lab { display: grid; grid-template-columns: 190px 1fr; gap: 0; min-height: 300px; margin: -16px; }
.form-lab-nav { padding: 14px 10px; border-right: 1px solid var(--border); }
.form-lab-nav button { display: flex; align-items: center; gap: 9px; width: 100%; text-align: left; padding: 10px 12px; border: 0; background: transparent; border-radius: 11px; font-weight: 600; font-size: 13.5px; cursor: pointer; color: var(--text-soft); transition: all .18s; }
.form-lab-nav button .ic { width: 16px; height: 16px; flex: 0 0 auto; }
.form-lab-nav button.on { background: var(--lavender); color: var(--purple-700); }
.lab-screen { padding: 26px 28px; }
.lab-screen .lab-h { font-family: var(--display); font-weight: 500; font-size: 21px; margin-bottom: 8px; }
.lab-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; background: var(--c-violet-bg); color: var(--c-violet); }
.lab-ico .ic { width: 22px; height: 22px; }
.stars-hit { font-size: 26px; letter-spacing: 4px; cursor: pointer; color: #FFB020; border: 0; background: none; display: block; margin: 4px 0; }
.private-lock { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--c-teal); background: var(--c-teal-bg); border-radius: 12px; padding: 11px 13px; margin-top: 14px; width: max-content; }
.private-lock .ic { width: 15px; height: 15px; }

/* funnel (requests) */
.app-funnel { display: flex; align-items: stretch; justify-content: center; gap: 6px; padding: 10px 4px; }
.app-funnel-step { flex: 1 1 0; text-align: center; padding: 16px 10px; }
.app-funnel-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin: 0 auto 10px; color: #fff; }
.app-funnel-ico .ic { width: 19px; height: 19px; }
.app-funnel-n { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1; }
.app-funnel-lbl { font-size: 12px; color: var(--text-mute); margin-top: 4px; font-weight: 600; }
.app-funnel-arrow { display: flex; align-items: center; color: var(--border-2); font-size: 18px; padding-top: 30px; }

/* inbox mock (reuses .mk-item look from the home tour) */
.app-inbox { display: flex; flex-direction: column; }
.app-inbox .mk-item { grid-template-columns: auto 1fr auto; padding: 13px 4px; }
.app-inbox .mk-item-b b { font-size: 13px; }
.app-inbox .mk-item-b p { margin-top: 2px; }

/* import sources (constellation) */
.app-sources { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 6px 0 2px; }
.app-sources button { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--border-2); background: var(--surface); border-radius: 999px; padding: 9px 15px 9px 11px; font-weight: 600; font-size: 12.5px; cursor: pointer; color: var(--text); transition: all .2s; }
.app-sources button .ic { width: 15px; height: 15px; color: var(--text-mute); }
.app-sources button.on { border-color: var(--purple-500); background: var(--lavender); color: var(--purple-700); box-shadow: var(--shadow-sm); }
.app-sources button.on .ic { color: var(--purple-600); }
.app-source-note { text-align: center; margin-top: 14px; font-size: 13px; color: var(--text-soft); max-width: 46ch; margin-inline: auto; }

/* kpi tiles (analytics) */
.app-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.app-kpi { text-align: center; padding: 18px 10px; border-radius: 14px; background: var(--bg-soft); border: 1px solid var(--border); }
.app-kpi-n { font-family: var(--display); font-weight: 700; font-size: 28px; line-height: 1; }
.app-kpi-lbl { font-size: 11.5px; color: var(--text-mute); font-weight: 600; margin-top: 6px; }
.app-kpi-sub { font-size: 11px; color: var(--text-soft); margin-top: 3px; }

/* wall-of-love mini gallery */
.app-wallgrid { columns: 2; column-gap: 12px; }
.app-wallgrid .tcard { break-inside: avoid; margin-bottom: 12px; padding: 14px; }
.app-wallgrid .tcard .quote { font-size: 13px; }

/* share card */
.app-share { display: flex; justify-content: center; padding: 6px 0; }
.app-share-card { width: 280px; border-radius: 18px; padding: 22px; background: radial-gradient(120% 130% at 20% 0%, #6248C4, var(--ink) 90%); color: #fff; box-shadow: var(--shadow-lg); }
.app-share-card .stars { color: #FFC94D; font-size: 14px; letter-spacing: 1.5px; }
.app-share-card .quote { font-size: 15px; line-height: 1.5; margin: 12px 0 16px; }
.app-share-card .person { display: flex; align-items: center; gap: 10px; }
.app-share-card .nm { font-size: 13px; font-weight: 700; }
.app-share-card .rl { font-size: 11.5px; color: rgba(255,255,255,.6); }
.app-share-mark { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.16); font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; }

/* widget gallery preview (Display hub) */
.app-widgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.app-widgrid > div { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.app-widgrid .lbl { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mute); margin-bottom: 10px; }

/* branding presets */
.app-brand-swatches { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.app-swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid transparent; cursor: default; }
.app-swatch.on { border-color: var(--text); box-shadow: 0 0 0 2px var(--surface); }
.app-brand-preview { max-width: 300px; margin: 0 auto; border-radius: 14px; padding: 18px; text-align: center; background: var(--lavender); border: 1px solid var(--lavender-border); }
.app-brand-preview .stars { color: #FFB020; font-size: 13px; }
.app-brand-preview p { font-size: 13.5px; margin-top: 8px; }
.app-brand-preview .btn { margin-top: 12px; }

/* integrations rows */
.app-connections { display: flex; flex-direction: column; gap: 9px; }
.app-conn { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--border); }
.app-conn-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; }
.app-conn-ico .ic { width: 17px; height: 17px; }
.app-conn b { font-size: 13.5px; display: block; }
.app-conn small { font-size: 12px; color: var(--text-mute); }
.app-conn-state { margin-left: auto; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.app-conn-state.on { background: rgba(18,183,106,.12); color: var(--success); }
.app-conn-state.off { background: var(--surface-2); color: var(--text-mute); border: 1px solid var(--border); }

/* domains */
.app-domains { display: flex; flex-direction: column; gap: 10px; max-width: 420px; margin: 0 auto; }
.app-domain-row { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--border); }
.app-domain-row .ic { width: 15px; height: 15px; color: var(--text-mute); flex: 0 0 auto; }
.app-domain-row span { font-size: 13px; font-weight: 600; flex: 1; }
.app-domain-connected { font-size: 10.5px; font-weight: 700; color: var(--success); background: rgba(18,183,106,.12); padding: 3px 9px; border-radius: 999px; }

/* team roster */
.app-roster { display: flex; flex-direction: column; gap: 8px; max-width: 420px; margin: 0 auto; }
.app-roster-row { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 12px; }
.app-roster-row .avatar { width: 32px; height: 32px; }
.app-roster-row b { font-size: 13px; display: block; }
.app-roster-row small { font-size: 11.5px; color: var(--text-mute); }
.app-role-chip { margin-left: auto; font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--lavender); color: var(--purple-700); white-space: nowrap; }
.app-invite-row { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 12px; border: 1.5px dashed var(--border-2); color: var(--text-mute); font-size: 12.5px; font-weight: 600; }
.app-invite-row .ic { width: 14px; height: 14px; }

/* code embed block */
.prose pre { background: var(--ink-2); border-radius: 16px; padding: 20px 22px; overflow-x: auto; box-shadow: var(--shadow-md); }
.prose pre code { color: #E4DEFF; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; font-size: 12.5px; line-height: 1.7; }

/* ==================== feature-page detail sections (image + copy, alternating) ==================== */
.feat-detail-section { padding-top: 84px; padding-bottom: 84px; }
.feat-detail-section.feat-detail-first { padding-top: 44px; }
.feat-detail { padding: 0; }
.feat-detail-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.feat-detail-row.flip .feat-detail-visual { order: -1; }
.feat-detail-copy, .feat-detail-visual { min-width: 0; }
.feat-detail-copy .eyebrow { margin-bottom: 16px; }
.feat-detail-copy h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 500; letter-spacing: -.016em; line-height: 1.14; text-wrap: balance; }
.feat-detail-copy > p { font-size: 16.5px; color: var(--text-soft); line-height: 1.64; margin: 16px 0 22px; max-width: 44ch; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--text-soft); line-height: 1.5; }
.feat-list li b, .feat-list li strong { color: var(--text); font-weight: 600; }
.feat-check { flex: 0 0 auto; color: var(--success); display: grid; place-items: center; margin-top: 1px; }
.feat-check .ic { width: 20px; height: 20px; stroke-width: 2; }

/* visual panel: a soft-tinted card stage that floats one or more mock cards */
.feat-visual { position: relative; border-radius: var(--r-2xl); min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 40px; }
.feat-visual::before, .feat-visual::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.feat-visual::before { width: 260px; height: 260px; background: color-mix(in srgb, var(--fv-accent, var(--purple-400)) 32%, transparent); top: -70px; right: -70px; filter: blur(12px); }
.feat-visual::after { width: 190px; height: 190px; background: color-mix(in srgb, var(--fv-accent, var(--purple-400)) 22%, transparent); bottom: -60px; left: -50px; filter: blur(12px); }
.feat-visual-inner { position: relative; z-index: 1; width: 100%; }

/* "choice" visual: two overlapping cards (write vs video) */
.feat-choice { position: relative; max-width: 340px; margin: 0 auto; }
.feat-choice .tcard { box-shadow: var(--shadow-lg); }
.feat-choice-write { transform: rotate(-3deg); }
.feat-choice-video { position: relative; margin-top: -38px; margin-left: 64px; transform: rotate(2deg); width: 240px; box-shadow: var(--shadow-lg); border-radius: 14px; overflow: hidden; }

/* floating mini-inbox card */
.feat-inbox-card { max-width: 360px; margin: 0 auto; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 10px; }
.feat-inbox-card .mk-item { padding: 12px 10px; }
.feat-inbox-card .mk-item .avatar { width: 32px; height: 32px; }

/* video "ask" visual */
.feat-video-card { max-width: 340px; margin: 0 auto; }
.feat-video-card .video-thumb { border-radius: 16px; min-height: 210px; box-shadow: var(--shadow-lg); }
.feat-video-caption { margin-top: 16px; background: var(--surface); border-radius: 13px; padding: 13px 15px; box-shadow: var(--shadow-md); font-size: 13px; color: var(--text-soft); display: flex; align-items: center; gap: 9px; }
.feat-video-caption b { color: var(--text); }

/* "upload" visual: an uploaded-file row + a drop hint */
.fv-upload-row { display: flex; align-items: center; gap: 11px; padding: 12px 10px; }
.fv-upload-ico { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--c-teal-bg); color: var(--c-teal); }
.fv-upload-ico .ic { width: 18px; height: 18px; }
.fv-upload-drop { margin: 4px 6px 6px; border: 1.5px dashed var(--border-2); border-radius: 12px; padding: 13px; font-size: 12.5px; font-weight: 600; color: var(--text-mute); display: flex; align-items: center; justify-content: center; gap: 8px; }
.fv-upload-drop .ic { width: 15px; height: 15px; }

/* "videogrid" visual: a 2x2 grid of video thumbs */
.fv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 320px; margin: 0 auto; }
.fv-grid .video-thumb { min-height: 108px; border-radius: 13px; box-shadow: var(--shadow-md); }

/* ---- data-driven detail-section visual library ---- */
/* generic labeled-rows card (feedback, import, inbox, integrations, domains, team, ...) */
.fv-rows { max-width: 350px; }
.fv-row { display: flex; align-items: center; gap: 11px; padding: 12px 10px; }
.fv-row + .fv-row { border-top: 1px solid var(--border); }
.fv-row-ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.fv-row-ic .ic { width: 17px; height: 17px; }
.fv-row .avatar { width: 32px; height: 32px; }
.fv-row .mk-item-b { min-width: 0; }
.mk-state.muted { background: var(--purple-50); color: var(--purple-600); }

/* metric / KPI card */
.fv-metric { max-width: 300px; margin: 0 auto; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px 22px 18px; }
.fv-metric-top { display: flex; align-items: baseline; gap: 10px; }
.fv-metric-val { font-family: var(--display); font-weight: 700; font-size: 40px; line-height: 1; letter-spacing: -.02em; }
.fv-metric-delta { font-size: 12.5px; font-weight: 700; color: var(--c-green); background: var(--c-green-bg); padding: 3px 8px; border-radius: 999px; }
.fv-metric-lbl { font-size: 13px; color: var(--text-mute); margin-top: 6px; font-weight: 600; }
.fv-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-top: 18px; }
.fv-bars span { flex: 1; background: linear-gradient(180deg, var(--purple-400), var(--purple-600)); border-radius: 4px 4px 0 0; opacity: .9; }

/* code snippet card (embed, widgets install, integrations events) */
.fv-code { max-width: 380px; margin: 0 auto; background: var(--ink-2); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; }
.fv-code-bar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.fv-code-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.22); }
.fv-code pre { margin: 0; padding: 16px 18px; font-family: "SFMono-Regular", Consolas, Menlo, monospace; font-size: 12px; line-height: 1.75; color: #E4DEFF; white-space: pre-wrap; word-break: break-word; }
.fv-code pre span { display: block; }

/* labeled tiles (widget catalog, sources) */
.fv-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 330px; margin: 0 auto; }
.fv-tile { display: flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 12px 13px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm); min-width: 0; }
.fv-tile span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fv-tile-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--ic-bg, var(--lavender)); color: var(--ic, var(--purple-600)); }
.fv-tile-ic .ic { width: 16px; height: 16px; }

/* single testimonial card (share, wall) */
.fv-quote { max-width: 320px; margin: 0 auto; }
.fv-quote .tcard { box-shadow: var(--shadow-lg); }

/* browser URL card (domains, wall) */
.fv-url { max-width: 340px; margin: 0 auto; background: var(--surface); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; }
.fv-url .device-chrome { padding: 11px 13px; }
.fv-url-body { display: flex; align-items: center; gap: 11px; padding: 28px 20px; font-size: 14px; font-weight: 600; color: var(--text); }
.fv-url-body .ic { flex: 0 0 auto; width: 20px; height: 20px; color: var(--c-coral); }

/* rating capture card (ratings) */
.fv-rating { max-width: 300px; margin: 0 auto; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 26px 24px; text-align: center; }
.fv-rating .lab-ico { margin: 0 auto 14px; }
.fv-rating-stars { color: var(--c-amber); font-size: 26px; letter-spacing: 3px; margin: 6px 0 10px; }

/* rating badge widget (ratings, widgets) */
.fv-badge { max-width: 240px; margin: 0 auto; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 26px 24px; text-align: center; }
.fv-badge-score { font-family: var(--display); font-weight: 800; font-size: 46px; line-height: 1; letter-spacing: -.02em; }
.fv-badge-stars { color: var(--c-amber); font-size: 20px; letter-spacing: 2px; margin: 8px 0 6px; }
.fv-badge-count { font-size: 12.5px; color: var(--text-mute); font-weight: 600; }

/* sent/opened/responded funnel (requests) */
.fv-funnel { display: flex; align-items: stretch; gap: 8px; max-width: 350px; margin: 0 auto; }
.fv-funnel-step { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 16px 8px; text-align: center; box-shadow: var(--shadow-sm); }
.fv-funnel-n { display: block; font-family: var(--display); font-weight: 700; font-size: 24px; line-height: 1; }
.fv-funnel-l { display: block; font-size: 11px; color: var(--text-mute); font-weight: 600; margin-top: 5px; }

/* brand preset swatches (branding) */
.fv-swatches { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 320px; margin: 0 auto; }
.fv-swatch { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 15px 8px 8px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm); }
.fv-swatch-dot { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }

/* dark-section variants for the new visuals */
.feat-detail-section.section-dark .fv-metric,
.feat-detail-section.section-dark .fv-url,
.feat-detail-section.section-dark .fv-rating,
.feat-detail-section.section-dark .fv-badge,
.feat-detail-section.section-dark .fv-tile,
.feat-detail-section.section-dark .fv-funnel-step,
.feat-detail-section.section-dark .fv-swatch,
.feat-detail-section.section-dark .fv-quote .tcard { background: rgba(255,255,255,.08); box-shadow: none; border-color: rgba(255,255,255,.12); }
.feat-detail-section.section-dark .fv-metric-lbl,
.feat-detail-section.section-dark .fv-badge-count,
.feat-detail-section.section-dark .fv-funnel-l { color: rgba(255,255,255,.6); }
.feat-detail-section.section-dark .fv-metric-val,
.feat-detail-section.section-dark .fv-badge-score,
.feat-detail-section.section-dark .fv-tile,
.feat-detail-section.section-dark .fv-swatch,
.feat-detail-section.section-dark .fv-url-body,
.feat-detail-section.section-dark .fv-quote .quote { color: #fff; }
.feat-detail-section.section-dark .fv-row + .fv-row { border-color: rgba(255,255,255,.1); }
.feat-detail-section.section-dark .mk-state.muted { background: rgba(255,255,255,.12); color: #fff; }

/* dark variant of a detail section, for light/dark rhythm down the page */
.feat-detail-section.section-dark .feat-detail-copy > p { color: rgba(255,255,255,.68); }
.feat-detail-section.section-dark .feat-list li { color: rgba(255,255,255,.78); }
.feat-detail-section.section-dark .feat-list li b { color: #fff; }
.feat-detail-section.section-dark .feat-check { color: #6EE7B7; }
.feat-detail-section.section-dark .feat-visual { background: rgba(255,255,255,.06) !important; }
.feat-detail-section.section-dark .feat-inbox-card,
.feat-detail-section.section-dark .feat-video-caption { background: rgba(255,255,255,.08); box-shadow: none; }
.feat-detail-section.section-dark .feat-inbox-card .mk-item-b p { color: rgba(255,255,255,.66); }
.feat-detail-section.section-dark .feat-video-caption { color: rgba(255,255,255,.75); }
.feat-detail-section.section-dark .feat-video-caption b { color: #fff; }

/* ==================== "how it works" — numbered step cards ==================== */
.process-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px 24px 24px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  transition-delay: calc(var(--i, 0) * .12s);
}
.process-cards.in .process-card { opacity: 1; transform: none; }
.process-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-2); }
.process-card .pc-num {
  position: absolute; top: 6px; right: 18px; z-index: 0; pointer-events: none;
  font-family: var(--display); font-weight: 800; font-size: 58px; line-height: 1;
  color: color-mix(in srgb, var(--ic, var(--purple-400)) 16%, transparent);
}
.process-card .pc-ico {
  position: relative; z-index: 1;
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--ic-bg, var(--lavender)); color: var(--ic, var(--purple-600));
  border: 1px solid color-mix(in srgb, var(--ic, var(--purple-400)) 26%, transparent);
}
.process-card .pc-ico .ic { width: 23px; height: 23px; }
.process-card h3 { position: relative; z-index: 1; font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.process-card p { position: relative; z-index: 1; font-size: 14px; color: var(--text-soft); line-height: 1.55; }
.process-card:nth-child(4n+1) { --ic: var(--c-violet); --ic-bg: var(--c-violet-bg); }
.process-card:nth-child(4n+2) { --ic: var(--c-blue);   --ic-bg: var(--c-blue-bg); }
.process-card:nth-child(4n+3) { --ic: var(--c-teal);   --ic-bg: var(--c-teal-bg); }
.process-card:nth-child(4n+4) { --ic: var(--c-green);  --ic-bg: var(--c-green-bg); }
@media (max-width: 900px) {
  .process-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .feat-detail-row, .feat-detail-row.flip { grid-template-columns: 1fr; gap: 30px; }
  .feat-detail-row.flip .feat-detail-visual { order: 0; }
  .feat-visual { min-height: 260px; }
}

/* pricing */
.price-assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-bottom: 22px; }
.price-assure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-soft); }
.price-assure .ic { width: 17px; height: 17px; color: var(--success); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 28px 26px; position: relative; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.plan .btn { margin-top: 4px; }
.plan ul { margin-top: 20px; }
/* featured = premium dark card */
.plan.featured { background: radial-gradient(130% 120% at 50% 0%, #33206E 0%, var(--ink) 62%); border-color: transparent; color: #fff; box-shadow: 0 34px 64px rgba(20,8,60,.34); transform: translateY(-10px); }
.plan.featured:hover { transform: translateY(-16px); box-shadow: 0 42px 80px rgba(20,8,60,.42); }
.plan.featured .plan-tagline { color: rgba(255,255,255,.6); }
.plan.featured .plan-price { color: #fff; }
.plan.featured .plan-price small, .plan.featured .plan-note { color: rgba(255,255,255,.62); }
.plan.featured li { color: rgba(255,255,255,.82); }
.plan.featured li::before { background: var(--success); }
.plan.featured .btn-secondary { background: #fff; color: var(--purple-700); border-color: #fff; }
.plan.featured .btn-secondary:hover { background: #fff; color: var(--purple-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(92deg, #FFB020, #F5960B); color: #3A2100; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; box-shadow: 0 8px 20px rgba(245,150,11,.4); white-space: nowrap; }
.plan-name { font-family: var(--display); font-weight: 700; font-size: 19px; }
.plan-tagline { font-size: 13px; color: var(--text-mute); margin: 4px 0 16px; }
.plan-price { font-family: var(--display); font-weight: 700; font-size: 42px; margin-bottom: 8px; letter-spacing: -.03em; line-height: 1; }
.plan-price small { font-size: 15px; color: var(--text-mute); font-family: var(--sans); font-weight: 500; }
.plan-note { font-size: 12.5px; color: var(--text-mute); margin-bottom: 14px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan li { font-size: 13.5px; color: var(--text-soft); padding-left: 26px; position: relative; line-height: 1.45; }
.plan li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; font-weight: 700; font-size: 10px; width: 17px; height: 17px; background: var(--success); border-radius: 50%; display: grid; place-items: center; }
.interval-toggle { display: inline-flex; justify-content: center; gap: 4px; margin: 0 auto 34px; padding: 5px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 999px; box-shadow: var(--shadow-xs); }
.interval-toggle button { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; border-radius: 999px; padding: 9px 20px; font-weight: 600; cursor: pointer; color: var(--text-soft); transition: all .2s; }
.interval-toggle button.on { background: var(--purple-500); color: #fff; }
.save-pill { font-size: 10.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: color-mix(in srgb, var(--success) 18%, transparent); color: var(--success); }
.interval-toggle button.on .save-pill { background: rgba(255,255,255,.22); color: #fff; }

.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare th { font-size: 13px; font-family: var(--display); }
.compare tr td:last-child { background: var(--lavender); }
.compare .win { color: var(--purple-700); font-weight: 600; }

.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; margin-bottom: 10px; background: var(--surface); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--purple-300); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 52px 20px 22px; font-size: 16px; font-weight: 700; font-family: var(--display); cursor: pointer; position: relative; color: var(--text); }
.faq-q span { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--lavender); display: grid; place-items: center; transition: transform .25s; }
.faq-q span::before { content: "+"; color: var(--purple-600); font-weight: 700; }
.faq-item.open .faq-q span { transform: translateY(-50%) rotate(135deg); }
.faq-a { display: none; padding: 0 22px 20px; font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }
.faq-item.open .faq-a { display: block; animation: fade-up .3s var(--ease); }
.faq-a a { color: var(--purple-600); }

.close { position: relative; overflow: hidden; text-align: center; color: #fff; padding: 64px 32px; border-radius: var(--r-2xl);
  background: radial-gradient(95% 130% at 50% 38%, #3A2185 0%, #251657 45%, var(--ink) 100%);
  box-shadow: 0 40px 90px rgba(16,6,46,.3); }
.close .grain { opacity: .28; }
.close-in { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.close h2 { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.7vw, 42px); margin-bottom: 14px; text-wrap: balance; letter-spacing: -.02em; line-height: 1.1; }
.close p { color: rgba(255,255,255,.74); margin-bottom: 28px; font-size: 17px; max-width: 46ch; margin-inline: auto; }
.close .close-trust { font-size: 12.5px; color: rgba(255,255,255,.5); margin: 22px auto 0; max-width: none; }
.cta-section { padding-top: 80px; padding-bottom: 80px; }
.close .hero-ctas { justify-content: center; }

.loop { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.loop a { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: block; min-height: 140px; transition: transform .22s var(--ease), border-color .22s, box-shadow .22s; }
.loop a:hover { border-color: var(--purple-400); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.loop h3 { font-size: 15px; margin: 6px 0; }
.loop p { font-size: 13px; color: var(--text-soft); }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 27px; margin: 48px 0 14px; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 15.5px; color: var(--text-soft); line-height: 1.75; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose a { color: var(--purple-600); text-decoration: underline; }
.prose strong { color: var(--text); }
.prose .notice { background: var(--lavender); border: 1px solid var(--lavender-border); border-radius: 14px; padding: 16px 20px; font-size: 14px; color: var(--violet-muted); margin: 24px 0; }
.prose ol.step-list { counter-reset: st; list-style: none; padding-left: 0; display: grid; gap: 12px; margin: 16px 0 24px; }
.prose ol.step-list li { position: relative; margin: 0; padding: 16px 20px 16px 58px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; font-size: 15px; color: var(--text-soft); }
.prose ol.step-list li::before { counter-increment: st; content: counter(st, decimal-leading-zero); position: absolute; left: 18px; top: 15px; font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--purple-500); }
.content { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 0; }
.related a { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: block; transition: transform .22s var(--ease), border-color .22s; }
.related a:hover { border-color: var(--purple-400); transform: translateY(-3px); }
.related a .ico { width: 38px; height: 38px; border-radius: 11px; background: var(--ic-bg, var(--lavender)); color: var(--ic, var(--purple-600)); display: grid; place-items: center; margin-bottom: 12px; border: 1px solid color-mix(in srgb, var(--ic, var(--purple-400)) 26%, transparent); }
.related a .ico .ic { width: 19px; height: 19px; }
.related a:nth-child(3n+1) { --ic: var(--c-violet); --ic-bg: var(--c-violet-bg); }
.related a:nth-child(3n+2) { --ic: var(--c-teal);   --ic-bg: var(--c-teal-bg); }
.related a:nth-child(3n+3) { --ic: var(--c-green);  --ic-bg: var(--c-green-bg); }


/* footer */
/* contact form */
.contact-form { display: grid; gap: 18px; border-radius: var(--r-xl); padding: 30px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--text); background: var(--surface-2);
  border: 1.5px solid var(--border-2); border-radius: var(--r-md); padding: 12px 14px;
  transition: border-color .16s, box-shadow .16s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--purple-500); box-shadow: 0 0 0 4px rgba(103,61,230,.14);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 14px; margin: 0; }
.form-status.err { color: var(--danger); } .form-status.ok { color: var(--success); }
.form-banner { border-radius: var(--r-lg); padding: 18px 22px; font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.form-banner.ok { background: color-mix(in srgb, var(--success) 12%, transparent); border: 1px solid color-mix(in srgb, var(--success) 40%, transparent); color: #0a7a4b; }
[data-theme="dark"] .form-banner.ok { color: #46e0a0; }

/* footer — wide columns + giant wordmark */
.footer { position: relative; overflow: hidden; padding: 80px 24px 28px; border-top: 1px solid var(--border); background: var(--bg-soft); }
.foot-top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 3fr; gap: 56px; }
.foot-brand-col .nav-brand { font-size: 20px; }
.foot-brand { font-size: 14.5px; color: var(--text-soft); max-width: 320px; margin: 16px 0 20px; line-height: 1.65; }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.foot-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-mute); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: var(--text-soft); padding: 5px 0; transition: color .16s, transform .16s; width: max-content; }
.foot-col a:hover { color: var(--purple-600); transform: translateX(3px); }
.foot-bottom { max-width: var(--max); margin: 56px auto 0; padding: 24px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-mute); flex-wrap: wrap; gap: 12px; }
.foot-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-bottom-links a:hover { color: var(--purple-600); }
.social-link { color: var(--text-mute); display: flex; transition: color .18s, transform .18s; }
.social-link:hover { color: var(--purple-500); transform: translateY(-2px); }
.foot-wordmark {
  position: absolute; left: 50%; bottom: -.12em; transform: translateX(-50%); z-index: 0;
  font-family: var(--display); font-weight: 700; font-size: clamp(120px, 26vw, 460px);
  line-height: .72; letter-spacing: -.055em; text-align: center; white-space: nowrap;
  user-select: none; pointer-events: none;
  background: linear-gradient(180deg, var(--purple-200), transparent 66%);
  -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .5;
}
[data-theme="dark"] .foot-wordmark { background: linear-gradient(180deg, rgba(139,120,255,.14), transparent 66%); -webkit-background-clip: text; background-clip: text; opacity: .9; }
.foot-top, .foot-bottom { position: relative; z-index: 1; }
.meta-bar { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--text-mute); margin-top: 12px; justify-content: center; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .form-lab, .why-block, .pinned { grid-template-columns: 1fr; }
  .form-lab-nav { display: flex; gap: 4px; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--border); padding: 10px; }
  .form-lab-nav button { width: auto; white-space: nowrap; }
  .why-block { gap: 28px; }
  .why-block:nth-child(even) .why-visual { order: 0; }
  .pinned-visual { position: static; }
  .device { transform: none; animation: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid, .loop, .stat-band { grid-template-columns: 1fr 1fr; }
  .story, .collect-grid, .features-grid, .card-grid, .gallery-grid, .related, .sol-steps, .setup-grid { grid-template-columns: 1fr 1fr; }
  .float-tag { display: none; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 20px; }
  .hero { padding-top: 40px; }
  .hero-ctas, .icp-switch { justify-content: flex-start; }
  .proof-grid { grid-template-columns: 1fr; }
  .device-screen { min-height: 320px; }
  .pricing-grid, .loop, .story, .collect-grid, .features-grid, .card-grid, .gallery-grid, .related, .w-carousel, .w-videos, .stat-band, .sol-steps, .setup-grid { grid-template-columns: 1fr; }
  .w-wall { columns: 1; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .why-word { font-size: clamp(38px, 12vw, 60px); }
  .app-kpis, .app-widgrid { grid-template-columns: 1fr; }
  .app-funnel { flex-direction: column; gap: 2px; }
  .app-funnel-arrow { transform: rotate(90deg); padding: 0; }
  .app-wallgrid { columns: 1; }
}
