/* =====================================================================
   THINK RECURSIVE — styles
   Dark-first, token-driven. Sections follow index.html order.
   ===================================================================== */

:root {
  --bg: #07080a;
  --bg-2: #0b0c0f;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f4f6;
  --muted: #a1a7b3;
  --dim: #6d7380;
  --accent: #9aa8ff;
  --accent-strong: #b9c2ff;
  --accent-glow: rgba(122, 140, 255, 0.28);
  --wa: #25d366;
  --wa-ink: #04220f;
  --danger: #ff8a8a;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);

  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --nav-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: #0b0c10; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.icon { width: 1.1em; height: 1.1em; flex: none; }
.icon--lg { width: 24px; height: 24px; }
.noscript { position: fixed; inset: auto 16px 16px; padding: 14px; background: #1a1b20; border-radius: 12px; z-index: 300; }

/* ---------- Buttons ---------- */
.btn {
  --h: 44px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--h); padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s, border-color .2s, box-shadow .3s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn--sm { --h: 36px; padding: 0 14px; font-size: 14px; }
.btn--lg { --h: 52px; padding: 0 26px; font-size: 16px; }
.btn--primary { background: var(--text); color: #0a0b0e; }
.btn--primary:hover { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.08), 0 10px 40px -8px var(--accent-glow); }
.btn--primary .icon { transition: transform .2s var(--ease); }
.btn--primary:hover .icon { transform: translateX(3px); }
.btn--ghost { background: var(--surface); border-color: var(--border); color: var(--text); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--border-strong); }
.btn--wa { background: var(--wa); color: var(--wa-ink); font-weight: 600; }
.btn--wa:hover { filter: brightness(1.06); box-shadow: 0 8px 30px -8px rgba(37, 211, 102, .5); }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled, .nav.is-open { background: rgba(7, 8, 10, .72); backdrop-filter: saturate(1.4) blur(18px); -webkit-backdrop-filter: saturate(1.4) blur(18px); border-bottom-color: var(--border); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 13px; letter-spacing: .22em; }
.brand img { width: 28px; height: 28px; }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a { padding: 8px 12px; border-radius: 10px; font-size: 14px; color: var(--muted); transition: color .2s, background-color .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); background: var(--surface); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__toggle { display: none; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), top .3s var(--ease); }
.nav__toggle span:first-child { top: 16px; }
.nav__toggle span:last-child { top: 23px; }
.nav.is-open .nav__toggle span:first-child { top: 19.5px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 19.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; background: rgba(7, 8, 10, .96); backdrop-filter: blur(20px);
  padding: 24px var(--gutter) calc(24px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; justify-content: space-between;
  animation: fadeIn .25s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu__cta { display: grid; gap: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + clamp(40px, 8vh, 96px)) 0 0; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; left: 50%; top: -10%; width: min(1100px, 140vw); aspect-ratio: 1.4; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(122, 140, 255, .20), rgba(122, 140, 255, .06) 45%, transparent 75%);
  filter: blur(10px);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }

@property --sweep { syntax: "<angle>"; inherits: false; initial-value: 360deg; }
.mark { position: relative; width: clamp(84px, 11vw, 116px); aspect-ratio: 480 / 500; margin-bottom: 18px; filter: drop-shadow(0 0 30px rgba(154, 168, 255, .25)); }
.mark img { position: absolute; inset: 0; width: 100%; height: 100%; }
.mark__ring {
  -webkit-mask-image: conic-gradient(from 60deg, #000 var(--sweep), transparent var(--sweep));
  mask-image: conic-gradient(from 60deg, #000 var(--sweep), transparent var(--sweep));
  animation: sweep 1.4s var(--ease) .15s both;
}
.mark__square { animation: pop .7s var(--ease) 1.1s both; }
@keyframes sweep { from { --sweep: 0deg; } to { --sweep: 360deg; } }
@keyframes pop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }

.wordmark { font-size: 13px; letter-spacing: .42em; font-weight: 500; color: var(--muted); margin-bottom: 26px; padding-left: .42em; }
.hero__title { font-size: clamp(38px, 7vw, 84px); font-weight: 600; letter-spacing: -0.045em; line-height: 1.02; max-width: 16ch; }
.hero__title em, .muted-serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero__title em {
  background: linear-gradient(100deg, #fff 10%, var(--accent-strong) 50%, #8fe3d0 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .08em;
}
.muted-serif { color: var(--muted); }
.hero__lead { margin-top: 24px; max-width: 620px; font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); line-height: 1.6; }
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero__meta { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.hero__meta span { font-size: 13.5px; color: var(--muted); padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface); }
.hero__meta b { color: var(--text); font-weight: 600; }
.hero__inner > .hero__meta { animation-delay: .9s; }
.hero__wa { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); transition: color .2s; }
.hero__wa .icon { color: var(--wa); }
.hero__wa:hover { color: var(--text); }

.hero__inner > * { animation: rise .9s var(--ease) both; }
.hero__inner > .wordmark { animation-delay: .5s; }
.hero__inner > .hero__title { animation-delay: .6s; }
.hero__inner > .hero__lead { animation-delay: .72s; }
.hero__inner > .hero__cta { animation-delay: .84s; }
.hero__inner > .hero__wa { animation-delay: .94s; }
.hero__inner > .mark { animation: none; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Price ticker */
.ticker {
  margin-top: clamp(56px, 9vh, 96px); padding: 18px 0; border-block: 1px solid var(--border); overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  animation: fadeIn 1s ease 1.1s both;
}
.ticker__track { display: flex; gap: 12px; width: max-content; animation: marquee 60s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border); font-size: 14px; color: var(--muted); white-space: nowrap; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.ticker__item:hover { color: var(--text); border-color: var(--border-strong); }
.ticker__item b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; position: relative; }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head h2 { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.035em; }
.section__head h2 .muted-serif { font-size: 1.06em; }
.section__lead { margin-top: 16px; color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); max-width: 620px; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.sub-title { font-size: 20px; margin: 72px 0 24px; letter-spacing: -0.02em; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Card base with cursor glow */
.card-glow { position: relative; isolation: isolate; }
.card-glow::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1; opacity: 0; transition: opacity .3s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(154, 168, 255, .10), transparent 45%);
}
.card-glow:hover::before { opacity: 1; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips li, .chip { font-size: 12.5px; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); }
.chips--lg li { font-size: 13.5px; padding: 6px 12px; }
.chips--lg button { all: unset; cursor: pointer; }
.chips--lg li:hover { color: var(--text); border-color: var(--border-strong); }

/* ---------- Audience ---------- */
.audience { padding-top: clamp(72px, 10vw, 120px); }
.aud-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.aud-card { grid-column: span 2; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.aud-card:nth-child(4), .aud-card:nth-child(5) { grid-column: span 3; }
.aud-card h3 { font-size: 20px; }
.aud-card p { color: var(--muted); font-size: 15px; margin-bottom: 8px; }

/* ---------- Explorer ---------- */
.explorer__bar {
  position: sticky; top: calc(var(--nav-h) + 8px); z-index: 20;
  display: flex; flex-direction: column; gap: 12px; padding: 12px;
  background: rgba(11, 12, 15, .78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border); border-radius: 20px;
}
.search { display: flex; align-items: center; gap: 10px; height: 52px; padding: 0 16px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s; }
.search:focus-within { border-color: rgba(154, 168, 255, .5); box-shadow: 0 0 0 4px rgba(154, 168, 255, .12); }
.search .icon { color: var(--dim); width: 20px; height: 20px; }
.search input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; font-size: 16px; }
.search input::placeholder { color: var(--dim); }
.search input::-webkit-search-cancel-button { filter: invert(1) opacity(.5); }
.search kbd { font-family: var(--font-mono); font-size: 12px; color: var(--dim); border: 1px solid var(--border); border-radius: 6px; padding: 1px 7px; }

.filters { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin: 0 -2px; padding: 2px; }
.filters::-webkit-scrollbar { display: none; }
@media (min-width: 901px) { .filters { flex-wrap: wrap; overflow: visible; } }
.filter {
  flex: none; display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px;
  border-radius: var(--radius-pill); border: 1px solid var(--border); background: transparent; color: var(--muted);
  font-size: 14px; cursor: pointer; transition: all .2s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--border-strong); }
.filter[aria-pressed="true"] { background: var(--text); color: #0a0b0e; border-color: var(--text); }
.filter .icon { width: 16px; height: 16px; }
.filter small { font-family: var(--font-mono); font-size: 11px; opacity: .6; }

.explorer__meta { margin: 20px 4px 14px; font-size: 14px; color: var(--dim); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc {
  display: flex; flex-direction: column; gap: 12px; padding: 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)); border: 1px solid var(--border);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .3s;
  animation: cardIn .45s var(--ease) both;
}
.svc:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.svc__cat { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--dim); }
.svc__cat .icon { width: 15px; height: 15px; color: var(--accent); }
.svc h3 { font-size: 18px; letter-spacing: -0.015em; }
.svc h3 button { all: unset; cursor: pointer; }
.svc h3 button::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.svc h3 button:focus-visible::after { outline: 2px solid var(--accent); outline-offset: 2px; }
.svc > p { color: var(--muted); font-size: 14.5px; line-height: 1.55; flex: 1; }
.svc__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.price { display: flex; flex-direction: column; line-height: 1.2; }
.price small { font-size: 11.5px; color: var(--dim); letter-spacing: .02em; }
.price strong { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.price strong span { font-size: 13px; font-weight: 400; color: var(--muted); margin-left: 3px; }
.price--quote strong { font-size: 17px; }
.eta { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.eta .icon { width: 14px; height: 14px; }
.svc__req {
  position: relative; z-index: 2; flex: none; height: 34px; padding: 0 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); background: transparent; color: var(--text); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background-color .2s, color .2s;
}
.svc__req:hover { background: var(--text); color: #0a0b0e; }
.explorer__more { display: flex; justify-content: center; margin-top: 24px; }
.explorer__more[hidden] { display: none; }
.explorer__empty { margin-top: 12px; padding: 40px 24px; border-radius: var(--radius); border: 1px dashed var(--border-strong); text-align: center; display: grid; gap: 16px; justify-items: center; color: var(--muted); }
.explorer__empty[hidden] { display: none; }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.tier { padding: 30px; border-radius: 22px; background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.tier--featured {
  background: linear-gradient(180deg, rgba(154,168,255,.10), rgba(154,168,255,.02) 60%), var(--bg-2);
  border-color: rgba(154, 168, 255, .35);
  box-shadow: 0 0 0 1px rgba(154,168,255,.08), 0 30px 80px -40px var(--accent-glow);
}
.tier__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.tier__for { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; }
.tier__price { font-size: 40px; font-weight: 600; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; line-height: 1; }
.tier__price small { display: block; font-size: 12px; letter-spacing: .02em; color: var(--dim); font-weight: 400; margin-bottom: 8px; }
.tier__blurb { color: var(--muted); font-size: 15px; }
.tier ul { display: grid; gap: 8px; margin: 6px 0 10px; }
.tier li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); }
.tier li .icon { color: var(--accent); margin-top: 3px; }
.tier__examples { font-size: 13px; color: var(--dim); }
.tier > * { min-width: 0; overflow-wrap: anywhere; }
.tier__price--quote { font-size: 30px; }
.tier .btn { margin-top: auto; }

.price-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pc { padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.pc__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pc__head .icon { color: var(--accent); width: 18px; height: 18px; }
.pc__head h4 { font-size: 15px; font-weight: 600; }
.pc ul { display: grid; }
.pc li button {
  all: unset; box-sizing: border-box; width: 100%; cursor: pointer; display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-top: 1px solid var(--border); font-size: 14px; color: var(--muted); transition: color .2s;
}
.pc li button:hover { color: var(--text); }
.pc li button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.pc li b { color: var(--text); font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
.fine-print { margin-top: 28px; font-size: 13.5px; color: var(--dim); max-width: 760px; }
.fine-print a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: s; position: relative; }
.step { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); position: relative; }
.step__n { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-strong); font-family: var(--font-mono); font-size: 14px; color: var(--accent-strong); margin-bottom: 22px; background: var(--bg); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 47px; right: -15px; width: 16px; height: 1px; background: var(--border-strong);
}

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.why-card { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.why-card .icon { color: var(--accent); margin-bottom: 36px; }
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 15px; }
.why-card--wide {
  grid-column: span 4; display: grid; grid-template-columns: auto 1fr 1.4fr; align-items: center; gap: 24px;
  background: linear-gradient(110deg, rgba(154,168,255,.10), rgba(143,227,208,.05) 60%, transparent), var(--bg-2);
  border-color: rgba(154,168,255,.25);
}
.why-card--wide .icon { margin: 0; width: 32px; height: 32px; }
.why-card--wide h3 { font-size: clamp(24px, 3vw, 34px); margin: 0; }
.why-card--wide p { font-size: 16px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about__copy h2 { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.035em; margin-bottom: 22px; }
.about__copy > p:not(.eyebrow):not(.about__motto) { color: var(--muted); font-size: 17px; margin-bottom: 16px; max-width: 620px; }
.about__motto { margin: 28px 0 24px !important; opacity: .7; }
.about__motto img { width: 240px; height: auto; }
.team__title { margin-bottom: 16px; }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.member { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: border-color .25s, transform .25s var(--ease), box-shadow .3s; }
.member:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.member__photo { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .6s var(--ease), filter .4s; }
.member:hover .member__photo img { transform: scale(1.03); filter: none; }
.member__title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; color: var(--accent); padding: 16px 18px 4px; }
.member__role { font-size: 15px; font-weight: 600; letter-spacing: .04em; padding: 0 18px 18px; }
.moments { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.moments figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 800 / 560; }
.moments img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) brightness(.85); transition: filter .4s, transform .6s var(--ease); }
.moments figure:hover img { filter: none; transform: scale(1.03); }
.moments figcaption { position: absolute; left: 10px; bottom: 10px; font-size: 12px; padding: 4px 10px; border-radius: var(--radius-pill); background: rgba(0,0,0,.6); backdrop-filter: blur(8px); }

/* ---------- FAQ ---------- */
.faq .section__head { text-align: center; margin-inline: auto; }
.faq__list { display: grid; gap: 10px; }
.faq details { border-radius: 16px; background: var(--surface); border: 1px solid var(--border); transition: border-color .2s; }
.faq details[open] { border-color: var(--border-strong); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; font-weight: 500; font-size: 16.5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 10px; height: 10px; border-right: 1.6px solid var(--muted); border-bottom: 1.6px solid var(--muted); transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { padding: 0 22px 22px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact__info h2 { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.035em; }
.contact__info .section__lead { margin-bottom: 28px; }
.channel {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; margin-bottom: 10px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--border); transition: border-color .2s, background-color .2s;
}
.channel:hover { border-color: var(--border-strong); background: var(--surface-2); }
.channel > span { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.channel small { color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.channel > .icon:first-child { color: var(--accent); }
.channel--wa > .icon:first-child { color: var(--wa); }
.channel--wa { border-color: rgba(37, 211, 102, .25); background: linear-gradient(90deg, rgba(37,211,102,.08), transparent 70%); }
.channel__go { color: var(--dim); transition: transform .2s var(--ease); }
.channel:hover .channel__go { transform: translateX(3px); color: var(--text); }
.channel[hidden] { display: none; }
.socials { display: flex; gap: 8px; margin-top: 22px; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); transition: all .2s; }
.socials a:hover { color: var(--text); border-color: var(--border-strong); }
.socials .icon { width: 19px; height: 19px; }

.request { border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--border); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow); scroll-margin-top: calc(var(--nav-h) + 16px); }
.request__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.request__head h3 { font-size: 22px; }
.request__progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; counter-reset: p; }
.request__progress li { counter-increment: p; font-size: 12px; color: var(--dim); padding-top: 10px; border-top: 2px solid var(--border); transition: color .3s, border-color .3s; }
.request__progress li::before { content: "0" counter(p) " "; font-family: var(--font-mono); }
.request__progress li.is-active, .request__progress li.is-done { color: var(--text); border-top-color: var(--accent); }
.request__step { border: 0; margin: 0; padding: 0; min-width: 0; display: none; }
.request__step.is-active { display: grid; gap: 16px; animation: rise .4s var(--ease); }
.field { display: grid; gap: 8px; min-width: 0; }
.field[hidden] { display: none; }
.field > span { font-size: 14px; font-weight: 500; }
.field em { color: var(--dim); font-style: normal; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 12px; background: rgba(0,0,0,.35); border: 1px solid var(--border-strong);
  font-size: 16px; outline: 0; transition: border-color .2s, box-shadow .2s; color-scheme: dark;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field select option, .field select optgroup { background: #15161a; color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(154,168,255,.6); box-shadow: 0 0 0 4px rgba(154,168,255,.12); }
.field .is-invalid, .field input.is-invalid, .field textarea.is-invalid { border-color: var(--danger); }
.field__hint { font-size: 14px; color: var(--muted); padding: 14px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.field__hint:empty { display: none; }
.field__hint strong { color: var(--text); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.segmented { display: inline-grid; grid-template-columns: 1fr 1fr; padding: 4px; border-radius: 12px; background: rgba(0,0,0,.35); border: 1px solid var(--border-strong); }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: block; text-align: center; padding: 9px 12px; border-radius: 9px; font-size: 14px; cursor: pointer; color: var(--muted); transition: all .2s; }
.segmented input:checked + span { background: var(--text); color: #0a0b0e; font-weight: 500; }
.segmented input:focus-visible + span { outline: 2px solid var(--accent); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); cursor: pointer; }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.check a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.review { display: grid; gap: 0; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.review div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 11px 14px; font-size: 14px; }
.review div + div { border-top: 1px solid var(--border); }
.review dt { color: var(--dim); }
.review dd { margin: 0; overflow-wrap: anywhere; white-space: pre-line; }
.form-error { color: var(--danger); font-size: 14px; margin-top: 14px; min-height: 0; }
.form-error:empty { display: none; }
.request__nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.request__nav [hidden] { display: none; }

.request__done { outline: 0; }
.request__done[hidden] { display: none; }
.done { display: grid; gap: 16px; animation: rise .4s var(--ease); }
.done__badge { display: inline-flex; align-items: center; gap: 8px; width: fit-content; font-size: 12px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(255, 196, 94, .1); color: #ffcf7a; border: 1px solid rgba(255, 196, 94, .25); }
.done__badge--ok { background: rgba(37,211,102,.1); color: #6fe3a0; border-color: rgba(37,211,102,.25); }
.done h3 { font-size: 24px; }
.done p { color: var(--muted); }
.done__actions { display: grid; gap: 10px; }
.done__actions .btn { width: 100%; }
.done pre { margin: 0; padding: 14px; border-radius: 12px; background: rgba(0,0,0,.35); border: 1px solid var(--border); font-family: var(--font-mono); font-size: 12.5px; white-space: pre-wrap; color: var(--muted); max-height: 180px; overflow: auto; }
.link-btn { all: unset; cursor: pointer; font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.link-btn:hover { color: var(--text); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 calc(28px + env(safe-area-inset-bottom)); background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; margin: 16px 0 20px; max-width: 320px; }
.footer__tag { width: 200px; height: auto; opacity: .45; }
.footer h4 { font-size: 13px; font-weight: 500; color: var(--dim); margin-bottom: 14px; letter-spacing: .02em; }
.footer ul { display: grid; gap: 9px; }
.footer ul a, .footer ul button { all: unset; cursor: pointer; font-size: 14.5px; color: var(--muted); transition: color .2s; }
.footer ul a:hover, .footer ul button:hover { color: var(--text); }
.footer ul a:focus-visible, .footer ul button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--dim); }

/* ---------- Floating actions ---------- */
.fab-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: var(--wa); color: #fff; box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform .25s var(--ease), opacity .3s; opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
}
.fab-wa .icon { width: 28px; height: 28px; }
.fab-wa.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.fab-wa:hover { transform: scale(1.06); }
.mobile-bar { display: none; }

/* ---------- Service detail sheet ---------- */
.sheet {
  width: min(760px, calc(100vw - 32px)); max-height: min(88vh, 900px); padding: 0; border: 1px solid var(--border-strong);
  border-radius: 24px; background: #0e0f13; color: var(--text); box-shadow: 0 40px 120px -20px rgba(0,0,0,.9);
  overflow: hidden;
}
.sheet[open] { animation: sheetIn .35s var(--ease); }
.sheet::backdrop { background: rgba(3, 4, 6, .7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
@keyframes sheetIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.sheet__inner { max-height: min(88vh, 900px); overflow-y: auto; overscroll-behavior: contain; }
.sd__top { position: sticky; top: 0; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: rgba(14,15,19,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.sd__close { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; cursor: pointer; color: var(--muted); }
.sd__close:hover { color: var(--text); }
.sd__body { padding: 24px clamp(20px, 4vw, 36px) 32px; display: grid; gap: 28px; }
.sd__hero h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.03em; }
.sd__hero p { color: var(--muted); margin-top: 10px; font-size: 16.5px; }
.sd__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sd__stat { padding: 16px 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); }
.sd__stat small { display: block; font-size: 12px; color: var(--dim); margin-bottom: 4px; }
.sd__stat strong { font-size: 22px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.sd__stat strong span { font-size: 14px; font-weight: 400; color: var(--muted); }
.sd__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sd h4 { font-size: 13px; font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--dim); font-weight: 500; margin-bottom: 12px; }
.sd__list { display: grid; gap: 9px; }
.sd__list li { display: flex; gap: 10px; font-size: 15px; }
.sd__list .icon { color: var(--accent); margin-top: 4px; width: 16px; height: 16px; }
.sd__list--dot li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--dim); margin-top: 10px; flex: none; }
.sd__for { color: var(--muted); font-size: 15px; }
.sd__about { color: var(--text); opacity: .9; font-size: 16px; }
.sd__process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.sd__process li { padding: 12px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.sd__process b { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--accent); font-weight: 500; margin-bottom: 4px; }
.sd__note { font-size: 13.5px; color: var(--dim); padding: 12px 14px; border-radius: 12px; border: 1px dashed var(--border-strong); }
.sd__related { display: flex; flex-wrap: wrap; gap: 8px; }
.sd__related button { all: unset; cursor: pointer; font-size: 13.5px; padding: 7px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); color: var(--muted); }
.sd__related button:hover { color: var(--text); border-color: var(--border-strong); }
.sd__related button:focus-visible { outline: 2px solid var(--accent); }
.sd__cta { position: sticky; bottom: 0; display: flex; gap: 10px; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); background: rgba(14,15,19,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.sd__cta .btn { flex: 1; }

/* ---------- Legal page ---------- */
.legal { padding: calc(var(--nav-h) + 64px) 0 96px; }
.legal__layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.legal__toc { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 4px; }
.legal__toc a { padding: 8px 12px; border-radius: 10px; font-size: 14px; color: var(--muted); }
.legal__toc a:hover { background: var(--surface); color: var(--text); }
.legal h1 { font-size: clamp(34px, 5vw, 52px); letter-spacing: -0.035em; margin-bottom: 12px; }
.legal__updated { color: var(--dim); font-size: 14px; margin-bottom: 40px; }
.legal article { padding: 36px 0; border-top: 1px solid var(--border); }
.legal article h2 { font-size: 26px; margin-bottom: 18px; }
.legal article h3 { font-size: 17px; margin: 22px 0 8px; }
.legal article p, .legal article li { color: var(--muted); font-size: 15.5px; }
.legal article p + p { margin-top: 12px; }
.legal article ul { list-style: disc; padding-left: 20px; display: grid; gap: 6px; margin-top: 8px; }
.legal article a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Language selector ---------- */
.lang { position: relative; display: inline-flex; align-items: center; height: 36px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface); color: var(--muted); transition: border-color .2s, color .2s; }
.lang:hover, .lang:focus-within { color: var(--text); border-color: var(--border-strong); }
.lang .icon { position: absolute; left: 11px; width: 16px; height: 16px; pointer-events: none; }
.lang select { appearance: none; -webkit-appearance: none; height: 100%; padding: 0 12px 0 33px; border: 0; border-radius: inherit; background: transparent; color: inherit; font-size: 14px; cursor: pointer; outline: 0; }
.lang select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.lang option { background: #15161a; color: var(--text); }
html.is-switching main, html.is-switching .footer { opacity: .6; transition: opacity .15s; }

/* ---------- Hero tag ---------- */
.hero__tag { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); color: var(--accent-strong); margin: -14px 0 18px; }
.hero__inner > .hero__tag { animation-delay: .55s; }

/* ---------- How it works (5 steps) ---------- */
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.steps--5 .step { padding: 22px; }
.steps--5 .step h3 { font-size: 17px; }
.steps--5 .step p { font-size: 14px; }
.steps--5 .step:not(:last-child)::after { right: -14px; width: 14px; }

/* ---------- Pricing factors ---------- */
.factors { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin: -16px 0 32px; color: var(--muted); font-size: 15px; }

/* ---------- Trust ---------- */
.why-card--half { grid-column: span 2; }
.text-link { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--accent-strong); }

/* ---------- About extras ---------- */
.about__ig { margin-top: 24px; }
.about__ig .icon { color: #f58ac0; }
.moments__title { margin: 56px 0 0; }
.moments__title + .moments { margin-top: 14px; }
.channel--ig > .icon:first-child { color: #f58ac0; }

/* ---------- Demo ---------- */
.demo__wrap { display: grid; grid-template-columns: minmax(220px, .8fr) 2fr; gap: 14px; }
.demo__steps { display: grid; gap: 6px; align-content: start; }
.demo__steps button {
  all: unset; box-sizing: border-box; width: 100%; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface); color: var(--muted); font-size: 14.5px; cursor: pointer; transition: all .2s var(--ease);
}
.demo__steps button:hover { color: var(--text); border-color: var(--border-strong); }
.demo__steps button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.demo__steps b { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--border-strong); font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--accent-strong); }
.demo__steps li.is-done b { background: rgba(154,168,255,.14); border-color: transparent; }
.demo__steps button[aria-selected="true"] { color: var(--text); border-color: rgba(154,168,255,.45); background: linear-gradient(90deg, rgba(154,168,255,.12), rgba(154,168,255,.02)); }
.demo__steps button[aria-selected="true"] b { background: var(--text); color: #0a0b0e; border-color: var(--text); }
.demo__stage { display: grid; grid-template-columns: 1.15fr 1fr; gap: 14px; padding: 14px; border-radius: 22px; border: 1px solid var(--border); background: linear-gradient(160deg, rgba(154,168,255,.07), transparent 55%), var(--bg-2); }
.demo__screen { position: relative; min-height: 330px; border-radius: 16px; border: 1px solid var(--border-strong); background: #0d0e12; overflow: hidden; }
.demo__chrome { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 11.5px; color: var(--dim); font-family: var(--font-mono); }
.demo__chrome i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.demo__chrome span { margin-left: 8px; padding: 2px 10px; border-radius: var(--radius-pill); background: var(--surface); }
.demo__view { position: absolute; inset: 38px 0 0; padding: 18px; display: grid; align-content: start; gap: 12px; opacity: 0; transform: translateY(8px); transition: opacity .45s var(--ease), transform .45s var(--ease); pointer-events: none; }
.demo__view.is-active { opacity: 1; transform: none; }
.dm-search { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(154,168,255,.5); background: var(--surface); font-size: 14px; }
.dm-search .icon { color: var(--dim); }
.dm-search em { width: 1.5px; height: 16px; background: var(--accent); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.dm-cards { display: grid; gap: 8px; }
.dm-card { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); }
.dm-card small { grid-column: 1; font-size: 11px; color: var(--dim); }
.dm-card b { grid-column: 1; font-size: 14.5px; font-weight: 600; }
.dm-card span { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-weight: 600; font-variant-numeric: tabular-nums; }
.dm-card.is-hot { border-color: rgba(154,168,255,.5); box-shadow: 0 0 0 4px rgba(154,168,255,.08); }
.dm-sheet, .dm-form { display: grid; gap: 10px; padding: 16px; border-radius: 14px; border: 1px solid var(--border-strong); background: #121318; }
.dm-sheet > small, .dm-form > small { font-size: 11.5px; color: var(--dim); font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.dm-title { font-size: 20px; letter-spacing: -0.02em; }
.dm-sheet p { color: var(--muted); font-size: 14px; }
.dm-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dm-stats div { padding: 10px 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); }
.dm-stats small { display: block; font-size: 11px; color: var(--dim); }
.dm-list { display: grid; gap: 7px; font-size: 14px; }
.dm-list li { display: flex; gap: 8px; }
.dm-list li::before { content: "✓"; color: var(--accent); }
.dm-btn { justify-self: start; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--text); color: #0a0b0e; font-size: 13.5px; font-weight: 500; }
.dm-btn--wa { background: var(--wa); color: var(--wa-ink); font-weight: 600; }
.dm-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.dm-progress i { height: 3px; border-radius: 2px; background: var(--border-strong); }
.dm-progress i.on { background: var(--accent); }
.dm-input { padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border-strong); background: rgba(0,0,0,.35); font-size: 14px; }
.dm-input--area { min-height: 84px; color: var(--muted); }
.dm-input--mono { font-family: var(--font-mono); font-size: 12px; color: var(--muted); line-height: 1.7; }
.dm-badge { justify-self: start; font-size: 11px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--radius-pill); background: rgba(37,211,102,.1); color: #6fe3a0; border: 1px solid rgba(37,211,102,.25); }
.dm-chat { display: grid; gap: 10px; }
.dm-msg { max-width: 85%; padding: 10px 13px; border-radius: 14px 14px 14px 4px; background: var(--surface-2); border: 1px solid var(--border); font-size: 14px; }
.dm-msg--me { justify-self: end; border-radius: 14px 14px 4px 14px; background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.25); }
.demo__caption { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 12px 10px 12px 6px; }
.demo__count { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .12em; }
.demo__caption h3 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.025em; }
.demo__caption p:not(.demo__count) { color: var(--muted); font-size: 15.5px; min-height: 5.5em; }
.demo__controls { display: flex; gap: 8px; margin-top: 6px; }
.icon--flip { transform: scaleX(-1); }
.demo__try { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Assistant ---------- */
.bot-launch {
  position: fixed; right: 24px; bottom: 92px; z-index: 95; display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 18px 0 14px;
  border-radius: var(--radius-pill); border: 1px solid rgba(154,168,255,.4); background: rgba(14,15,19,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--text); font-size: 14.5px; font-weight: 500; cursor: pointer; box-shadow: 0 14px 40px -12px rgba(0,0,0,.8), 0 0 0 4px rgba(154,168,255,.06);
  transition: transform .2s var(--ease), border-color .2s, opacity .2s;
}
.bot-launch:hover { transform: translateY(-2px); border-color: var(--accent); }
.bot-launch .icon { color: var(--accent); width: 20px; height: 20px; }
.bot-launch[aria-expanded="true"] { opacity: 0; pointer-events: none; }
.bot {
  position: fixed; right: 24px; bottom: 24px; z-index: 120; width: min(400px, calc(100vw - 32px)); height: min(620px, calc(100vh - 110px));
  display: flex; flex-direction: column; border-radius: 22px; border: 1px solid var(--border-strong); background: #0e0f13; box-shadow: 0 40px 120px -20px rgba(0,0,0,.9);
  animation: sheetIn .3s var(--ease); overflow: hidden;
}
.bot[hidden] { display: none; }
.bot__head { display: flex; align-items: center; gap: 12px; padding: 14px 14px 14px 16px; border-bottom: 1px solid var(--border); background: linear-gradient(120deg, rgba(154,168,255,.10), transparent 70%); }
.bot__head img { width: 28px; height: 28px; }
.bot__head div { flex: 1; min-width: 0; }
.bot__head h2 { font-size: 15.5px; letter-spacing: -0.01em; }
.bot__head p { font-size: 12.5px; color: var(--dim); }
.bot__log { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.bmsg { max-width: 92%; padding: 11px 14px; border-radius: 16px 16px 16px 5px; background: var(--surface-2); border: 1px solid var(--border); font-size: 14.5px; line-height: 1.55; overflow-wrap: anywhere; }
.bmsg p + p, .bmsg p + ul, .bmsg ul + p { margin-top: 8px; }
.bmsg a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.bmsg--me { align-self: flex-end; border-radius: 16px 16px 5px 16px; background: rgba(154,168,255,.14); border-color: rgba(154,168,255,.28); }
.bmsg__svcs { display: grid; gap: 6px; margin-top: 10px; }
.bmsg__svcs button { all: unset; box-sizing: border-box; display: flex; justify-content: space-between; gap: 10px; padding: 8px 10px; border-radius: 10px; border: 1px solid var(--border); background: rgba(0,0,0,.25); cursor: pointer; font-size: 13.5px; }
.bmsg__svcs button:hover { border-color: var(--border-strong); }
.bmsg__svcs button:focus-visible { outline: 2px solid var(--accent); }
.bmsg__svcs b { font-weight: 500; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.bmsg__actions, .bot__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.bmsg__actions { margin-top: 10px; }
.bmsg__actions a, .bmsg__actions button, .bot__chips button {
  all: unset; box-sizing: border-box; cursor: pointer; display: inline-flex; align-items: center; padding: 6px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); font-size: 13px; color: var(--text); text-decoration: none !important; transition: background-color .2s, color .2s;
}
.bmsg__actions a:hover, .bmsg__actions button:hover, .bot__chips button:hover { background: var(--text); color: #0a0b0e; }
.bmsg__actions :focus-visible, .bot__chips button:focus-visible { outline: 2px solid var(--accent); }
.bmsg__actions .is-wa { border-color: rgba(37,211,102,.45); }
.bot__chips { padding: 0 16px 12px; }
.bot__typing { display: inline-flex; gap: 4px; padding: 14px; }
.bot__typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1s infinite; }
.bot__typing i:nth-child(2) { animation-delay: .2s; }
.bot__typing i:nth-child(3) { animation-delay: .4s; }
.bot__form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.bot__form input { flex: 1; min-width: 0; height: 44px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--border-strong); background: rgba(0,0,0,.35); font-size: 16px; outline: 0; }
.bot__form input:focus { border-color: rgba(154,168,255,.6); box-shadow: 0 0 0 4px rgba(154,168,255,.12); }
.bot__send { flex: none; width: 44px; height: 44px; border-radius: 12px; border: 0; background: var(--text); color: #0a0b0e; display: grid; place-items: center; cursor: pointer; }

/* ---------- Legal: language note ---------- */
.legal__lang { margin: -24px 0 32px; padding: 12px 14px; border-radius: 12px; border: 1px dashed var(--border-strong); color: var(--muted); font-size: 14.5px; }
.legal__lang:empty { display: none; }

/* ---------- Indic scripts ---------- */
html[lang="ta"] { --font: "Geist", "Noto Sans Tamil", ui-sans-serif, system-ui, sans-serif; }
html[lang="hi"] { --font: "Geist", "Noto Sans Devanagari", ui-sans-serif, system-ui, sans-serif; }
html[lang="te"] { --font: "Geist", "Noto Sans Telugu", ui-sans-serif, system-ui, sans-serif; }
html:not([lang="en"]) body { line-height: 1.7; }
html:not([lang="en"]) :is(h1, h2, h3, h4, .hero__title, .tier__price, .dm-title) { letter-spacing: 0; line-height: 1.3; }
html:not([lang="en"]) .hero__title { font-size: clamp(30px, 5vw, 60px); max-width: 20ch; }
html:not([lang="en"]) :is(.section__head h2, .about__copy h2, .contact__info h2) { font-size: clamp(26px, 3.6vw, 42px); }
html:not([lang="en"]) :is(.muted-serif, .hero__title em) { font-family: inherit; font-style: normal; }
html:not([lang="en"]) .btn { white-space: normal; height: auto; min-height: var(--h); padding-block: 8px; line-height: 1.3; text-align: center; }
html:not([lang="en"]) :is(.eyebrow, .tier__name, .sd h4, .member__title) { letter-spacing: .04em; }
html:not([lang="en"]) .svc h3 { font-size: 17px; line-height: 1.35; }
html:not([lang="en"]) .mobile-menu nav a { font-size: 22px; }
@media (max-width: 1180px) {
  html:not([lang="en"]) :is(.nav__links, .nav__wa) { display: none; }
  html:not([lang="en"]) .nav__toggle { display: block; }
  html:not([lang="en"]) .nav__actions { margin-left: auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 1600px) {
  :root { --container: 1320px; }
}
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card--wide { grid-column: span 2; grid-template-columns: auto 1fr; }
  .why-card--wide p { grid-column: 1 / -1; }
  .steps, .steps--5 { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}
@media (max-width: 900px) {
  .demo__wrap { grid-template-columns: 1fr; }
  .demo__steps { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
  .demo__steps::-webkit-scrollbar { display: none; }
  .demo__steps button { width: auto; }
  .nav__links, .nav__wa { display: none; }
  .nav__toggle { display: block; }
  .nav__actions { margin-left: auto; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .aud-card, .aud-card:nth-child(4), .aud-card:nth-child(5) { grid-column: span 1; }
  .aud-card:nth-child(5) { grid-column: 1 / -1; }
  .tiers { grid-template-columns: 1fr; max-width: 560px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .team { max-width: 720px; }
  .moments { grid-template-columns: repeat(2, 1fr); }
  .legal__layout { grid-template-columns: 1fr; gap: 24px; }
  .legal__toc { position: static; display: flex; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .nav__actions .btn--primary:not(.btn--keep) { display: none; }
  .hero__cta { width: 100%; flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__title br { display: none; }
  .svc-grid, .price-cats, .aud-grid, .why-grid, .steps, .team__grid { grid-template-columns: 1fr; }
  .team { max-width: 420px; }
  .aud-card:nth-child(5), .why-card--wide, .why-card--half { grid-column: auto; }
  .demo__stage { grid-template-columns: 1fr; }
  .demo__screen { min-height: 310px; }
  .demo__caption { padding: 4px 4px 6px; }
  .demo__caption p:not(.demo__count) { min-height: 0; }
  .demo__try .btn { width: 100%; }
  .lang select { padding-right: 8px; font-size: 13px; }
  .bot-launch { right: 12px; bottom: 16px; width: 50px; height: 50px; padding: 0; justify-content: center; }
  .bot-launch span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .demo__screen { min-height: 350px; }
  body.has-bar .bot-launch { bottom: calc(80px + env(safe-area-inset-bottom)); }
  .bot { inset: auto 0 0; width: 100vw; height: min(86vh, 700px); border-radius: 22px 22px 0 0; border-bottom: 0; padding-bottom: env(safe-area-inset-bottom); }
  .why-card--wide { grid-template-columns: 1fr; gap: 12px; }
  .why-card .icon { margin-bottom: 20px; }
  .explorer__bar { top: calc(var(--nav-h) + 4px); padding: 8px; border-radius: 16px; margin-inline: calc(var(--gutter) * -0.5); }
  .search { height: 46px; }
  .search kbd { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .sd__cols { grid-template-columns: 1fr; }
  .sd__stat strong { font-size: 19px; }
  .sd__process { grid-template-columns: 1fr 1fr; }
  .steps--5 { grid-template-columns: 1fr; }
  .sd__cta { flex-direction: column; }
  .sd__cta .btn { flex: none; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .request__nav .btn { flex: 1; }
  .review div { grid-template-columns: 1fr; gap: 2px; }

  /* Bottom sheet on phones */
  .sheet { width: 100vw; max-width: 100vw; max-height: 92vh; margin: auto 0 0; border-radius: 22px 22px 0 0; border-bottom: 0; }
  .sheet__inner { max-height: 92vh; }
  .sheet[open] { animation: sheetUp .35s var(--ease); }
  @keyframes sheetUp { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }

  /* Sticky mobile action bar replaces the floating button */
  .fab-wa { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; inset: auto 0 0; z-index: 90;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,8,10,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border); transform: translateY(110%); transition: transform .35s var(--ease);
  }
  .mobile-bar.is-visible { transform: none; }
  .mobile-bar .btn { height: 48px; }
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

@media (max-width: 400px) {
  .nav__inner { gap: 12px; }
  .nav__actions { gap: 6px; }
  .brand { letter-spacing: .12em; gap: 8px; }
  .lang .icon { display: none; }
  .lang select { padding-left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .ticker { overflow-x: auto; }
}
