/* landing.css — fresh-white design system.
   Pure white canvas, two accents (iris violet #6C4DFF + mint #00D4A6),
   glassy designer containers with gradient hairlines, aurora ambience,
   rotating hero role-word, chat vignettes, animated counters.
   The product still lives INSIDE the hero (device + try-my-site flow). */
:root {
  --bg: #ffffff;
  --ink: #0b0d17;              /* cool near-black */
  --ink-soft: #5a6072;
  --hairline: rgba(11,13,23,.08);
  --vio: #6c4dff;              /* accent 1 — iris violet */
  --vio-deep: #5636e8;
  --mint: #00d4a6;             /* accent 2 — fresh mint */
  --mint-deep: #00a37f;
  --grad: linear-gradient(92deg, var(--vio), #2ea9e8 52%, var(--mint));
  --tint-vio: #f2eeff;
  --tint-mint: #e6faf4;
  --soft: #f6f7fb;
  --dark: #0b0d17;
  --ok: #0aa570;
  --r-panel: 36px;
  --r-card: 22px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", Tahoma, Arial, sans-serif;
  /* compat aliases (signup.html + older inline styles) */
  --paper: #ffffff;
  --fill: #f2f4f9;
  --gray: #9aa0b4;
  --gray2: #5a6072;
  --blue: var(--vio);
  --accent: var(--vio);
  --accent2: var(--mint);
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
/* aurora ambience: two soft accent glows breathing behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(720px 480px at 82% -6%, rgba(108,77,255,.10), transparent 62%),
    radial-gradient(640px 460px at -8% 26%, rgba(0,212,166,.09), transparent 62%),
    radial-gradient(540px 420px at 105% 62%, rgba(108,77,255,.06), transparent 60%);
  animation: aurora-drift 26s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%,1.5%,0) scale(1.05); }
}
h1, h2, h3 { letter-spacing: -.03em; line-height: 1.05; font-weight: 800; }
a { color: var(--vio); text-decoration: none; }
.wrap { max-width: 1140px; margin-inline: auto; padding-inline: 20px; }
.grad, .hero h1 .grad, .frame-placeholder .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- motion: reveal rises out of a blur ---------- */
.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s cubic-bezier(.22,.7,.3,1), transform .8s cubic-bezier(.22,.7,.3,1), filter .8s ease; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; filter: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- mobile intro splash: logo loading screen ---------- */
.intro-splash {
  position: fixed; inset: 0; z-index: 200; background: #fff;
  display: grid; place-items: center; transition: opacity .55s ease;
}
.intro-splash .splash-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.intro-splash img { height: 52px; width: auto; animation: splash-breathe 1.6s ease-in-out infinite; }
@keyframes splash-breathe { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .85; } }
.intro-splash .splash-bar { width: 148px; height: 4px; border-radius: 99px; background: rgba(11,13,23,.06); overflow: hidden; }
.intro-splash .splash-bar i { display: block; height: 100%; width: 40%; border-radius: 99px;
  background: linear-gradient(90deg, var(--vio), #2ea9e8, var(--mint));
  animation: splash-slide 1.1s cubic-bezier(.4,.2,.4,.9) infinite; }
@keyframes splash-slide { 0% { transform: translateX(-110%); } 100% { transform: translateX(380%); } }
.intro-splash.done { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .intro-splash img, .intro-splash .splash-bar i { animation: none; } }
body:has(.intro-splash:not(.done)) [data-concierge-widget] { visibility: hidden; }

/* ---------- nav: white glass bar ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.7); backdrop-filter: blur(20px) saturate(1.7);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--hairline); background: rgba(255,255,255,.85); }
.nav-inner { position: relative; display: flex; align-items: center; gap: 26px; height: 64px; }
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; display: block; }
.nav-center { position: absolute; inset-inline: 0; margin-inline: auto; width: max-content; display: flex; gap: 4px; align-items: center; }
.nav-center a { color: var(--ink); font-weight: 600; font-size: .89rem; opacity: .75; padding: 8px 13px; border-radius: 980px; transition: opacity .2s ease, background .2s ease; }
.nav-center a:hover { opacity: 1; background: var(--tint-vio); }
.nav-links { display: flex; gap: 18px; margin-inline-start: auto; align-items: center; }
.nav-links a:not(.btn) { color: var(--ink); font-weight: 600; font-size: .89rem; opacity: .75; }
.nav-links a:not(.btn):hover { opacity: 1; }
#langToggle { min-width: 22px; text-align: center; }

/* hamburger (mobile only) + dropdown menu */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px; cursor: pointer;
  background: transparent; border: none; border-radius: 12px;
}
.nav-burger span { display: block; height: 2.5px; border-radius: 3px; background: var(--ink); transition: transform .28s cubic-bezier(.3,1.2,.4,1), opacity .2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-menu { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: #fff; font: inherit; font-weight: 700; font-size: .95rem;
  border: none; border-radius: 980px; padding: 12px 24px; cursor: pointer; letter-spacing: -.01em;
  box-shadow: 0 1px 2px rgba(11,13,23,.2);
  transition: transform .18s cubic-bezier(.3,1.4,.4,1), box-shadow .18s ease, background .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,13,23,.22); }
.btn:active { transform: translateY(0) scale(.97); box-shadow: 0 1px 2px rgba(11,13,23,.2); }
.btn.big { padding: 15px 30px; font-size: 1.04rem; }
.btn.dark { background: var(--ink); }
/* gradient CTA — main conversion buttons */
.btn.grad {
  background: linear-gradient(120deg, var(--vio), var(--vio-deep) 45%, var(--mint) 130%);
  background-size: 160% 160%;
  box-shadow: 0 2px 6px rgba(108,77,255,.35), 0 12px 30px rgba(108,77,255,.25);
}
.btn.grad:hover { background-position: 85% 50%; box-shadow: 0 4px 10px rgba(108,77,255,.4), 0 16px 40px rgba(108,77,255,.32); }
.btn.ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--hairline); box-shadow: none; }
.btn.ghost:hover { border-color: var(--vio); color: var(--vio); box-shadow: 0 8px 20px rgba(108,77,255,.12); }
.btn:disabled { opacity: .5; cursor: default; transform: none; }

/* ---------- hero ---------- */
.hero { padding: 0; text-align: center; overflow: hidden; }
.hero-head { position: relative; padding: 132px 0 8px; }
#heroFx { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--vio); background: rgba(255,255,255,.8); border: 1px solid rgba(108,77,255,.25);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 980px; padding: 8px 16px; margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(108,77,255,.08), 0 8px 24px rgba(108,77,255,.08);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(0,212,166,.18); animation: pulse 1.6s infinite; }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 4.8rem); margin: 0 auto 20px; max-width: 18ch; }
/* the rotating role word — the pitch itself */
.roleline { display: inline-block; }
.roleword { display: inline-block; will-change: transform, opacity, filter;
  transition: transform .38s cubic-bezier(.3,1.2,.4,1), opacity .32s ease, filter .32s ease; 
height: 105px;}
@media (max-width: 560px) {
  .hero h1 {
    .roleword { display: inline-block; will-change: transform, opacity, filter;
  transition: transform .38s cubic-bezier(.3,1.2,.4,1), opacity .32s ease, filter .32s ease; 
height: 50px;}
  }
}
.roleword.swap { opacity: 0; transform: translateY(.55em) scale(.97); filter: blur(8px); transition-duration: .26s; }
.hero .sub { font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--ink-soft); max-width: 640px; margin: 0 auto 34px; letter-spacing: -.012em; }
.hero .sub b { color: var(--ink); font-weight: 700; }
.hero .sub .grad { font-weight: 800; }

/* try box: glass pill with a crisp 5px GLOWING gradient frame around it */
.trybox {
  position: relative;
  display: flex; gap: 8px; max-width: 580px; margin: 0 auto 12px; padding: 8px;
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1.5px solid var(--hairline); border-radius: 980px;
  box-shadow: 0 2px 4px rgba(11,13,23,.05), 0 22px 54px rgba(11,13,23,.10);
  transition: border-color .25s ease, box-shadow .25s ease;
}
/* the frame: a 5px gradient RING (hollow, masked) that flows and softly glows */
.trybox::before {
  content: ""; position: absolute; inset: -7px; border-radius: 999px; padding: 5px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--vio), #2ea9e8, var(--mint), #2ea9e8, var(--vio));
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: try-frame 4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(108,77,255,.5));
}
@keyframes try-frame { to { background-position: 300% 0; } }
.trybox:focus-within { border-color: var(--vio);
  box-shadow: 0 0 0 2px rgba(108,77,255,.25), 0 22px 60px rgba(108,77,255,.15); }
@media (prefers-reduced-motion: reduce) { .trybox::before { animation: none; } }
.trybox input { flex: 1; border: none; font: inherit; font-size: 1.03rem; padding: 9px 8px 9px 20px; color: var(--ink); background: transparent; min-width: 0; }
[dir="rtl"] .trybox input { padding: 9px 20px 9px 8px; }
.trybox input::placeholder { color: var(--ink); opacity: .85; }
.trybox input:focus { outline: none; }
.trybox .btn { white-space: nowrap; }
.try-note { font-size: .84rem; color: var(--ink-soft); }
.try-status { min-height: 24px; font-size: .95rem; font-weight: 700; color: var(--vio); margin-top: 10px; }
.try-status.err { color: #d0350f; }
@keyframes pulse { 50% { opacity: .35; } }

/* ---- the product IS the hero: device flips between desktop + phone ---- */
.hero-frame-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; margin: 42px auto 0; padding: 0 20px 30px; }

.device-toggle {
  display: inline-flex; gap: 4px; margin-bottom: 24px; padding: 5px;
  background: rgba(255,255,255,.85); border: 1.5px solid var(--hairline); border-radius: 980px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(11,13,23,.06);
}
.device-toggle button {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  border: none; background: transparent; color: var(--ink-soft);
  font: inherit; font-size: .9rem; font-weight: 700; letter-spacing: -.01em;
  padding: 8px 18px; border-radius: 980px; transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.device-toggle button span:first-child { font-size: 1rem; }
.device-toggle button.on { background: var(--ink); color: #fff; box-shadow: 0 4px 12px rgba(11,13,23,.25); }

.device { position: relative; max-width: 100%; }
/* accent glow bloom behind the device */
.device::before {
  content: ""; position: absolute; inset: -8% -6%; z-index: -1; border-radius: 50%;
  background: radial-gradient(60% 55% at 50% 32%, rgba(108,77,255,.30), rgba(0,212,166,.20) 48%, transparent 72%);
  filter: blur(48px);
  animation: bloom 6s ease-in-out infinite;
}
@keyframes bloom { 0%,100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }
.device-screen {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, rgba(108,77,255,.06), transparent 60%), #fff;
}
.hero-frame-wrap iframe { width: 100%; height: 100%; border: none; display: block; background: #fff; }
.frame-placeholder { position: relative; width: 100%; height: 100%; display: grid; place-items: center; text-align: center; padding: 26px 22px; overflow: hidden; background:
  radial-gradient(120% 90% at 50% 0%, rgba(108,77,255,.06), transparent 60%), #fff; }
.fp-idle p { font-size: 1.72rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin: 0; }

/* ===== MOBILE mode: iPhone mockup (~9 : 19.5) ===== */
.show-mobile .device {
  height: 80vh; width: auto; aspect-ratio: 9 / 19.5;
  padding: 13px; border-radius: 62px;
  background: linear-gradient(150deg, #3a3a3e 0%, #1c1c1f 42%, #2c2c30 100%);
  box-shadow: 0 40px 90px rgba(11,13,23,.30), 0 12px 30px rgba(11,13,23,.15),
    inset 0 0 0 2px rgba(255,255,255,.06), inset 0 0 0 5px #0b0b0d;
}
/* padding-top keeps the embedded site clear of the Dynamic Island cutout */
.show-mobile .device-screen { border-radius: 50px; padding-top: 62px; }
.show-mobile .device-bar { display: none; }
.device-island {
  display: none; position: absolute; top: 24px; left: 50%; transform: translateX(-50%); z-index: 6;
  width: 108px; height: 31px; border-radius: 20px; background: #050507; box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.show-mobile .device-island { display: block; }

/* ===== DESKTOP mode: landscape browser window (~16 : 10) ===== */
.show-desktop .device {
  width: 1000px; aspect-ratio: 16 / 10;
  padding: 0; border-radius: 16px; overflow: hidden;
  background: #fff; border: 1px solid var(--hairline);
  box-shadow: 0 40px 90px rgba(11,13,23,.22), 0 12px 30px rgba(11,13,23,.10);
}
.show-desktop .device-island { display: none; }
.show-desktop .device-bar {
  display: flex; align-items: center; gap: 12px; height: 46px; padding: 0 16px;
  background: #f5f6fa; border-bottom: 1px solid var(--hairline);
}
.device-bar { display: none; }
.device-bar .bdots { display: inline-flex; gap: 7px; }
.device-bar .bdots i { width: 11px; height: 11px; border-radius: 50%; }
.device-bar .bdots i:nth-child(1) { background: #ff5f57; }
.device-bar .bdots i:nth-child(2) { background: #febc2e; }
.device-bar .bdots i:nth-child(3) { background: #28c840; }
.device-bar .burl {
  flex: 1; max-width: 420px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--hairline); border-radius: 8px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  padding: 6px 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.show-desktop .device-screen { border-radius: 0; height: calc(100% - 46px); }
.show-desktop .fp-idle p { font-size: clamp(1.8rem, 2.6vw, 2.6rem); }

/* ---- satisfying in-frame building state ---- */
.fp-building { display: none; flex-direction: column; align-items: center; gap: 22px; width: 100%; max-width: 440px; }
.frame-placeholder.building .fp-idle { display: none; }
.frame-placeholder.building .fp-building { display: flex; }

/* scanning sweep across the whole frame */
.fp-scan { position: absolute; inset-inline: 0; top: 0; height: 130px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(108,77,255,.10) 45%, rgba(0,212,166,.13) 55%, transparent);
  filter: blur(2px); animation: fp-scan 2.6s cubic-bezier(.5,0,.5,1) infinite; }
@keyframes fp-scan { 0% { transform: translateY(-140px); } 100% { transform: translateY(880px); } }

/* breathing gradient orb with rotating ring */
.fp-orb { position: relative; width: 108px; height: 108px; display: grid; place-items: center; }
.fp-orb::before { content: ""; position: absolute; inset: -10px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--vio), #2ea9e8, var(--mint), #2ea9e8, var(--vio));
  animation: fp-spin 2.6s linear infinite; filter: blur(7px); opacity: .55; }
.fp-orb-core { position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, #fff6, transparent 45%), linear-gradient(150deg, var(--vio), #2ea9e8 55%, var(--mint));
  box-shadow: 0 14px 40px rgba(108,77,255,.4); animation: fp-breathe 1.8s ease-in-out infinite; }
.fp-orb-glyph { position: relative; z-index: 1; font-size: 40px; animation: fp-breathe 1.8s ease-in-out infinite; }
@keyframes fp-spin { to { transform: rotate(360deg); } }
@keyframes fp-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.fp-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }

/* steps: ticks fill in as work completes */
.fp-steps { display: flex; flex-direction: column; gap: 12px; align-items: stretch; width: 100%; }
.fp-steps div { display: flex; align-items: center; gap: 12px; font-size: .98rem; font-weight: 600; color: #a9aec0;
  padding: 11px 16px; border-radius: 14px; background: transparent; transition: background .4s ease, color .4s ease; }
.fp-steps .tick { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #e3e6ef; position: relative; transition: border-color .35s ease, background .35s ease; }
.fp-steps div.on { color: var(--ink); background: rgba(108,77,255,.07); }
.fp-steps div.on .tick { border-color: var(--vio); border-top-color: transparent; animation: fp-spin .7s linear infinite; }
.fp-steps div.done { color: var(--ink); }
.fp-steps div.done .tick { border-color: var(--mint); background: var(--mint); animation: fp-pop .35s cubic-bezier(.3,1.6,.4,1); }
.fp-steps div.done .tick::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 900; }
@keyframes fp-pop { 0% { transform: scale(.4); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }

/* gradient progress bar */
.fp-bar { width: 100%; height: 6px; border-radius: 99px; background: rgba(11,13,23,.06); overflow: hidden; }
.fp-bar i { display: block; height: 100%; width: 6%; border-radius: 99px;
  background: linear-gradient(90deg, var(--vio), #2ea9e8, var(--mint), #2ea9e8, var(--vio)); background-size: 200% 100%;
  transition: width .6s cubic-bezier(.4,.1,.3,1); animation: fp-shimmer 1.6s linear infinite; }
@keyframes fp-shimmer { to { background-position: 200% 0; } }

/* legacy external steps/loader — replaced by the in-frame state */
.try-steps, .try-loader { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .fp-scan, .fp-orb::before, .fp-orb-core, .fp-orb-glyph, .fp-bar i, .fp-steps div.on .tick, body::before, .device::before { animation: none !important; }
}
.frame-hint { text-align: center; margin-top: 18px; font-size: .95rem; color: var(--ink-soft); font-weight: 500; }
.frame-hint b { color: var(--ink); }
.frame-hint .livechip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--hairline); border-radius: 980px; padding: 4px 12px; font-size: .78rem; font-weight: 700; color: var(--ink); margin-inline-end: 8px; }
.frame-hint .livechip i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 1.4s infinite; }

/* ---- platform marquee: "works everywhere" strip at the hero's foot ---- */
.marquee { position: relative; margin: 30px auto 0; padding: 18px 0 46px; max-width: 900px; overflow: hidden; direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }
.marq-track { display: flex; gap: 14px; width: max-content; animation: marq 26s linear infinite; }
.marquee:hover .marq-track { animation-play-state: paused; }
.marq-track span {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .86rem; letter-spacing: -.01em; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--hairline); border-radius: 980px; padding: 9px 18px;
  box-shadow: 0 1px 2px rgba(11,13,23,.04);
}
.marq-track span::before { content: "✓"; color: var(--mint-deep); font-weight: 800; }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marq-track { animation: none; } }

/* ---------- sections: airy panels on white ---------- */
.panel-sec { padding: 14px 0; }
.panel { position: relative; border-radius: var(--r-panel); padding: clamp(48px, 7vw, 88px) clamp(22px, 5vw, 72px); }
/* tinted panels get a gradient hairline frame */
.panel.soft { background: var(--soft); }
.panel.tint-v { background: linear-gradient(180deg, #f4f1ff, #fdfcff); }
.panel.tint-m { background: linear-gradient(180deg, #e9fbf5, #fbfffd); }
.panel.plain { background: #fff; border: 1.5px solid var(--hairline); }
.panel.dark { background: radial-gradient(120% 130% at 80% -10%, #221a4e, transparent 55%), radial-gradient(110% 120% at -10% 110%, #063d33, transparent 50%), var(--ink); color: #b9bdcc; }
.panel.soft::before, .panel.tint-v::before, .panel.tint-m::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, rgba(108,77,255,.28), rgba(11,13,23,.05) 38%, rgba(0,212,166,.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
/* legacy panel color aliases */
.panel.lav { background: linear-gradient(180deg, #f4f1ff, #fdfcff); }
.panel.sky { background: var(--soft); }
.panel.mint { background: linear-gradient(180deg, #e9fbf5, #fbfffd); }
.panel.peach { background: var(--soft); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: 14px; }
.sec-head p { font-size: 1.08rem; color: var(--ink-soft); letter-spacing: -.012em; }
.panel.dark .sec-head h2 { color: #fff; }
.panel.dark .sec-head p { color: #a6abbe; }
.sec-head .eyebrow { margin-bottom: 18px; }

/* ---------- roles: three hires, one bubble ---------- */
.roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; align-items: stretch; }
.role-card {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  background: #fff; border-radius: var(--r-card); padding: 26px 24px 24px;
  box-shadow: 0 1px 2px rgba(11,13,23,.05), 0 16px 40px rgba(11,13,23,.06);
  transition: transform .35s cubic-bezier(.3,1.2,.4,1), box-shadow .35s ease;
}
.role-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(150deg, var(--rc, var(--vio)), rgba(11,13,23,.06) 45%, var(--rc2, var(--mint)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55; transition: opacity .35s ease;
}
.role-card:hover { transform: translateY(-7px) rotate(-.4deg); box-shadow: 0 2px 4px rgba(11,13,23,.05), 0 28px 60px rgba(11,13,23,.12); }
.role-card:hover::before { opacity: 1; }
.role-card[data-role="sales"]   { --rc: var(--vio);  --rc2: var(--vio);  --rt: var(--tint-vio);  --rd: var(--vio-deep); }
.role-card[data-role="support"] { --rc: var(--mint); --rc2: var(--mint); --rt: var(--tint-mint); --rd: var(--mint-deep); }
.role-card[data-role="reception"] { --rc: var(--vio); --rc2: var(--mint); --rt: #f0f6ff; --rd: #2f7fd6; }
.role-head { display: flex; align-items: center; gap: 13px; }
.role-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; font-size: 22px;
  background: var(--rt); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--rd) 22%, transparent); }
.role-head h3 { font-size: 1.14rem; letter-spacing: -.02em; margin: 0; }
.role-head small { display: block; color: var(--rd); font-weight: 700; font-size: .78rem; letter-spacing: .01em; }
/* the chat vignette — show, don't tell */
.vg { display: flex; flex-direction: column; gap: 7px; background: var(--soft); border-radius: 16px; padding: 14px; }
.vgb { max-width: 88%; padding: 9px 13px; border-radius: 15px; font-size: .86rem; line-height: 1.4; letter-spacing: -.01em;
  opacity: 0; transform: translateY(10px) scale(.97); }
.vgb.u { align-self: flex-end; background: var(--ink); color: #fff; border-end-end-radius: 5px; }
.vgb.a { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--hairline); border-end-start-radius: 5px; box-shadow: 0 2px 8px rgba(11,13,23,.05); }
[dir="rtl"] .vgb.u { border-end-end-radius: 15px; border-end-start-radius: 5px; }
[dir="rtl"] .vgb.a { border-end-start-radius: 15px; border-end-end-radius: 5px; }
.vchip { align-self: center; margin-top: 3px; display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 800; color: var(--mint-deep);
  background: var(--tint-mint); border: 1px solid rgba(0,212,166,.3); border-radius: 980px; padding: 5px 12px;
  opacity: 0; transform: translateY(10px) scale(.97); }
.role-card.in .vgb, .role-card.in .vchip { animation: vg-pop .5s cubic-bezier(.3,1.3,.4,1) forwards; }
.role-card.in .vgb:nth-child(1) { animation-delay: .25s; }
.role-card.in .vgb:nth-child(2) { animation-delay: .75s; }
.role-card.in .vchip { animation-delay: 1.3s; }
@keyframes vg-pop { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .vgb, .vchip { opacity: 1; transform: none; animation: none !important; } }
.role-p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.roles-foot { text-align: center; margin-top: 34px; font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
.roles-foot b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- video ---------- */
.video-shell { position: relative; max-width: 860px; margin-inline: auto; border-radius: 26px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(11,13,23,.14), 0 30px 70px rgba(108,77,255,.22); aspect-ratio: 16/9;
  background: radial-gradient(120% 140% at 85% -20%, #3a2c86, transparent 55%), radial-gradient(110% 130% at 0% 120%, #06584a, transparent 55%), #0b0d17; }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; text-align: center; cursor: pointer; }
.video-poster .play { position: relative; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center; margin: 0 auto 16px; transition: transform .3s cubic-bezier(.3,1.4,.4,1); }
.video-poster .play::before { content: ""; position: absolute; inset: -1.5px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); animation: cw-ring 2.2s ease-out infinite; }
@keyframes cw-ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }
.video-poster:hover .play { transform: scale(1.1); }
.video-poster .play svg { width: 28px; height: 28px; fill: #fff; margin-inline-start: 4px; }
.video-poster p { opacity: .85; font-size: .95rem; font-weight: 600; }

/* ---------- how it works: numbered cards ---------- */
.hiw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; counter-reset: hiw; }
.hiw-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 28px 24px;
  box-shadow: 0 1px 2px rgba(11,13,23,.04);
  transition: transform .3s cubic-bezier(.3,1.2,.4,1), box-shadow .3s ease; }
.hiw-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 18px 40px rgba(108,77,255,.14); }
.hiw-card .num { width: 40px; height: 40px; border-radius: 13px; color: #fff; font-weight: 800;
  background: linear-gradient(140deg, var(--vio), var(--vio-deep));
  box-shadow: 0 6px 16px rgba(108,77,255,.35);
  display: grid; place-items: center; font-size: .95rem; margin-bottom: 16px; }
.hiw-card:nth-child(even) .num { background: linear-gradient(140deg, var(--mint), var(--mint-deep)); box-shadow: 0 6px 16px rgba(0,212,166,.3); }
.hiw-card h3 { font-size: 1.08rem; margin-bottom: 8px; letter-spacing: -.02em; }
.hiw-card p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- problem: glowing stats on the dark panel ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.pain { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-card); padding: 34px 28px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .3s cubic-bezier(.3,1.2,.4,1), border-color .3s ease, background .3s ease; }
.pain:hover { transform: translateY(-6px) rotate(.35deg); border-color: rgba(108,77,255,.5); background: rgba(255,255,255,.07); }
.pain .stat { font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(120deg, #b7a6ff, #6ee7cc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pain .stat small { font-size: 1.3rem; }
.pain h3 { font-size: 1.02rem; margin: 12px 0 8px; letter-spacing: -.015em; color: #fff; }
.pain p { font-size: .9rem; color: #a6abbe; }

/* ---------- solution: editorial feature rows ---------- */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4.5vw, 64px); align-items: center; margin-bottom: 84px; }
.feature:last-child { margin-bottom: 0; }
.feature.flip .shot { order: 2; }
.feature.flip .feature-copy { order: 1; }
.feature-copy .eyebrow { margin-bottom: 14px; }
.feature-copy h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 12px; letter-spacing: -.025em; }
.feature-copy p { font-size: 1rem; color: var(--ink-soft); letter-spacing: -.01em; }
.feature-copy ul { padding: 0; list-style: none; margin-top: 16px; }
.feature-copy li { padding: 6px 0; font-size: .93rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.feature-copy li::before { content: "✓"; color: var(--mint-deep); font-weight: 800; flex: 0 0 auto; }
.shot { position: relative; margin: 0; background: #fff; border-radius: var(--r-card); overflow: hidden;
  box-shadow: 0 2px 4px rgba(11,13,23,.06), 0 26px 60px rgba(11,13,23,.14);
  transition: transform .4s cubic-bezier(.3,1.2,.4,1), box-shadow .4s ease; }
.shot::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(150deg, rgba(108,77,255,.4), transparent 40%, rgba(0,212,166,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.shot:hover { transform: translateY(-6px) rotate(-.35deg); box-shadow: 0 3px 6px rgba(11,13,23,.06), 0 34px 74px rgba(108,77,255,.2); }
.shot-bar { display: flex; gap: 6px; padding: 11px 14px; background: #f5f6fa; border-bottom: 1px solid var(--hairline); }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; }
.shot-bar i:nth-child(1) { background: #ff5f57; } .shot-bar i:nth-child(2) { background: #febc2e; } .shot-bar i:nth-child(3) { background: #28c840; }
.shot img { display: block; width: 100%; height: auto; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
  .feature.flip .shot { order: 0; }
  .feature.flip .feature-copy { order: 1; }
}

/* ---------- pricing: ONE plan card + voice add-on pills ---------- */
.plan-hero { max-width: 920px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.cycle-toggle {
  display: inline-flex; gap: 4px; margin-bottom: 26px; padding: 5px;
  background: #fff; border: 1.5px solid var(--hairline); border-radius: 980px;
  box-shadow: 0 2px 12px rgba(11,13,23,.06);
}
.cycle-toggle button {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: none; background: transparent; color: var(--ink-soft);
  font: inherit; font-size: .92rem; font-weight: 700; letter-spacing: -.01em;
  padding: 9px 20px; border-radius: 980px; transition: background .25s ease, color .25s ease;
}
.cycle-toggle button.on { background: var(--ink); color: #fff; }
.cycle-toggle button em { font-style: normal; font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 980px;
  background: var(--tint-mint); color: var(--mint-deep); }
.cycle-toggle button.on em { background: rgba(0,212,166,.25); color: #9ff2dc; }

.plan-card-xl {
  position: relative; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px);
  background: #fff; border-radius: 30px; padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 2px 6px rgba(11,13,23,.05), 0 30px 70px rgba(108,77,255,.14);
}
.plan-card-xl::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px; pointer-events: none;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 10px; }
.plan-price b { font-size: clamp(3rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -.045em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan-price span { color: var(--ink-soft); font-weight: 700; font-size: 1.05rem; }
.plan-desc { color: var(--ink-soft); font-size: .98rem; letter-spacing: -.01em; margin-bottom: 16px; }
.plan-feats { list-style: none; padding: 0; margin: 0; }
.plan-feats li { padding: 5px 0; font-size: .92rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.plan-feats li::before { content: "✓"; color: var(--mint-deep); font-weight: 800; flex: 0 0 auto; }

.plan-right { display: flex; flex-direction: column; gap: 12px; justify-content: center;
  background: var(--soft); border-radius: 22px; padding: clamp(20px, 3vw, 30px); }
.voice-label { font-weight: 800; font-size: .95rem; letter-spacing: -.01em; }
.voice-pills { display: flex; flex-direction: column; gap: 8px; }
.voice-pills button {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font: inherit; font-size: .9rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink);
  background: #fff; border: 1.5px solid var(--hairline); border-radius: 980px;
  padding: 11px 18px; cursor: pointer; text-align: start;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.voice-pills button small { color: var(--ink-soft); font-weight: 600; }
.voice-pills button:hover { border-color: var(--vio); transform: translateY(-1px); }
.voice-pills button.on { border-color: transparent; box-shadow: 0 0 0 2px var(--vio), 0 10px 24px rgba(108,77,255,.18); }
.voice-pills button.on small { color: var(--vio); font-weight: 800; }
.plan-total { display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  border-top: 1.5px solid var(--hairline); padding-top: 14px; margin-top: 4px; }
.plan-total span { font-weight: 700; color: var(--ink-soft); font-size: .92rem; }
.plan-total b { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; }
.plan-total b small { font-size: .95rem; color: var(--ink-soft); font-weight: 700; }
.plan-billed { min-height: 18px; font-size: .82rem; text-align: end; }
.muted2 { color: var(--ink-soft); }
.plan-note2 { font-size: .8rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 820px) {
  .plan-card-xl { grid-template-columns: 1fr; }
}

/* ---------- pricing (legacy tier cards kept for signup step 2 shell) ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 16px; max-width: 980px; margin-inline: auto; align-items: stretch; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--hairline); border-radius: 24px; padding: 34px 28px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(11,13,23,.04);
  transition: transform .3s cubic-bezier(.3,1.2,.4,1), box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(11,13,23,.12); }
.price-card.popular { background: radial-gradient(130% 120% at 85% -10%, #2c2168, transparent 55%), radial-gradient(120% 130% at -10% 115%, #06463a, transparent 50%), var(--ink); color: #c3c7d6; border: none; }
.price-card.popular::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.price-card.popular:hover { box-shadow: 0 26px 60px rgba(108,77,255,.32); }
.price-card.popular h3, .price-card.popular .amount b { color: #fff; }
.price-card.popular li { color: #c3c7d6; }
.price-card.popular .usd { color: #8b90a5; }
.pop-badge { position: absolute; top: 20px; inset-inline-end: 20px; background: var(--grad); color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .07em; padding: 6px 13px; border-radius: 980px; box-shadow: 0 4px 14px rgba(108,77,255,.4); }
.price-card h3 { font-size: 1.25rem; letter-spacing: -.02em; }
.price-card .amount { margin: 16px 0 2px; display: flex; align-items: baseline; gap: 7px; }
.price-card .amount b { font-size: 2.9rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.price-card .amount span { color: var(--ink-soft); font-size: .9rem; }
.price-card.popular .amount span { color: #8b90a5; }
.price-card .usd { font-size: .8rem; color: var(--ink-soft); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-card li { padding: 6px 0; font-size: .91rem; display: flex; gap: 9px; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.price-card li::before { content: "✓"; color: var(--mint-deep); font-weight: 800; }
.price-card.popular li::before { color: var(--mint); }
.price-card .btn { width: 100%; }
.price-card.popular .btn.ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.setup-note { text-align: center; margin-top: 28px; font-size: .86rem; color: var(--ink-soft); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--hairline); border-radius: 16px; padding: 0 20px; transition: box-shadow .25s ease, border-color .25s ease; }
.faq-item[open] { border-color: rgba(108,77,255,.35); box-shadow: 0 12px 30px rgba(108,77,255,.1); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 0; font-weight: 700; font-size: 1rem; letter-spacing: -.015em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; background: var(--tint-vio); color: var(--vio); font-weight: 800; transition: transform .25s ease; }
.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq-item p { color: var(--ink-soft); font-size: .94rem; line-height: 1.6; margin: 0; padding: 0 0 16px; }

/* ---------- blog ---------- */
.blog-wrap { max-width: 860px; margin-inline: auto; padding: 120px 20px 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 34px; }
.blog-card { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 24px; text-decoration: none; color: var(--ink);
  transition: transform .3s cubic-bezier(.3,1.2,.4,1), box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(108,77,255,.14); }
.blog-card .tag { align-self: flex-start; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: var(--vio); background: var(--tint-vio); border-radius: 980px; padding: 4px 11px; }
.blog-card h2 { font-size: 1.12rem; letter-spacing: -.02em; line-height: 1.3; }
.blog-card p { color: var(--ink-soft); font-size: .89rem; margin: 0; }
.blog-card .read { margin-top: auto; font-weight: 700; font-size: .85rem; color: var(--vio); }
.post { max-width: 760px; margin-inline: auto; padding: 120px 20px 80px; }
.post h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); letter-spacing: -.03em; line-height: 1.12; margin-bottom: 14px; }
.post .post-meta { color: var(--ink-soft); font-size: .88rem; margin-bottom: 28px; }
.post h2 { font-size: 1.4rem; margin: 34px 0 12px; letter-spacing: -.02em; }
.post p, .post li { color: #3a3f52; font-size: 1rem; line-height: 1.75; }
.post p { margin: 0 0 16px; }
.post ul, .post ol { padding-inline-start: 22px; margin: 0 0 16px; }
.post li { margin-bottom: 8px; }
.post strong { color: var(--ink); }
.post .cta-box { background: var(--soft); border: 1px solid var(--hairline); border-radius: 20px; padding: 26px; text-align: center; margin: 36px 0 0; }
.post .cta-box b { display: block; font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -.02em; }
.post .cta-box p { margin-bottom: 16px; }

/* ---------- CTA + footer ---------- */
.cta { position: relative; overflow: hidden; background: radial-gradient(120% 150% at 80% -20%, #2c2168, transparent 55%), radial-gradient(120% 140% at 10% 130%, #06463a, transparent 55%), var(--ink);
  color: #a6abbe; text-align: center; border-radius: var(--r-panel); padding: clamp(56px, 8vw, 92px) 30px; }
.cta::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, rgba(108,77,255,.6), transparent 40%, rgba(0,212,166,.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.cta h2 .grad { background: linear-gradient(92deg, #b7a6ff, #6ee7cc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta p { max-width: 520px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta .btn { background: #fff; color: var(--ink); box-shadow: 0 2px 0 rgba(0,0,0,.35); }
footer { padding: 40px 0 48px; font-size: .85rem; color: var(--ink-soft); }
.foot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }

@media (max-width: 720px) {
  .nav-center { display: none; }
  .nav-links a:not(.btn) { display: none; }
  .nav-burger { display: flex; }
  .logo { position: absolute; inset-inline: 0; margin-inline: auto; width: max-content; }
  .logo img { height: 30px; }
  .nav-links .btn { padding: 9px 16px; font-size: .82rem; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
    background: rgba(255,255,255,.97); padding: 8px 20px 14px;
  }
  .nav-menu a {
    padding: 13px 6px; color: var(--ink); font-weight: 700; font-size: 1rem;
    border-bottom: 1px solid rgba(11,13,23,.06);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu .lang-item { color: var(--ink-soft); }
  #heroFx { display: none; }
  .hero-head { padding-top: 104px; }
  /* the heavy sections become horizontal swipe carousels on phones:
     roles (three hires), how-it-works (four steps), solution features */
  .roles-grid, .hiw-grid, .feature-track {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 12px; padding: 4px 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
            mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
  .roles-grid::-webkit-scrollbar, .hiw-grid::-webkit-scrollbar, .feature-track::-webkit-scrollbar { display: none; }
  .roles-grid > *, .hiw-grid > * { flex: 0 0 87%; scroll-snap-align: center; }
  .feature-track > .feature { flex: 0 0 91%; scroll-snap-align: center; margin-bottom: 0; display: flex; flex-direction: column; gap: 16px; }
  .feature-track .shot img { max-height: 300px; object-fit: cover; object-position: top; }
  /* horizontal slides reveal instantly (IntersectionObserver can't see them) */
  .roles-grid > .reveal, .hiw-grid > .reveal, .feature-track .reveal { opacity: 1; transform: none; filter: none; }
  .roles-grid > .role-card .vgb, .roles-grid > .role-card .vchip { animation: vg-pop .5s cubic-bezier(.3,1.3,.4,1) forwards; }
  /* text safety inside cards */
  .sec-head h2 { overflow-wrap: break-word; }
  .role-p, .hiw-card p, .feature-copy p, .feature-copy li { overflow-wrap: break-word; }
  /* while the demo phone is on screen, the landing's own concierge FAB hides —
     two chat bubbles at once (ours + the demo's) confuses visitors */
  [data-concierge-widget] { transition: opacity .3s ease; }
  body.demo-onscreen [data-concierge-widget] { opacity: 0; visibility: hidden; pointer-events: none; }
  .trybox { flex-direction: column; border-radius: 26px; padding: 10px; }
  /* the glowing frame follows the rounded-rect shape on phones (26px box +
     7px offset = concentric 33px ring) */
  .trybox::before { border-radius: 33px; }
  /* a divider line under the "Enter your website" field on phones */
  .trybox input { text-align: center; padding: 10px; border-bottom: 1.5px solid var(--hairline); margin-bottom: 8px; }
  .trybox input:focus { border-bottom-color: var(--vio); }
  .trybox .btn { width: 100%; }
  .panel { border-radius: 26px; }
  .marquee { padding-bottom: 34px; }
  /* phones only ever show the phone — hide the toggle and force mobile shape */
  .device-toggle { display: none; }
  .show-desktop .device, .show-mobile .device {
    /* 95vh tall, capped so the 9:19.5 shape never overflows the viewport width */
    height: min(95vh, calc(94vw * 19.5 / 9)); width: auto; aspect-ratio: 9 / 19.5; padding: 13px; border: none;
    border-radius: 62px; overflow: visible;
    background: linear-gradient(150deg, #3a3a3e 0%, #1c1c1f 42%, #2c2c30 100%);
    box-shadow: 0 40px 90px rgba(11,13,23,.30), 0 12px 30px rgba(11,13,23,.15),
      inset 0 0 0 2px rgba(255,255,255,.06), inset 0 0 0 5px #0b0b0d;
  }
  .show-desktop .device-screen, .show-mobile .device-screen { border-radius: 50px; height: 100%; padding-top: 62px; }
  .show-desktop .device-bar, .show-mobile .device-bar { display: none; }
  .show-desktop .device-island, .show-mobile .device-island { display: block; }
}

/* the phone becomes the near-full-screen star on mobile */
@media (max-width: 560px) {
  .wrap { padding-inline: 16px; }
  .hero h1 { font-size: clamp(2.2rem, 8.6vw, 3rem); }
  .hero-head { padding-top: 96px; }
  .hero-frame-wrap { margin-top: 30px; padding: 0 12px 16px; }
  .show-desktop .device, .show-mobile .device { height: min(95vh, calc(94vw * 19.5 / 9)); width: auto; padding: 10px; border-radius: 52px; }
  .show-desktop .device-screen, .show-mobile .device-screen { border-radius: 44px; padding-top: 54px; }
  .device-island { top: 20px; width: 96px; height: 28px; }
  .fp-idle p { font-size: 1.5rem; }
  .fp-title { font-size: 1.28rem; }
  .fp-orb { width: 92px; height: 92px; }
  .fp-orb-glyph { font-size: 34px; }
  .fp-steps div { font-size: .9rem; padding: 9px 13px; }
  .frame-hint { font-size: .88rem; }
  .roles-grid { gap: 14px; }
}
