/* Stratum Applications — landing styles.
   Visual grammar follows the Stratum design board (see research/stratum-brand/README.md):
   Inter, accent #4318D6, hairlines on #F7F7FA, 8px controls, 14px cards, 44px touch targets. */

:root {
  --bg: #F7F7FA;
  --surface: #FFFFFF;
  --surface-2: #F6F3FF;
  --surface-3: #ECE8FF;
  --ink: #101018;
  --sub: #55555F;
  --muted: #6B6B7A;
  --faint: #9C9CAA;
  --line: #E3E3EC;
  --line-2: #CFCFDA;
  --line-3: #EFEFF4;
  --accent: #4318D6;
  --brand: #4F22F2;
  --accent-ink: #FFFFFF;
  --accent-hover: #2A0E8F;
  --accent-soft: #ECE8FF;
  --sel: #D7CDFB;
  --ok: #189A56;
  --err: #D64545;
  --backdrop: rgba(11, 11, 20, .5);
  --nav-bg: rgba(247, 247, 250, .94);
  --r-ctl: 8px;
  --r-card: 14px;
  --r-pill: 999px;
  --sh-card: 0 1px 2px rgba(16, 16, 24, .04);
  --sh-pop: 0 12px 32px rgba(16, 16, 24, .12);
  --sh-modal: 0 24px 60px rgba(11, 11, 20, .28);
  --sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, monospace;
  color-scheme: light;
}

:root[data-theme="dark"] {
    --bg: #0B0B14;
    --surface: #12121C;
    --surface-2: #1A1A26;
    --surface-3: #23232F;
    --ink: #F7F7FA;
    --sub: #E3E3EC;
    --muted: #9C9CAA;
    --faint: #6B6B7A;
    --line: #2E2E3C;
    --line-2: #3D3D4E;
    --line-3: #23232F;
    --accent: #8B72FF;
    --brand: #7C5CFF;
    --accent-ink: #0B0B14;
    --accent-hover: #A08CFF;
    --accent-soft: rgba(139, 114, 255, .16);
    --sel: rgba(139, 114, 255, .35);
    --ok: #34C77B;
    --err: #FF7A7A;
    --backdrop: rgba(5, 5, 10, .66);
    --nav-bg: rgba(11, 11, 20, .94);
    --sh-card: 0 1px 2px rgba(0, 0, 0, .4);
    --sh-pop: 0 12px 32px rgba(0, 0, 0, .5);
    --sh-modal: 0 24px 60px rgba(0, 0, 0, .6);
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 15px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }

::selection { background: var(--sel); }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 60;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-ctl); padding: 10px 14px;
  font: 600 13px/1 var(--sans);
}
.skip:focus { left: 8px; }

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  margin: 0 0 12px;
  font: 700 10.5px/1.4 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.accent { color: var(--accent); }
h1, h2, h3 { margin: 0; letter-spacing: -.01em; text-wrap: balance; }
h1 { font: 700 clamp(30px, 4.6vw, 44px)/1.12 var(--sans); }
h2 { font: 700 clamp(22px, 3vw, 28px)/1.2 var(--sans); }
h3 { font: 600 15px/1.35 var(--sans); }
.hl { color: var(--accent); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  min-height: 60px; display: flex; align-items: center; gap: 20px;
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 12px; border-radius: var(--r-ctl);
  color: var(--sub); text-decoration: none;
  font: 500 13.5px/1 var(--sans);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav .btn { flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.theme-toggle {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-ctl);
  color: var(--sub); cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.theme-toggle:hover { background: var(--surface-2); color: var(--ink); }
.theme-toggle svg { width: 17px; height: 17px; }
html[data-theme="light"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ---------- wordmark ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.wordmark svg { width: 26px; height: 26px; flex-shrink: 0; }
.wordmark svg rect { fill: var(--brand); }
.wordmark svg path { stroke: #fff; }
.wordmark .wm-text {
  font: 800 13px/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark .wm-text i { font-style: normal; color: var(--brand); }
.wordmark.small svg { width: 20px; height: 20px; }
.wordmark.small .wm-text { font-size: 11px; letter-spacing: .18em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px;
  border-radius: var(--r-ctl); border: 1px solid transparent;
  font: 600 14px/1 var(--sans);
  text-decoration: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--accent); color: var(--accent-ink); }
.btn.primary:hover { background: var(--accent-hover); color: var(--accent-ink); }
.btn.secondary { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn.secondary:hover { background: var(--surface-2); }
.btn.ghost { background: transparent; color: var(--sub); }
.btn.ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn.sm { min-height: 36px; padding: 0 14px; font-size: 13px; }
.btn.lg { min-height: 48px; padding: 0 22px; font-size: 15px; }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ---------- hero ---------- */
.hero { padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 72px); }
.hero h1 { max-width: 640px; margin-bottom: 16px; }
.hero .sub { max-width: 560px; margin: 0 0 28px; font-size: 15.5px; line-height: 1.65; color: var(--sub); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chip {
  padding: 6px 12px; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--surface); box-shadow: var(--sh-card);
  font: 600 11px/1.4 var(--sans); letter-spacing: .04em; color: var(--muted);
}

/* ---------- sections ---------- */
.section { padding: clamp(48px, 7vw, 80px) 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 640px; margin-bottom: 36px; }
.sec-head h2 { margin-bottom: 10px; }
.sec-sub { margin: 0; font-size: 14px; line-height: 1.65; color: var(--sub); }

.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: 22px;
}
.section.alt .card { background: var(--bg); }
.card.pad { padding: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0 0 10px; font-size: 13.5px; line-height: 1.6; color: var(--sub); }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0; padding: 0; list-style: none; }

.idx {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 26px; padding: 0 8px; margin-bottom: 14px;
  border: 1px solid var(--line); border-radius: var(--r-ctl);
  background: var(--surface); color: var(--accent);
  font: 500 11px/1 var(--mono); letter-spacing: .08em;
}
.steps .card { display: flex; flex-direction: column; }
.step-n { font: 500 11px/1 var(--mono); letter-spacing: .12em; color: var(--faint); margin-bottom: 14px; }

.ticks li { position: relative; padding-left: 20px; margin-bottom: 9px; font-size: 13.5px; line-height: 1.55; color: var(--sub); }
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: 7px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent);
}

.me-grid { align-items: start; }
.avatar {
  width: 72px; height: 72px; border-radius: var(--r-pill);
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--surface-3); border: 1px dashed var(--line-2);
  color: var(--muted); font: 600 10.5px/1.3 var(--sans); text-align: center; padding: 8px;
}
.avatar.has-photo { border-style: solid; border-color: var(--line-2); background: var(--surface-2); padding: 0; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; border-radius: var(--r-pill); display: block; }
.contact h3 { font-size: 17px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.note { font-size: 13.5px; color: var(--muted); margin: 28px 0 0; }
.note a { font-weight: 600; }
.small { font-size: 12px; }
.muted { color: var(--muted); }

/* fill-in placeholders (personal details to be provided) */
.fill { background: #fff5c2; color: #5a4400; padding: 1px 5px; border-radius: 4px; }
:root[data-theme="dark"] .fill { background: #4a3c00; color: #ffe9a3; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--surface); padding: 36px 0 44px; }
.foot-in { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.foot p { margin: 0; font-size: 12.5px; color: var(--muted); max-width: 620px; }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 50;
  background: var(--backdrop);
  display: grid; place-items: center;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--sh-modal);
  padding: 28px;
  animation: fadeUp .18s cubic-bezier(.16, 1, .3, 1);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.modal h2 { font-size: 19px; margin-bottom: 8px; }
.modal-sub { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: var(--sub); }
.modal-x {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-ctl);
  color: var(--muted); cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.modal-x:hover { background: var(--surface-2); border-color: var(--line-2); color: var(--ink); }
.modal-x svg { width: 14px; height: 14px; }
.modal form label {
  display: block; margin-bottom: 6px;
  font: 600 12px/1 var(--sans); letter-spacing: .04em; color: var(--sub);
}
.modal form input {
  width: 100%; min-height: 44px; padding: 0 14px;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r-ctl);
  font: 500 16px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .15s ease;
}
.modal form input::placeholder { color: var(--faint); letter-spacing: .1em; }
.modal form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.modal form input[aria-invalid="true"] { border-color: var(--err); }
.modal form .btn { margin-top: 14px; }
.modal-note { margin: 16px 0 0; text-align: center; }
.status { min-height: 20px; margin: 10px 0 0; font-size: 13px; color: var(--muted); }
.status.is-error { color: var(--err); }
.status.is-ok { color: var(--ok); }

/* ---------- bare page (404) ---------- */
.bare-body { min-height: 100vh; }
.bare { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.bare .card { width: min(440px, 100%); text-align: center; padding: 36px 28px; }
.bare h1 { font-size: 24px; margin-bottom: 10px; }
.bare .btn { margin-top: 20px; }

/* ---------- v2 display system (light + dark) ---------- */
:root {
  --display: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --pill-grad: linear-gradient(100deg, #14122B 0%, #4F22F2 78%, #7C5CFF 100%);
  --band-bg: #0B0B14;
  --band-ink: #F7F7FA;
  --band-sub: #A9A9BC;
  --band-line: rgba(255, 255, 255, .16);
  --glow: rgba(79, 34, 242, .28);
  --feat-glow: rgba(79, 34, 242, .34);
}
:root[data-theme="dark"] {
  --pill-grad: linear-gradient(100deg, #17152A 0%, #6A3BE0 78%, #7C5CFF 100%);
  --band-bg: #0E0E18;
  --band-ink: #F7F7FA;
  --band-sub: #9C9CAA;
  --band-line: rgba(255, 255, 255, .14);
  --glow: rgba(124, 92, 255, .45);
  --feat-glow: rgba(124, 92, 255, .48);
}
main h1, main h2 { font-family: var(--display); letter-spacing: -.02em; }

/* hero */
.hero { padding: clamp(44px, 6vw, 76px) 0 clamp(28px, 4vw, 44px); text-align: center; }
.hero-in { display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; }
.hero-eyebrow .spark { width: 11px; height: 11px; color: var(--brand); flex-shrink: 0; }
.hero-art { width: min(480px, 78vw); height: auto; display: block; margin: 0 auto 30px; filter: drop-shadow(0 26px 44px var(--glow)); }
.hero h1 { font-size: clamp(46px, 8.4vw, 92px); line-height: 1.02; margin: 0 0 20px; max-width: none; }
.hero .sub { max-width: 660px; margin: 0 0 32px; }
.hero-cta { justify-content: center; margin-bottom: 0; }
.btn.grad { background: var(--pill-grad); color: #fff; border-radius: var(--r-pill); padding: 0 12px 0 22px; gap: 12px; }
.btn.grad:hover { filter: brightness(1.12); color: #fff; }
.btn.grad .arr { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .18); padding: 6px; flex-shrink: 0; }
.btn.outline { background: transparent; border: 1px solid var(--line-2); color: var(--ink); border-radius: var(--r-pill); }
.btn.outline:hover { background: var(--surface-2); border-color: var(--faint); color: var(--ink); }

/* marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); padding: 15px 0; }
.marquee-track { display: flex; width: max-content; animation: mq 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-half { display: flex; align-items: center; gap: 30px; padding-right: 30px; white-space: nowrap; font: 600 11.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.mq-half i { font-style: normal; color: var(--brand); font-size: 10px; }
@keyframes mq { to { transform: translateX(-50%); } }

/* our work */
.work-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: end; padding: 30px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); margin-bottom: 30px; }
.work-head h2 { font-size: clamp(42px, 6vw, 68px); line-height: 1; }
.work-copy p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.65; color: var(--sub); }
.work-copy p:last-child { margin-bottom: 0; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.work-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--surface); box-shadow: var(--sh-card); transition: transform .18s ease, border-color .18s ease; }
.work-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.work-art { aspect-ratio: 16 / 9.4; display: grid; place-items: center; }
.work-art svg { width: 54px; height: 54px; color: rgba(255, 255, 255, .85); filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .35)); }
.art-mail { background: radial-gradient(95% 130% at 12% 8%, #6D3BE8 0%, rgba(109, 59, 232, 0) 55%), radial-gradient(85% 110% at 88% 92%, #E8439A 0%, rgba(232, 67, 154, 0) 58%), linear-gradient(160deg, #241B4D 0%, #120E28 100%); }
.art-video { background: radial-gradient(90% 120% at 85% 10%, #2BD9C9 0%, rgba(43, 217, 201, 0) 52%), radial-gradient(90% 120% at 15% 90%, #7C5CFF 0%, rgba(124, 92, 255, 0) 60%), linear-gradient(200deg, #101B33 0%, #0B0B14 100%); }
.art-web { background: radial-gradient(80% 110% at 50% 0%, #8A5CFF 0%, rgba(138, 92, 255, 0) 55%), radial-gradient(70% 90% at 90% 85%, #3B6BE8 0%, rgba(59, 107, 232, 0) 55%), linear-gradient(180deg, #1A1030 0%, #0E0B1E 100%); }
.art-brand { background: radial-gradient(85% 115% at 20% 85%, #F2A03D 0%, rgba(242, 160, 61, 0) 50%), radial-gradient(90% 120% at 80% 15%, #B02BE2 0%, rgba(176, 43, 226, 0) 58%), linear-gradient(150deg, #2A102E 0%, #140B20 100%); }
.work-cap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line); }
.work-cap h3 { font: 600 14px/1.3 var(--sans); }
.tag { flex-shrink: 0; padding: 5px 10px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--surface-2); font: 600 10.5px/1.3 var(--sans); letter-spacing: .06em; color: var(--muted); white-space: nowrap; }

/* what we offer */
.offer-head { max-width: 720px; }
.offer-head h2 { font-size: clamp(40px, 5.6vw, 64px); line-height: 1.04; }
.offer-label { margin: 26px 0 0; font: 600 13px/1 var(--sans); letter-spacing: .04em; color: var(--ink); }
.offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: end; margin-top: 22px; }
.offer-card { position: relative; min-height: 228px; padding: 18px; border: 1px solid var(--line-2); border-radius: 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.offer-card:hover { transform: translateY(-4px); border-color: var(--brand); background: var(--surface); }
.offer-card h3 { font: 600 14.5px/1.35 var(--sans); }
.offer-card p { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.plus { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); }
.plus svg { width: 12px; height: 12px; }
.offer-card.featured { min-height: 288px; border-color: transparent; background: radial-gradient(130% 95% at 88% 0%, var(--feat-glow) 0%, rgba(124, 92, 255, 0) 58%), var(--surface); overflow: hidden; }
.offer-card.featured .mini-cluster { position: absolute; top: 18px; right: 16px; width: 84px; height: auto; filter: drop-shadow(0 10px 22px var(--glow)); }

/* results */
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.results-head h2 { font-size: clamp(40px, 5.6vw, 64px); line-height: 1.04; }
.ring { width: 108px; height: 108px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(from 210deg, #9FE9E4, #7FA6FF, #8A2BE2, #D24DF5, #9FE9E4); -webkit-mask: radial-gradient(circle, transparent 51%, #000 52%); mask: radial-gradient(circle, transparent 51%, #000 52%); filter: drop-shadow(0 0 22px var(--glow)); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.result { padding: 30px 28px; }
.result + .result { border-left: 1px solid var(--line-2); }
.num { margin: 0 0 10px; font: 700 clamp(44px, 6vw, 68px)/1 var(--display); letter-spacing: -.03em; color: var(--ink); }
.num .unit { color: var(--brand); }
.rl { margin: 0 0 6px; font-size: 13.5px; line-height: 1.55; color: var(--sub); }
.rs { margin: 0; font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }

/* steps + section heads, display type */
.steps .step-n { font: 600 30px/1 var(--display); letter-spacing: 0; color: var(--brand); margin-bottom: 16px; }
.section .sec-head h2 { font-size: clamp(28px, 4vw, 40px); }

/* closing band */
.cta-band { margin-top: clamp(48px, 7vw, 84px); background: var(--band-bg); color: var(--band-ink); padding: clamp(60px, 9vw, 110px) 0; border-top: 1px solid var(--line); }
.cta-in { display: flex; flex-direction: column; align-items: center; text-align: center; }
.wave { width: 170px; height: auto; margin-bottom: 30px; filter: drop-shadow(0 14px 30px rgba(124, 92, 255, .35)); }
.cta-band h2 { font-size: clamp(42px, 7vw, 76px); line-height: 1.04; color: var(--band-ink); }
.cta-band .hl2 { color: #B49AFF; }
.cta-sub { margin: 18px 0 0; max-width: 480px; font-size: 14.5px; line-height: 1.65; color: var(--band-sub); }
.cta-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.pill { min-height: 46px; display: inline-flex; align-items: center; padding: 0 24px; border-radius: var(--r-pill); border: 1px solid var(--band-line); background: rgba(255, 255, 255, .04); color: var(--band-ink); text-decoration: none; font: 600 12.5px/1 var(--sans); letter-spacing: .08em; cursor: pointer; transition: background .15s ease, border-color .15s ease; }
.pill:hover { background: rgba(255, 255, 255, .1); color: var(--band-ink); border-color: rgba(255, 255, 255, .3); }
.pill.grad-edge { background: linear-gradient(90deg, rgba(255, 255, 255, .05) 0%, rgba(124, 92, 255, .55) 100%); }
.pill.solid { background: linear-gradient(90deg, #4F22F2, #7C5CFF); border-color: transparent; color: #fff; }
.pill.solid:hover { filter: brightness(1.1); background: linear-gradient(90deg, #4F22F2, #7C5CFF); color: #fff; }
/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links a { padding: 8px 9px; }
}
@media (max-width: 640px) {
  .g2, .g3 { grid-template-columns: minmax(0, 1fr); }
  .nav-links { display: none; }
  .nav-in { justify-content: space-between; gap: 12px; }
  .wordmark .wm-text { letter-spacing: .14em; font-size: 11.5px; }
  .hero { padding-top: 44px; }
  .cta-row .btn { flex: 1; }
}

/* ---------- v2 responsive ---------- */
@media (max-width: 1020px) {
  .offer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offer-card.featured { min-height: 228px; }
  .nav-links a { padding: 8px 8px; font-size: 12.5px; }
}
@media (max-width: 900px) {
  .work-head { grid-template-columns: minmax(0, 1fr); gap: 18px; align-items: start; }
  .results-grid { grid-template-columns: minmax(0, 1fr); }
  .result + .result { border-left: 0; border-top: 1px solid var(--line-2); }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .work-grid { grid-template-columns: minmax(0, 1fr); }
  .offer-grid { grid-template-columns: minmax(0, 1fr); }
  .offer-card { min-height: 180px; }
  .offer-card.featured { min-height: 220px; }
  .ring { width: 76px; height: 76px; }
  .cta-pills { flex-direction: column; width: 100%; }
  .pill { justify-content: center; }
}
