:root {
  /* ServiceLab brand — deep navy base, lavender → indigo accent */
  --bg-0: #06061a;
  --bg-1: #0b0b24;
  --bg-2: #11112f;
  --bg-3: #1a1a40;
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.14);
  --tx-hi: #ecebfb;
  --tx-mid: #9a98c4;
  --tx-lo: #66648f;
  --acc: #6054f6;
  --acc-bright: #afaefa;
  --acc-teal: #b3aefb;
  --acc-deep: #3a2fc4;
  --acc-glow: rgba(123,108,255,0.40);
  --acc-soft: rgba(96,84,246,0.13);
  --grad: linear-gradient(158deg, #c2c0ff 0%, #6054f6 54%, #3f34cf 100%);
  --grad-cta: linear-gradient(158deg, #8f86ff 0%, #6054f6 52%, #4034d6 100%);
  --display: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--display);
  background: var(--bg-0);
  color: var(--tx-hi);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--acc-glow); color: #fff; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
section { position: relative; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3 { font-weight: 700; line-height: 1.03; letter-spacing: -0.025em; text-wrap: balance; }
.hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- atoms ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  color: var(--acc-bright); text-transform: lowercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--acc); }

.kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tx-lo);
}

.btn {
  font-family: var(--display); font-weight: 500; font-size: 15px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-cta); color: #fff; font-weight: 700;
  box-shadow: 0 0 0 0 var(--acc-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--acc-glow); }
.btn-ghost { background: transparent; color: var(--tx-hi); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--acc); color: var(--acc-bright); background: var(--acc-soft); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--acc-bright); outline-offset: 3px; border-radius: 4px;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================ HEADER */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(11,14,16,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.brand .logo-dot {
  width: 30px; height: 36px; flex: none;
  object-fit: contain; object-position: center;
}
.brand .sl-logo {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  object-fit: cover; box-shadow: 0 0 22px -6px var(--acc-glow);
}
.brand .lab { color: var(--acc-bright); font-weight: 700; }
.brand .studio-tag {
  display: block; font-family: var(--mono); font-size: 9.5px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-lo); margin-top: 2px;
}
.brand b { font-weight: 700; }
.brand span.lab { color: var(--acc-bright); font-weight: 700; }
.brand .name-wrap { display: flex; flex-direction: column; line-height: 1.05; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a, .nav-links > .has-mega > .mega-trigger {
  font-size: 15px; color: var(--tx-mid); transition: color .2s var(--ease);
  background: none; border: 0; font-family: var(--display); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.nav-links > a:hover, .nav-links .has-mega:hover > .mega-trigger,
.nav-links .has-mega:focus-within > .mega-trigger { color: var(--tx-hi); }
.mega-trigger .chev { width: 11px; height: 11px; transition: transform .25s var(--ease); }
.has-mega:hover .mega-trigger .chev, .has-mega:focus-within .mega-trigger .chev { transform: rotate(180deg); }

/* mega-menu panel (desktop) */
.has-mega { position: relative; }
.mega-panel {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 620px; max-width: 92vw;
  background: rgba(11,11,36,0.94); backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong); border-radius: 18px;
  box-shadow: 0 30px 80px -24px rgba(0,0,0,0.8), 0 0 60px -30px var(--acc-glow);
  padding: 20px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; z-index: 120;
}
.mega-panel::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.has-mega:hover .mega-panel, .has-mega:focus-within .mega-panel, .has-mega.open .mega-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-app {
  display: block; padding: 16px; border-radius: 13px; border: 1px solid var(--line);
  background: var(--bg-2); transition: border-color .2s var(--ease), background .2s var(--ease);
}
.mega-app:hover { border-color: var(--acc); background: var(--bg-3); }
.mega-app.soon { opacity: .72; }
.mega-app-head { display: flex; align-items: center; gap: 11px; margin-bottom: 4px; }
.mega-app-head img { width: 34px; height: 34px; border-radius: 9px; flex: none; }
.mega-app-head .ph {
  width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center;
  background: var(--acc-soft); color: var(--acc-bright); font-family: var(--mono); font-size: 15px; font-weight: 600;
}
.mega-app-head b { font-size: 15px; color: var(--tx-hi); font-weight: 700; display: block; }
.mega-app-head .badge {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 100px; margin-left: auto;
}
.mega-app-head .badge.live { background: var(--acc-soft); color: var(--acc-bright); }
.mega-app-head .badge.dev { background: rgba(255,255,255,0.06); color: var(--tx-lo); }
.mega-app p.mega-desc { font-size: 12px; color: var(--tx-lo); line-height: 1.5; margin: 0 0 12px; }
.mega-sublinks { display: flex; flex-direction: column; gap: 1px; }
.mega-sublinks a {
  font-size: 13px; color: var(--tx-mid); padding: 7px 9px; border-radius: 8px;
  display: flex; align-items: center; gap: 9px; transition: color .18s var(--ease), background .18s var(--ease);
}
.mega-sublinks a:hover { color: var(--tx-hi); background: rgba(255,255,255,0.04); }
.mega-sublinks a .d { width: 4px; height: 4px; border-radius: 50%; background: var(--acc); flex: none; }
.mega-soon-note { font-size: 12px; color: var(--tx-lo); line-height: 1.5; margin: 8px 0 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px; background: var(--tx-hi);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.burger span { top: 21px; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 99;
  background: rgba(6,6,26,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px; padding: 16px var(--gutter) 26px;
  max-height: calc(100vh - 72px); overflow-y: auto;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.menu-open .mobile-menu { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu > a { padding: 13px 4px; font-size: 17px; color: var(--tx-mid); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; }
/* mobile apps accordion */
.m-group { border-bottom: 1px solid var(--line); }
.m-group > summary {
  list-style: none; cursor: pointer; padding: 13px 4px; font-size: 17px; color: var(--tx-hi);
  display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.m-group > summary::-webkit-details-marker { display: none; }
.m-group > summary::after { content: "+"; margin-left: auto; font-size: 20px; color: var(--acc-bright); font-weight: 400; }
.m-group[open] > summary::after { content: "−"; }
.m-app-block { padding: 4px 4px 14px; }
.m-app-block .m-app-name {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--acc-bright); padding: 8px 8px 4px; display: flex; align-items: center; gap: 8px;
}
.m-app-block .m-app-name img { width: 20px; height: 20px; border-radius: 5px; }
.m-app-block a { padding: 9px 8px; font-size: 15px; color: var(--tx-mid); display: block; }
.m-app-block.soon .m-app-name { color: var(--tx-lo); }

/* ============================================================ HERO */
.hero { padding: 150px 0 90px; overflow: hidden; }
.hero .grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 70%);
  opacity: .6;
}
.hero-glow {
  position: absolute; top: -120px; right: -80px; width: 620px; height: 620px; z-index: 0;
  background: radial-gradient(circle, var(--acc-soft) 0%, transparent 65%); pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero-copy h1 { font-size: clamp(40px, 6.4vw, 74px); margin: 20px 0 0; }
.hero-copy .subline {
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 500; color: var(--tx-hi);
  margin-top: 16px; letter-spacing: -0.01em;
}
.hero-copy .lede { font-size: 17px; color: var(--tx-mid); margin-top: 18px; max-width: 46ch; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; }
.trust-bar span {
  font-family: var(--mono); font-size: 12.5px; color: var(--tx-mid); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 7px;
}
.trust-bar .tick { color: var(--acc-teal); font-weight: 600; }

/* phone mockup */
.hero-visual { display: flex; justify-content: center; position: relative; z-index: 1; }
.phone {
  position: relative; width: 280px; height: 560px; border-radius: 42px;
  background: #05080a; padding: 12px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02) inset, 0 0 60px -20px var(--acc-glow);
}
.phone-shot {
  width: 100%; height: 100%; border-radius: 32px; object-fit: cover;
  object-position: top center; display: block;
}
.phone-screen {
  position: relative; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(165deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex; flex-direction: column;
}
.ps-top { padding: 26px 18px 14px; }
.ps-eyebrow { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc-bright); }
.ps-title { font-size: 18px; font-weight: 700; margin-top: 8px; letter-spacing: -0.02em; }
.ps-sub { font-size: 10px; color: var(--tx-lo); font-family: var(--mono); margin-top: 4px; }
.ps-list { padding: 6px 14px; display: flex; flex-direction: column; gap: 9px; }
.ps-row {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 12px; display: flex; align-items: center; gap: 11px;
}
.ps-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--acc-soft); flex: none; display: grid; place-items: center; }
.ps-ic.green { background: rgba(24,196,99,0.14); }
.ps-ic.green::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--acc-teal); }
.ps-ic::after { content: ""; width: 12px; height: 12px; border-radius: 4px; background: var(--acc-bright); }
.ps-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ps-lines i { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.13); }
.ps-lines i:last-child { width: 55%; background: rgba(255,255,255,0.07); }
.ps-amt { font-family: var(--mono); font-size: 11px; color: var(--tx-hi); font-weight: 500; }
.ps-cta {
  margin: auto 14px 20px; padding: 13px; border-radius: 12px; text-align: center;
  background: var(--grad); color: #04181d; font-weight: 700; font-size: 12px;
}
.phone-float {
  position: absolute; z-index: 4; background: var(--bg-1); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 10px 13px; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.7);
  display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500;
}
.phone-float .dot { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.phone-float.f1 { top: 86px; left: -42px; }
.phone-float.f1 .dot { background: rgba(24,196,99,0.16); color: var(--acc-teal); }
.phone-float.f2 { bottom: 96px; right: -38px; }
.phone-float.f2 .dot { background: var(--acc-soft); color: var(--acc-bright); }
.phone-float small { display: block; font-family: var(--mono); font-size: 9px; color: var(--tx-lo); font-weight: 400; }

/* ============================================================ SECTION SHELL */
.sec { padding: 96px 0; }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 0; }
.sec-head p { color: var(--tx-mid); font-size: 17px; margin-top: 16px; line-height: 1.6; }

/* ============================================================ SOCIAL PROOF */
.proof { background: var(--bg-1); border-block: 1px solid var(--line); padding: 70px 0; }
.proof-head { text-align: center; font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; color: var(--tx-mid); text-transform: lowercase; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.quote-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 18px;
}
.quote-card .stars { display: flex; gap: 3px; color: var(--acc-teal); }
.quote-card .stars svg { width: 15px; height: 15px; }
.quote-card blockquote { font-size: 16px; font-style: italic; color: var(--tx-mid); line-height: 1.6; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-card .av { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-strong); display: grid; place-items: center; font-weight: 700; color: var(--acc-bright); font-size: 14px; flex: none; }
.quote-card .who b { display: block; font-size: 14px; color: var(--tx-hi); font-weight: 600; }
.quote-card .who span { font-size: 12.5px; color: var(--tx-lo); }
.proof-note { text-align: center; margin-top: 26px; font-size: 12.5px; color: var(--tx-lo); font-family: var(--mono); }

/* ============================================================ FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.feat-card:hover { border-color: var(--line-strong); transform: translateY(-3px); background: var(--bg-3); }
.feat-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--acc-soft);
  display: grid; place-items: center; color: var(--acc-bright); margin-bottom: 20px;
}
.feat-icon svg { width: 23px; height: 23px; }
.feat-card h3 { font-size: 19px; letter-spacing: -0.015em; }
.feat-card p { color: var(--tx-mid); font-size: 14.5px; margin-top: 11px; line-height: 1.62; }

/* ============================================================ HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding-top: 8px; }
.step .n {
  font-family: var(--display); font-weight: 700; font-size: 64px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 21px; margin-top: 16px; }
.step p { color: var(--tx-mid); font-size: 15px; margin-top: 12px; line-height: 1.6; max-width: 34ch; }
.step::after {
  content: ""; position: absolute; top: 30px; right: -13px; width: 26px; height: 1px;
  background: var(--line-strong);
}
.step:last-child::after { display: none; }

/* ============================================================ PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.price-card.pro {
  background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 30px 70px -34px var(--acc-glow);
}
.price-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--grad); color: #04181d; font-weight: 700; padding: 5px 11px; border-radius: 100px;
}
.price-tier { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tx-lo); }
.price-amt { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.price-amt b { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; }
.price-amt span { color: var(--tx-lo); font-size: 14px; }
.price-list { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--tx-mid); }
.price-list .check { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--acc-teal); }
.price-card .btn { width: 100%; margin-top: auto; }
.price-fine { text-align: center; margin-top: 26px; font-size: 13px; color: var(--tx-lo); font-family: var(--mono); }

/* ============================================================ WAITLIST */
.waitlist { padding: 100px 0; text-align: center; overflow: hidden; }
.waitlist::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(80% 120% at 50% 0%, var(--acc-soft) 0%, transparent 60%);
}
.waitlist .wrap { position: relative; z-index: 1; }
.waitlist h2 { font-size: clamp(30px, 4.6vw, 48px); }
.wl-logo {
  width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 22px;
  box-shadow: 0 18px 50px -14px var(--acc-glow); border: 1px solid var(--line-strong);
}
.waitlist .lede { color: var(--tx-mid); font-size: 17px; margin: 18px auto 0; max-width: 52ch; line-height: 1.6; }
.wl-card { max-width: 480px; margin: 36px auto 0; }
.wl-form { display: flex; flex-direction: column; gap: 12px; }
.wl-form .row { display: flex; gap: 12px; }
.wl-form input[type="email"] {
  flex: 1; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 15px 18px; color: var(--tx-hi); font-family: var(--display); font-size: 15px;
  transition: border-color .2s var(--ease);
}
.wl-form input[type="email"]::placeholder { color: var(--tx-lo); }
.wl-form input[type="email"]:focus { outline: none; border-color: var(--acc); }
.wl-form .btn { padding: 15px 24px; }
.wl-note { font-size: 13px; color: var(--tx-lo); margin-top: 14px; font-family: var(--mono); }
.wl-success {
  max-width: 480px; margin: 36px auto 0; background: var(--bg-2);
  border: 1px solid rgba(24,196,99,0.3); border-radius: var(--radius); padding: 28px 26px;
  color: var(--acc-teal); font-weight: 600; font-size: 17px; display: flex; align-items: center; gap: 12px; justify-content: center;
}

/* ============================================================ FAQ */
.faq-list { max-width: 760px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-size: 18px; font-weight: 600; color: var(--tx-hi); transition: color .2s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--acc-bright); }
.faq-list summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--acc-bright); transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-answer { overflow: hidden; }
.faq-answer p { color: var(--tx-mid); font-size: 15.5px; line-height: 1.7; padding: 0 44px 24px 0; max-width: 62ch; }
.faq-list details[open] .faq-answer { animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================ FOOTER */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg-1); }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.footer-links a { font-size: 14.5px; color: var(--tx-mid); transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--acc-bright); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.footer-bottom .copy { font-size: 13px; color: var(--tx-lo); font-family: var(--mono); }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--tx-mid); transition: color .2s var(--ease), border-color .2s var(--ease), background .2s; }
.socials a:hover { color: var(--acc-bright); border-color: var(--acc); background: var(--acc-soft); }
.socials svg { width: 17px; height: 17px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; }
  .feat-grid, .price-grid, .steps, .proof-grid { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-ghost, .nav-cta .desktop-cta { display: none; }
  .burger { display: block; }
  .sec { padding: 72px 0; }
  .feat-grid, .price-grid, .steps, .proof-grid { grid-template-columns: 1fr; }
  .price-card.pro { order: -1; }
  .hero { padding-top: 124px; }
  .wl-form .row { flex-direction: column; }
}
@media (max-width: 380px) {
  .hero-copy h1 { font-size: 36px; }
  .phone { width: 250px; height: 510px; }
  .phone-float { display: none; }
}


/* ============================================================ SOLUTION / LANDING PAGES */
.page-hero { padding: 138px 0 70px; overflow: hidden; }
.crumb { font-family: var(--mono); font-size: 12px; color: var(--tx-lo); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 22px; }
.crumb a { color: var(--tx-mid); transition: color .2s var(--ease); }
.crumb a:hover { color: var(--acc-bright); }
.crumb .sep { opacity: .5; }
.page-hero .hero-copy h1 { font-size: clamp(34px, 5.2vw, 60px); }
.avail-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; color: var(--acc-bright);
  background: var(--acc-soft); border: 1px solid var(--line-strong); padding: 7px 14px; border-radius: 100px;
}
.avail-pill .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acc-teal); box-shadow: 0 0 0 0 var(--acc-teal); animation: livePulse 2.4s var(--ease) infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(179,174,251,0.5); } 70% { box-shadow: 0 0 0 8px rgba(179,174,251,0); } 100% { box-shadow: 0 0 0 0 rgba(179,174,251,0); } }

/* App Store download buttons */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px 12px 18px; border-radius: 14px;
  background: var(--tx-hi); color: #06061a; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(0,0,0,0.6); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-txt { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-badge .sb-txt small { font-size: 10px; font-weight: 500; opacity: .7; }
.store-badge .sb-txt b { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.store-badge.alt { background: var(--bg-2); color: var(--tx-hi); border: 1px solid var(--line-strong); }

/* split content + media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.split + .split { margin-top: clamp(56px, 8vw, 96px); }
.split-copy .kicker { display: block; margin-bottom: 14px; }
.split-copy h2 { font-size: clamp(27px, 3.6vw, 40px); }
.split-copy > p { color: var(--tx-mid); font-size: 16.5px; line-height: 1.72; margin-top: 16px; }
.split-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.split-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--tx-mid); line-height: 1.55; }
.split-list .check { width: 19px; height: 19px; flex: none; margin-top: 1px; color: var(--acc-bright); }
.split.rev .split-media { order: -1; }
.media-frame {
  border-radius: var(--radius); border: 1px solid var(--line-strong); overflow: hidden; background: var(--bg-2);
  box-shadow: 0 34px 90px -34px rgba(0,0,0,0.75), 0 0 60px -34px var(--acc-glow); position: relative;
}
.media-frame img { width: 100%; display: block; }
.media-frame.pad { padding: 22px; background: linear-gradient(160deg, var(--bg-2), var(--bg-3)); }
.media-frame.pad img { border-radius: 10px; border: 1px solid var(--line); }
/* portrait phone-screen card for content sections */
.shot {
  max-width: 300px; margin: 0 auto; border-radius: 30px; overflow: hidden;
  border: 1px solid var(--line-strong); background: #05080a;
  box-shadow: 0 34px 90px -34px rgba(0,0,0,0.75), 0 0 60px -34px var(--acc-glow);
}
.shot img { width: 100%; display: block; }
.media-cap { font-family: var(--mono); font-size: 12px; color: var(--tx-lo); margin-top: 14px; text-align: center; }
.media-wrap { position: relative; }
.media-tag {
  position: absolute; z-index: 3; background: var(--bg-1); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 10px 14px; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.7);
  display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 500; color: var(--tx-hi);
}
.media-tag .dot { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; background: var(--acc-soft); color: var(--acc-bright); }
.media-tag small { display: block; font-family: var(--mono); font-size: 9px; color: var(--tx-lo); font-weight: 400; }
.media-tag.b1 { bottom: -16px; left: -18px; }
.media-tag.b2 { top: -16px; right: -16px; }

/* CTA band */
.cta-band { padding: 96px 0; text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(80% 120% at 50% 0%, var(--acc-soft) 0%, transparent 60%); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .cta-logo { width: 72px; height: 72px; border-radius: 19px; margin: 0 auto 22px; border: 1px solid var(--line-strong); box-shadow: 0 18px 50px -14px var(--acc-glow); }
.cta-band h2 { font-size: clamp(28px, 4.4vw, 46px); }
.cta-band p { color: var(--tx-mid); font-size: 17px; margin: 16px auto 0; max-width: 54ch; line-height: 1.6; }
.cta-band .store-badges { justify-content: center; }
.cta-band .cta-sub { font-family: var(--mono); font-size: 12.5px; color: var(--tx-lo); margin-top: 22px; }

/* solutions cross-link index */
.solutions { padding: 90px 0; border-top: 1px solid var(--line); background: var(--bg-1); }
.solutions .sec-head { margin-bottom: 36px; }
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sol-card {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line);
  border-radius: 13px; background: var(--bg-2); transition: border-color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
}
.sol-card:hover { border-color: var(--acc); background: var(--bg-3); transform: translateX(3px); }
.sol-card.active { border-color: var(--acc); background: var(--acc-soft); pointer-events: none; }
.sol-card .ix { font-family: var(--mono); font-size: 12px; color: var(--acc-bright); flex: none; width: 26px; }
.sol-card .sol-txt { min-width: 0; }
.sol-card .sol-txt b { font-size: 14.5px; color: var(--tx-hi); font-weight: 600; display: block; letter-spacing: -0.01em; }
.sol-card .sol-txt span { font-size: 12px; color: var(--tx-lo); }
.sol-card .arr { margin-left: auto; color: var(--tx-lo); flex: none; transition: transform .22s var(--ease), color .22s var(--ease); }
.sol-card:hover .arr { color: var(--acc-bright); transform: translateX(2px); }

/* footer solutions column list */
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px 40px; }
.footer-col h5 { font-size: 12px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--tx-lo); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--tx-mid); padding: 5px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--acc-bright); }
.footer-blurb { font-size: 14px; color: var(--tx-lo); line-height: 1.6; margin-top: 16px; max-width: 34ch; }

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media { order: 0; }
  .sol-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .media-tag { display: none; }
}

/* ---------- language toggle ---------- */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  border: 1px solid var(--line-strong); border-radius: 100px;
  background: rgba(255,255,255,0.02);
}
.lang-toggle button {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--tx-mid); background: transparent; border: none;
  padding: 6px 12px; border-radius: 100px; cursor: pointer;
  transition: color .2s var(--ease), background .25s var(--ease);
}
.lang-toggle button:not(.active):hover { color: var(--tx-hi); }
.lang-toggle button.active { background: var(--grad); color: #0b0b24; font-weight: 700; }
.lang-toggle.mobile { width: 100%; justify-content: center; margin-bottom: 14px; }
.lang-toggle.mobile button { flex: 1; padding: 10px; font-size: 14px; }
@media (max-width: 760px) {
  .nav-cta .lang-toggle:not(.mobile) { display: none; }
}
