:root {
  --ink:        #f3f0f8;
  --ink-soft:   #cbc5da;
  --ink-mute:   #948dab;
  --ink-faint:  rgba(243,240,248,0.16);

  --bg:    #07081d;
  --bg-2:  #0b0d28;
  --bg-3:  #11143a;
  --rule:  rgba(243,240,248,0.10);
  --rule-2:rgba(243,240,248,0.05);

  --pink:    #f0408d;
  --pink-native: #d63384;
  --magenta: #ec4899;
  --violet:  #8b5cf6;
  --blue:    #6577f4;
  --cyan:    #5cc8f5;

  /* Brand gradient lifted from the THEA wordmark */
  --grad: linear-gradient(95deg, #6f8bf4 0%, #8b5cf6 36%, #d24aa3 68%, #f0408d 100%);

  /* near-black band beneath the hero image (presentation layout) */
  --hero-band: #06070f;

  /* Display = Outfit (the brand's datasheet typeface); body = Hanken Grotesk */
  --display: 'Outfit', 'Hanken Grotesk', system-ui, sans-serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --gut: clamp(20px, 4.6vw, 68px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--pink); color: #fff; }

/* Scrollbar, themed to the deep-navy / violet brand */
html { scrollbar-width: thin; scrollbar-color: rgba(139,92,246,0.5) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: rgba(139,92,246,0.45);
  border: 3px solid var(--bg-2);
  border-radius: 999px;
  background-clip: padding-box;
  transition: background 0.2s var(--ease);
}
::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.75); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: var(--bg-2); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--bg); padding: 12px 18px; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* Paper grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  mix-blend-mode: overlay; opacity: 0.28;
  background-image: url("assets/brand/grain.svg");
}

/* -------- Layout helpers -------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: max(var(--gut), env(safe-area-inset-left)); padding-right: max(var(--gut), env(safe-area-inset-right)); }
.section { padding: clamp(60px, 8.5vw, 118px) 0; }

/* Shared display type */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(29px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.display em { font-style: normal; font-weight: 300; }
.display .grad, .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.deck {
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}
.block-head { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.block-head .deck { margin: 0 auto; }
.block-head .deck-intro { margin-bottom: clamp(18px, 2.4vw, 28px); }

/* Two-column intro (home sections 2 & 3): heading + supporting text side by side */
.block-split {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 4.5vw, 64px);
  align-items: center; max-width: 900px;          /* match the .tcards width below */
  margin: 0 auto clamp(36px, 4.5vw, 56px); text-align: left;
}
.block-split .display {
  margin: 0;
  font-size: clamp(26px, 3.3vw, 42px);   /* smaller heading, closer to the body text */
  font-weight: 300;                       /* lead clause light... */
}
.block-split .display em { font-weight: 600; }  /* ...accent ("readily achievable") bold */
/* Pink bold gradient accent within body text */
.grad-accent {
  font-weight: 700;
  background: linear-gradient(95deg, #f0408d 0%, #c42a93 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.block-split .block-text { display: flex; flex-direction: column; gap: 0.9em; }
.block-split .deck { margin: 0; max-width: 46ch; font-size: clamp(16px, 1.35vw, 20px); }
@media (max-width: 820px) {
  .block-split { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .block-split .block-text { gap: 0.7em; }
  .block-split .deck { margin: 0 auto; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn-fill { background: #f5f2fa; color: #0a0a14; }
.btn-fill:hover { transform: translateY(-2px); background: #fff; }
.btn-ghost { color: var(--ink); border-color: var(--rule); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--ink-soft); background: rgba(255,255,255,0.06); }
.btn-line { color: var(--ink); border-color: var(--rule); }
.btn-line:hover { border-color: var(--ink-soft); background: rgba(255,255,255,0.04); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* -------- Nav -------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  padding-top: env(safe-area-inset-top);   /* fill the notch / status-bar area */
  background: rgba(7,8,29,0.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; gap: 28px; padding-top: 15px; padding-bottom: 15px; }
.nav-menu { display: contents; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: 8px; margin-right: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color 0.18s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--grad); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* Nav dropdown */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item.has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 22px; }
.nav-sub {
  position: absolute; top: calc(100% + 18px); left: -12px;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 220px; padding: 8px;
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: 0 22px 44px -22px rgba(0,0,0,0.75);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 95;
}
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub a { padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.nav-sub a::after { display: none; }
.nav-sub a:hover { background: rgba(255,255,255,0.05); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-portal { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color 0.18s; }
.nav-portal:hover { color: var(--ink); }
/* Mobile bar actions (CTA + burger) — hidden on desktop */
.nav-mobile { display: none; }
.nav-toggle {
  display: none; width: 44px; height: 44px; flex: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--rule); border-radius: 12px;
  cursor: pointer; padding: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-toggle:hover, .nav-toggle:active { background: rgba(255,255,255,0.09); border-color: rgba(243,240,248,0.2); }
.nav-toggle span { width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.28s var(--ease), opacity 0.2s; }
.nav.open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* -------- Hero (presentation layout: image banner + brand band) -------- */
.hero { overflow: hidden; isolation: isolate; }
/* Top: summit / Milky-Way image as a wide banner (no text over it).
   Height tracks viewport width so the full ~2.6:1 scene stays visible
   instead of zooming/cropping the sides on tall screens. */
.hero-banner {
  position: relative; height: clamp(260px, 40vw, 660px);
  background: url("assets/brand/hero-summit.jpg") no-repeat center 40% / cover;
}
/* fade the image base into the black band so the mountains merge seamlessly */
.hero-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(6,7,15,0.20) 0%, transparent 22%, transparent 60%, var(--hero-band) 100%);
}
/* Bottom: black band with the brand lock-up */
.hero-brand {
  background: var(--hero-band);
  padding: clamp(26px, 3.4vw, 52px) 0 clamp(40px, 5.5vw, 76px);
}
.hero-brand-grid {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px); align-items: center;
}
.hero-brand-left img {
  width: clamp(238px, 31vw, 430px); height: auto; display: block;
  filter: drop-shadow(0 12px 34px rgba(0,0,0,0.5));
}
.hero-tagline {
  margin: clamp(14px, 1.6vw, 22px) 0 0;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(17px, 1.9vw, 26px); letter-spacing: 0.01em;
  color: var(--ink);
}
/* editorial mission statement beside the brand lock-up */
.hero-mission {
  justify-self: end; max-width: 48ch; color: var(--ink-soft);
}
.hero-mission p { margin: 0; font-family: var(--display); }
.hero-mission .hm-eyebrow {
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink); margin: 0 0 16px;
}
.hero-mission .hm-lead {
  font-weight: 500; font-size: clamp(20px, 2.05vw, 30px);
  line-height: 1.32; letter-spacing: -0.01em; color: var(--ink);
}
.hero-mission .hm-sub {
  font-weight: 400; font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.6; color: var(--ink-soft); margin-top: 0.7em;
}
@media (max-width: 760px) {
  .hero-banner { height: clamp(230px, 60vw, 430px); background-position: center 34%; }
  .hero-brand-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-mission { justify-self: stretch; max-width: none; }
}

/* -------- About: Our Story timeline -------- */
.story { background: var(--bg); }
.story-head { max-width: 720px; margin: 0 auto clamp(46px, 6vw, 78px); text-align: center; }
.story-head .display { margin-bottom: 18px; }
.tl { position: relative; max-width: 940px; margin: 0 auto; }
.tl::before {
  content: ""; position: absolute; top: 6px; bottom: 6px; left: 50%; width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(240,64,141,0.55) 12%, rgba(139,92,246,0.55) 88%, transparent);
}
.tl-item { position: relative; width: 50%; box-sizing: border-box; padding-bottom: clamp(34px, 4.6vw, 60px); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item.l { left: 0; padding-right: clamp(46px, 5.6vw, 80px); text-align: right; }
.tl-item.r { left: 50%; padding-left: clamp(46px, 5.6vw, 80px); text-align: left; }
.tl-node {
  position: absolute; top: -4px; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 50% 0, var(--bg-3), var(--bg-2));
  border: 1px solid var(--rule);
  box-shadow: 0 0 0 6px var(--bg), 0 16px 30px -16px rgba(0,0,0,0.85);
  z-index: 1; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tl-item:hover .tl-node { transform: translateY(-3px); border-color: rgba(240,64,141,0.5); }
.tl-item.l .tl-node { right: -30px; }
.tl-item.r .tl-node { left: -30px; }
.tl-ic { width: 30px; height: 30px; display: block; }
.tl-year {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(21px, 2.4vw, 31px); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--pink); margin: 0 0 4px;
}
.tl-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.25; letter-spacing: 0;
  color: var(--ink); margin: 0 0 14px;
}
/* PDF-style accent variation across the eras (brand pink / purple / blue) */
.tl-item:nth-child(6n+1) .tl-year { color: #f0408d; }
.tl-item:nth-child(6n+2) .tl-year { color: #8b5cf6; }
.tl-item:nth-child(6n+3) .tl-year { color: #6f8bf4; }
.tl-item:nth-child(6n+4) .tl-year { color: #f0408d; }
.tl-item:nth-child(6n+5) .tl-year { color: #8b5cf6; }
.tl-item:nth-child(6n)   .tl-year { color: #6f8bf4; }
.tl-item p { font-size: 15.5px; line-height: 1.62; color: var(--ink-mute); margin: 0; max-width: 42ch; }
.tl-item p + p { margin-top: 0.75em; }
.tl-item.l p { margin-left: auto; }
@media (max-width: 760px) {
  .tl::before { left: 28px; }
  .tl-item, .tl-item.l, .tl-item.r { width: 100%; left: 0; text-align: left; padding-left: 74px; padding-right: 0; }
  .tl-item.l .tl-node, .tl-item.r .tl-node { left: 0; right: auto; }
  .tl-node { width: 56px; height: 56px; }
  .tl-item.l p { margin-left: 0; }
  .tl-item p { max-width: none; }
}

/* -------- Problem -------- */
.problem { background: var(--bg); border-bottom: 1px solid var(--rule); }
.problem .block-head { text-align: left; margin-left: 0; }
.problem .block-head .deck { margin-left: 0; }

.problem-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin: clamp(40px, 5vw, 64px) 0 clamp(70px, 9vw, 110px);
}
.psplit {
  padding: 34px clamp(24px, 2.6vw, 36px) 36px;
  border: 1px solid var(--rule); border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}
.psplit-kicker {
  font-size: 14px; font-weight: 600; color: var(--pink);
  margin: 0 0 14px;
}
.psplit h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(23px, 2.4vw, 31px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.psplit h3 em { font-style: normal; color: var(--ink); }
.psplit p { font-size: 16px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 22px; }
.ttags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ttags li {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 13px; border: 1px solid var(--rule); border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

/* Threat cards (home Section 2) */
.tcards {
  list-style: none; margin: 0 auto; padding: 0; max-width: 900px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px);
}
.tcards li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  padding: clamp(24px, 3vw, 32px) 16px;
  border: 1px solid var(--rule); border-radius: 16px; background: rgba(255,255,255,0.02);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.tcards li:hover { border-color: rgba(240,64,141,0.4); transform: translateY(-3px); }
.tcards .glyph { width: 44px; height: 44px; color: var(--pink-native); transition: color 0.25s var(--ease); }
.tcards li:hover .glyph { color: var(--pink); }
.tcards .glyph .ic { width: 100%; height: 100%; display: block; fill: currentColor; }
.tcards .lbl { font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.35; }
@media (max-width: 720px) { .tcards { grid-template-columns: repeat(2, 1fr); } }

.vectors-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.vectors-head h3 { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.2vw, 30px); margin: 0; letter-spacing: -0.015em; }
.vectors-head .meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.vectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.6vw, 40px); }
.vector { padding-top: 26px; border-top: 1px solid var(--rule); }
.vector .icn { width: 50px; height: 50px; display: block; margin-bottom: 20px; }
.vector .icn img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(240,64,141,0.2)); }
.vector h4 { font-family: var(--display); font-weight: 400; font-style: normal; font-size: 21px; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 10px; }
.vector p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

/* -------- How it works -------- */
.how { background: var(--bg-2); border-bottom: 1px solid var(--rule); }
.how-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.how-lead { position: sticky; top: 100px; }
.how-lead .display { font-size: clamp(32px, 4.4vw, 60px); }
.principles { list-style: none; padding: 0; margin: 32px 0 0; }
.principles li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 16px; color: var(--ink-soft);
}
.principles li:last-child { border-bottom: 1px solid var(--rule); }

.how-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.how-steps li {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  align-items: start;
  padding: 26px 0; border-top: 1px solid var(--rule);
}
.how-steps li:last-child { border-bottom: 1px solid var(--rule); }
.step-no {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; line-height: 1.2; width: 26px; flex-shrink: 0;
  color: var(--ink-mute);
  font-feature-settings: "tnum";
}
.how-steps h4 { font-family: var(--display); font-weight: 400; font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 8px; }
.how-steps p { font-size: 15.5px; color: var(--ink-mute); line-height: 1.6; margin: 0; max-width: 52ch; }

/* -------- Services -------- */
.services { padding: clamp(78px, 11vw, 150px) 0 0; }
.services-intro { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 6vw, 96px); margin-bottom: clamp(56px, 8vw, 110px); align-items: end; }
.services-intro .display { font-size: clamp(34px, 4.6vw, 64px); margin: 0; }

.spread {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
  padding: clamp(56px, 8vw, 100px) 0; border-top: 1px solid var(--rule);
}
.spread:last-of-type { border-bottom: 1px solid var(--rule); }
.spread.reverse > .spread-body { order: 2; }
.spread.reverse > .spread-visual { order: 1; }

.spread-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 3vw, 40px);
  border-radius: 18px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(101,119,244,0.10), transparent 60%),
    var(--bg-3);
  border: 1px solid var(--rule);
}

/* Product mock card */
.mock {
  width: 100%; max-width: 380px;
  background: rgba(10,12,38,0.85);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow: 0 30px 70px -36px rgba(0,0,0,0.7);
  font-family: var(--sans);
}
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.mock-sev { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 6px; }
.mock-sev-high { color: #ffc0c8; background: rgba(244,63,94,0.16); }
.mock-sev-ok { color: #b9efd0; background: rgba(79,212,154,0.16); }

.mock-rows { display: grid; gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); border-radius: 9px; overflow: hidden; margin-bottom: 14px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 13px; background: rgba(255,255,255,0.02); font-size: 13px; }
.mock-row span { color: var(--ink-mute); }
.mock-row b { color: var(--ink); font-weight: 600; }

.mock-score { margin-bottom: 16px; }
.mock-score-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 7px; }
.mock-score-top span { color: var(--ink-mute); }
.mock-score-top b { color: var(--ink); }
.mock-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.mock-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #f59e0b, #f0408d); }

.mock-actions { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 7px; }
.mock-actions li { position: relative; padding-left: 22px; font-size: 13px; color: var(--ink-soft); }
.mock-actions li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  font-size: 12px; font-weight: 700; color: #4fd49a;
}

.mock-finds { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); border-radius: 9px; overflow: hidden; }
.mock-finds li { display: flex; align-items: center; gap: 10px; padding: 11px 13px; background: rgba(255,255,255,0.02); font-size: 13px; color: var(--ink); }
.mock-finds li span { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-mute); }
.mock-finds em { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.mock-finds .f-crit { background: #f6618a; }
.mock-finds .f-high { background: #f59e0b; }
.mock-finds .f-med { background: #5cc8f5; }

.mock-foot { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; padding-top: 14px; border-top: 1px solid var(--rule-2); }

.spread-body h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px, 3.8vw, 52px); line-height: 1.02; letter-spacing: -0.03em;
  margin: 14px 0 24px; font-variation-settings: "opsz" 144; text-wrap: balance;
}
.spread-body h3 em { font-style: normal; font-weight: 300; }
.spread-body .s-deck { font-size: 16.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 28px; max-width: 54ch; }
.features { list-style: none; padding: 0; margin: 0 0 30px; border-top: 1px solid var(--rule); }
.features li {
  padding: 13px 0; border-bottom: 1px solid var(--rule);
  font-size: 15px; color: var(--ink-soft); line-height: 1.45;
}

/* -------- Audience -------- */
.audience { border-top: 1px solid var(--rule); }
.audience-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); }
.col {
  padding: 44px 30px 44px 0; border-right: 1px solid var(--rule);
  min-height: 320px; display: flex; flex-direction: column;
}
.col:last-child { border-right: none; padding-right: 0; }
.col:not(:first-child) { padding-left: 30px; }
.col h4 { font-family: var(--display); font-weight: 400; font-style: normal; font-size: clamp(22px, 2.2vw, 27px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; }
.col p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; }
.col-list { list-style: none; padding: 0; margin: 0 0 auto; }
.col-list li { position: relative; padding-left: 18px; font-size: 14px; color: var(--ink-mute); line-height: 1.45; margin-bottom: 9px; }
.col-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
.col .read { margin-top: 24px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); align-self: flex-start; transition: gap 0.2s, color 0.2s; border-bottom: 1.5px solid var(--pink); padding-bottom: 4px; }
.col .read:hover { color: var(--pink); }

/* -------- Use cases -------- */
.cases { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cases-ui { max-width: 1000px; margin: 0 auto; }
.cases-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.case-tab {
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink-soft);
  padding: 10px 18px; border: 1px solid var(--rule); border-radius: 999px;
  background: rgba(255,255,255,0.02); cursor: pointer; transition: all 0.2s var(--ease);
}
.case-tab:hover { color: var(--ink); border-color: var(--ink-faint); }
.case-tab.is-active { color: #0a0a14; border-color: transparent; background: #f5f2fa; }

.cases-stage {
  border: 1px solid var(--rule); border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  padding: clamp(28px, 4vw, 52px);
}
.case-panel[hidden] { display: none; }
.case-panel { animation: caseIn 0.4s var(--ease); }
@keyframes caseIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.case-hook {
  font-family: var(--display); font-style: normal; font-weight: 300;
  font-size: clamp(22px, 2.8vw, 36px); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 36px; max-width: 26ch; text-wrap: balance;
}
.case-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 44px); }
.clabel { display: inline-block; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.clabel-bad { color: #f6889c; }
.clabel-good { color: #6fd6a0; }
.case-what p, .case-thea p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 16px; }
.case-what ul { list-style: none; padding: 0; margin: 0; }
.case-what li { position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-mute); margin-bottom: 8px; line-height: 1.45; }
.case-what li::before { content: "×"; position: absolute; left: 0; color: #f6618a; font-weight: 700; }
.case-thea { border-left: 1px solid var(--rule); padding-left: clamp(24px, 3vw, 44px); }
.case-thea ul { list-style: none; padding: 0; margin: 0; }
.case-thea li { position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-mute); margin-bottom: 8px; line-height: 1.45; }
.case-thea li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: #6fd6a0; }
.case-sub { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin: 22px 0 11px; }
.case-what .case-sub { color: #f6889c; }
.case-thea .case-sub { color: #6fd6a0; }
.case-out { font-size: 14.5px; color: var(--ink); margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--rule); }
.case-out strong { color: var(--ink); font-weight: 700; }
.case-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(28px, 3.5vw, 44px); padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--rule);
}

/* -------- Pricing -------- */
.pricing { border-top: 1px solid var(--rule); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 34px clamp(24px, 2.4vw, 34px) 30px;
  border: 1px solid var(--rule); border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}
.plan-feature { border-color: rgba(240,64,141,0.4); background: rgba(255,255,255,0.04); }
.plan-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 600;
  color: #fff; background: var(--pink); padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-family: var(--display); font-size: 24px; letter-spacing: -0.01em; display: block; margin-bottom: 8px; }
.plan-blurb { font-size: 14px; color: var(--ink-mute); margin: 0 0 22px; line-height: 1.5; min-height: 42px; }
.plan-price { font-family: var(--display); font-weight: 400; font-size: clamp(48px, 5vw, 62px); line-height: 1; letter-spacing: -0.03em; margin: 0; }
.plan-price .cur { font-size: 0.5em; vertical-align: super; color: var(--ink-soft); margin-right: 2px; }
.plan-price .per { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--ink-mute); margin-left: 6px; letter-spacing: 0; }
.plan-price-soft { font-style: normal; color: var(--ink-soft); font-size: clamp(34px, 3.6vw, 44px); }
.plan-annual { font-size: 13.5px; color: var(--ink-mute); margin: 12px 0 24px; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.plan-feats li { position: relative; padding: 10px 0 10px 26px; border-top: 1px solid var(--rule); font-size: 14.5px; color: var(--ink-soft); }
.plan-feats li::before { content: "✓"; position: absolute; left: 0; top: 10px; color: #4fd49a; font-weight: 700; }
.pricing-foot { text-align: center; font-size: 13px; color: var(--ink-mute); margin: 32px 0 0; }

/* -------- About -------- */
.about { border-top: 1px solid var(--rule); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.about-aside { position: sticky; top: 100px; }
.about-aside .display { font-size: clamp(32px, 4vw, 52px); }
.about-tag { font-family: var(--display); font-style: normal; font-size: 18px; color: var(--ink-soft); margin: 18px 0 0; line-height: 1.45; }
.about-body p { font-size: clamp(16px, 1.2vw, 18.5px); line-height: 1.68; color: var(--ink-soft); margin: 0 0 22px; max-width: 64ch; text-wrap: pretty; }
.about-body p.lead { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.55; color: var(--ink); font-family: var(--display); font-weight: 400; }
.about-body p strong { color: #fff; font-weight: 600; }

/* -------- Closing -------- */
.closing { position: relative; padding: clamp(100px, 14vw, 180px) 0; text-align: center; overflow: hidden; border-top: 1px solid var(--rule); }
.closing-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 90%; pointer-events: none;
  background:
    radial-gradient(55% 70% at 50% 35%, rgba(240,64,141,0.24), transparent 64%),
    radial-gradient(45% 60% at 18% 60%, rgba(101,119,244,0.2), transparent 70%),
    radial-gradient(40% 55% at 82% 55%, rgba(92,200,245,0.14), transparent 72%);
}
.closing-inner { position: relative; }
.closing h2 {
  font-family: var(--display); font-weight: 300; font-style: normal;
  font-size: clamp(38px, 5.6vw, 84px); line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 30px; text-wrap: balance;
}
.closing h2 .roman { font-style: normal; font-weight: 400; }
.closing p { max-width: 54ch; margin: 0 auto 42px; font-size: clamp(16px, 1.3vw, 20px); color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; }
.closing-actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* -------- Footer -------- */
footer { border-top: 1px solid var(--rule); padding: 64px 0 30px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 70px); margin-bottom: 48px; }
.foot-brand img { height: 26px; margin-bottom: 22px; }
.foot-brand p { font-size: 15px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 20px; max-width: 38ch; }
.foot-brand .foot-tag { font-family: var(--display); font-style: normal; font-size: 16px; color: var(--ink-soft); }
.col-h { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 18px; font-weight: 600; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 11px; }
footer .col-h + ul a, .foot-grid a { font-size: 14.5px; color: var(--ink-soft); transition: color 0.15s; }
.foot-grid a:hover { color: var(--ink); }
.foot-bottom { border-top: 1px solid var(--rule); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-mute); flex-wrap: wrap; gap: 14px; }
.foot-bottom .legal { display: flex; gap: 24px; align-items: center; }
.geo { display: inline-flex; align-items: center; opacity: 0.9; }
.geo img { width: 18px; height: 18px; border-radius: 50%; display: block; }
.geo[hidden] { display: none; }
.foot-bottom .legal a { color: var(--ink-mute); }
.foot-bottom .legal a:hover { color: var(--ink-soft); }

/* -------- Reveal animation -------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-duration: 0.9s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* -------- Responsive -------- */
@media (max-width: 1040px) {
  .nav-menu { display: none; }
  .nav-mobile { display: flex; align-items: center; gap: 12px; margin-left: auto; }
  .nav-toggle { display: flex; }
  .nav-cta-m { padding: 11px 18px; font-size: 14.5px; }
  .nav.open .nav-cta-m { display: none; }   /* avoid duplicate CTA when the drawer is open */
  .problem-split { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-lead { position: static; }
  .services-intro { grid-template-columns: 1fr; align-items: start; }
  .spread, .spread.reverse > .spread-body, .spread.reverse > .spread-visual { grid-template-columns: 1fr; }
  .spread { grid-template-columns: 1fr; }
  .spread.reverse > .spread-body, .spread.reverse > .spread-visual { order: 0; }
  .spread-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .vectors { grid-template-columns: 1fr 1fr; }
  .audience-row { grid-template-columns: 1fr 1fr; }
  .col:nth-child(2) { border-right: none; }
  .col:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .col:nth-child(3) { padding-left: 0; }
  .col:nth-child(odd) { padding-right: 30px; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan-feature { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .brand img { height: 30px; }
  .vectors { grid-template-columns: 1fr; }
  .audience-row { grid-template-columns: 1fr; }
  .col { border-right: none !important; border-bottom: 1px solid var(--rule); padding: 36px 0 !important; min-height: 0; }
  .col:last-child { border-bottom: none; }
  .case-cols { grid-template-columns: 1fr; }
  .case-thea { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .closing-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .closing-actions .btn { justify-content: center; }
  /* full-width, stacked CTAs read cleaner and are easier to tap on phones */
  .home-cta { flex-direction: column; align-items: stretch; }
  .home-cta .btn { justify-content: center; }
  .svc-go { justify-content: flex-start; }
}
/* clear the home-indicator at the very bottom of the page */
footer { padding-bottom: env(safe-area-inset-bottom); }

/* -------- Mobile nav drawer -------- */
@media (max-width: 1040px) {
  .nav.open { background: var(--bg-2); }
  .nav.open .nav-menu {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 95;
    background: var(--bg-2);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 26px 44px -22px rgba(0,0,0,0.7);
    padding: 6px var(--gut) calc(28px + env(safe-area-inset-bottom));
    max-height: calc(100svh - 56px - env(safe-area-inset-top)); overflow-y: auto;
    animation: navDrop 0.26s var(--ease);
  }
  .nav.open .nav-links { display: flex; flex-direction: column; margin: 0; }
  .nav.open .nav-links a {
    padding: 12px 2px; border-bottom: 1px solid var(--rule-2);
    font-size: 16px; font-weight: 500; color: var(--ink-soft);
    transition: color 0.18s;
  }
  .nav.open .nav-links a:hover,
  .nav.open .nav-links a.is-current { color: var(--ink); }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .nav-actions {
    display: flex; flex-direction: column; align-items: stretch; gap: 14px;
    margin: 4px 0 0; padding-top: 20px;
  }
  .nav.open .nav-portal { padding: 2px; font-size: 15px; text-align: center; }
  .nav.open .nav-actions .btn { justify-content: center; padding: 14px 22px; font-size: 15.5px; }
  /* dropdown becomes a collapsible accordion in the drawer */
  .nav.open .nav-item { display: block; }
  .nav.open .nav-item.has-sub::after { display: none; }   /* hide desktop hover-bridge */
  .nav.open .nav-item.has-sub > a {
    display: flex; align-items: center; justify-content: space-between;
  }
  /* chevron on the section header */
  .nav.open .nav-item.has-sub > a::after {
    content: ""; display: block; position: static;
    width: 8px; height: 8px; margin-right: 3px; flex: none;
    border-right: 2px solid var(--ink-mute); border-bottom: 2px solid var(--ink-mute);
    background: none; transform: rotate(45deg);
    transition: transform 0.28s var(--ease);
  }
  .nav.open .nav-item.is-open.has-sub > a::after { transform: rotate(225deg); }
  .nav.open .nav-sub {
    position: static; visibility: visible; transform: none;
    background: none; border: 0; box-shadow: none; min-width: 0;
    max-height: 0; opacity: 0; overflow: hidden; padding: 0 0 0 16px; gap: 0;
    transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease), padding 0.3s var(--ease);
  }
  .nav.open .nav-item.is-open .nav-sub { max-height: 60vh; opacity: 1; padding: 2px 0 12px 16px; }
  .nav.open .nav-sub a {
    padding: 12px 0; font-size: 14.5px; font-weight: 500; color: var(--ink-mute);
    border-bottom: 1px solid var(--rule-2);
  }
  .nav.open .nav-sub a:last-child { border-bottom: 0; }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================================================
   Multi-page additions
   ====================================================================== */

/* Current nav item */
.nav-links a.is-current { color: var(--ink); }
.nav-links a.is-current::after { width: 100%; }

/* -------- Interior page header -------- */
.page-head {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule);
  padding: clamp(58px, 9vh, 100px) 0 clamp(54px, 8vw, 96px);
}
.page-head-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(90% 80% at 80% -10%, rgba(101,119,244,0.14), transparent 60%),
    linear-gradient(180deg, #0c0e2b 0%, var(--bg) 100%);
}
.page-head-bg::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background: url("assets/brand/brand-waves.webp") no-repeat center bottom;
  background-size: 130% auto; opacity: 0.3; mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 70%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 70%);
}
.page-head-inner { position: relative; z-index: 1; max-width: 900px; }
.page-kicker { font-size: 14px; font-weight: 600; color: var(--pink); margin: 0 0 16px; }
.page-head h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4.8vw, 60px); line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 20px; text-wrap: balance;
}
.page-head h1 em { font-style: normal; font-weight: 300; }
.page-lede { font-size: clamp(17px, 1.4vw, 21px); color: var(--ink-soft); line-height: 1.55; max-width: 64ch; margin: 0; text-wrap: pretty; }
.page-head-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3.4vw, 40px); }

/* -------- Services teaser (home) -------- */
.services-teaser { border-top: 1px solid var(--rule); }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.duo-card {
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--rule); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}
.duo-label { font-size: 13px; font-weight: 600; color: var(--pink); margin-bottom: 16px; }
.duo-card h3 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 14px; }
.duo-card p { font-size: 15.5px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 22px; }
.duo-card .read { margin-top: auto; }

/* -------- Explore bands (home) -------- */
.bands-list { border-top: 1px solid var(--rule); }
.band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(28px, 4vw, 46px) 0; border-bottom: 1px solid var(--rule);
  transition: padding-left 0.25s var(--ease);
}
.band:hover { padding-left: 10px; }
.band-label { font-size: 13px; font-weight: 600; color: var(--pink); display: block; margin-bottom: 8px; }
.band-line { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 3.2vw, 40px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
.band-line em { font-style: normal; color: var(--ink-soft); }
.band-go { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; display: inline-flex; gap: 8px; align-items: center; }
.band-go .arrow { transition: transform 0.2s var(--ease); }
.band:hover .band-go .arrow { transform: translateX(4px); }

/* -------- Audience blocks (how-we-help) -------- */
.aud-block { border-top: 1px solid var(--rule); }
.aud-block.alt { background: var(--bg-2); }
.aud-head { max-width: 780px; margin: 0 0 clamp(34px, 5vw, 54px); }
.aud-head .display { font-size: clamp(30px, 4vw, 54px); }
.aud-head .deck { margin: 0; }
.challenge { margin: 0; border-top: 1px solid var(--rule); }
.challenge > div {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 56px);
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.challenge dt { margin: 0; font-size: 16px; color: var(--ink-mute); line-height: 1.5; }
.challenge dd { margin: 0; font-size: 16px; color: var(--ink); line-height: 1.5; position: relative; padding-left: 24px; }
.challenge dd::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--pink); font-weight: 600; }

/* -------- Home sections 2 & 3 -------- */
.home-sec.alt { background: var(--bg-2); }
.home-sec .block-head { margin-bottom: clamp(30px, 4vw, 46px); }
.ttags-center { justify-content: center; max-width: 760px; margin: 0 auto; }
.safety-line {
  max-width: 40ch; margin: clamp(36px, 5vw, 56px) auto 0; text-align: center;
  font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3; letter-spacing: -0.02em; color: var(--ink-mute); text-wrap: balance;
}
.safety-line strong {
  display: block; margin-top: 8px; font-weight: 600;
  background: linear-gradient(95deg, #f0408d 0%, #c42a93 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.home-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: clamp(28px, 4vw, 40px); }

/* -------- Legal pages -------- */
.legal-updated { font-size: 14px; color: var(--ink-mute); margin: 14px 0 0; }
.legal-page { padding: clamp(48px, 7vw, 84px) 0 clamp(70px, 9vw, 120px); }
.legal-doc { max-width: 760px; }
.legal-doc h2 { font-family: var(--display); font-weight: 400; font-size: clamp(21px, 2.3vw, 28px); letter-spacing: -0.02em; margin: 40px 0 14px; }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.legal-doc ul { margin: 0 0 18px; padding-left: 22px; }
.legal-doc li { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 9px; }
.legal-doc strong { color: var(--ink); font-weight: 600; }
.legal-doc a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.legal-doc a:hover { color: var(--pink); }

/* -------- About article -------- */
.about-article { max-width: 720px; }
.about-article p { font-size: clamp(16px, 1.2vw, 18.5px); line-height: 1.7; color: var(--ink-soft); margin: 0 0 24px; text-wrap: pretty; }
.about-article p:last-child { margin-bottom: 0; }
.about-article .about-lead, .about-article p:first-child {
  font-family: var(--display); font-weight: 400; font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.5; color: var(--ink); margin-bottom: 30px;
}
.about-article strong { color: #fff; font-weight: 600; }

/* -------- Values strip -------- */
.values-strip { border-top: 1px solid var(--rule); }
.values-strip.alt { background: var(--bg-2); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.value-ic { width: 52px; height: 52px; margin: 0 0 16px; }

/* Two-service box (how-we-help) */
.svc-section.alt { background: var(--bg-2); }
.svc-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); max-width: 920px; margin: 0 auto; }
.svc-box {
  display: flex; flex-direction: column; gap: 16px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--rule); border-radius: 18px; background: rgba(255,255,255,0.02);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.svc-box:hover { border-color: rgba(240,64,141,0.4); transform: translateY(-3px); background: rgba(255,255,255,0.04); }
.svc-box h3 { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2vw, 25px); letter-spacing: -0.015em; line-height: 1.18; margin: 0; }
.svc-box p { color: var(--ink-soft); margin: 0; font-size: 15px; line-height: 1.6; }
.svc-go { margin-top: auto; color: var(--pink); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.svc-go .arrow { transition: transform 0.2s var(--ease); }
.svc-box:hover .svc-go .arrow { transform: translateX(4px); }
@media (max-width: 760px) { .svc-duo { grid-template-columns: 1fr; } }
.value h3 { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.2vw, 28px); margin: 0 0 12px; letter-spacing: -0.015em; }
.value p { font-size: 15px; color: var(--ink-mute); line-height: 1.6; margin: 0; }
.values-tag { text-align: center; font-family: var(--display); font-style: normal; font-size: clamp(20px, 2.4vw, 30px); color: var(--ink); margin: clamp(40px, 5vw, 64px) 0 0; }

/* -------- Benefits -------- */
.benefits-sec { background: var(--bg-2); border-top: 1px solid var(--rule); }
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.bcard { padding: clamp(24px, 2.6vw, 32px); border: 1px solid var(--rule); border-radius: 14px; background: rgba(255,255,255,0.02); }
.bcard h3 { font-family: var(--display); font-weight: 400; font-size: 21px; margin: 0 0 10px; letter-spacing: -0.015em; }
.bcard p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

/* -------- Routes to compromise (typographic) -------- */
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.6vw, 40px) clamp(20px, 3vw, 48px); }
.route { padding-top: 22px; border-top: 1px solid var(--rule); }
.route h4 { font-family: var(--display); font-weight: 400; font-style: normal; font-size: 21px; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 10px; }
.route p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; margin: 0; }
@media (max-width: 1040px) { .routes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .routes-grid { grid-template-columns: 1fr; } }

/* -------- Approach (how-it-works) -------- */
.approach { border-top: 1px solid var(--rule); background: var(--bg-2); }
.approach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.approach-quote p { font-family: var(--display); font-style: normal; font-weight: 300; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.12; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
.approach-quote em { color: var(--pink); }
.approach-body p { font-size: clamp(16px, 1.2vw, 18px); color: var(--ink-soft); line-height: 1.65; margin: 0 0 18px; }
.approach-body p:last-child { margin-bottom: 0; }
.approach-body em { font-style: normal; color: var(--ink); }

/* -------- Contact -------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-info h2 { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 3vw, 38px); margin: 0 0 16px; letter-spacing: -0.02em; }
.contact-info > p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 28px; max-width: 46ch; }
.contact-list { margin: 0; border-top: 1px solid var(--rule); }
.contact-list > div { padding: 16px 0; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contact-list dt { font-size: 13px; letter-spacing: 0.03em; color: var(--ink-mute); margin: 0; }
.contact-list dd { margin: 0; font-size: 15px; color: var(--ink); }
.contact-list a:hover { color: var(--pink); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,0.03); border: 1px solid var(--rule);
  border-radius: 10px; padding: 12px 14px; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(240,64,141,0.15); }
.field select {
  appearance: none; -webkit-appearance: none;
  color-scheme: dark; /* dark native dropdown so selected text stays legible */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23948dab' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.field option { background: #11143a; color: var(--ink); }
.contact-form .btn { grid-column: 1 / -1; justify-self: start; }
.form-note { grid-column: 1 / -1; font-size: 13px; color: var(--ink-mute); margin: 0; }
.form-note a { color: var(--ink-soft); border-bottom: 1px solid var(--rule); }

/* -------- Multi-page responsive -------- */
@media (max-width: 1040px) {
  .duo { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bgrid { grid-template-columns: 1fr 1fr; }
  .challenge > div { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 620px) {
  .values { grid-template-columns: 1fr; gap: 28px; }
  .bgrid { grid-template-columns: 1fr; }
  .band { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-form { grid-template-columns: 1fr; }
}
