/* ─────────────────────────────────────────────────────────
   wellesleycove.com - shared stylesheet
   Brand tokens per WCG Brand Guidelines 2023.
   Mobile-first; breakpoints at 580 / 720 / 880 / 1080 / 1280.
   ───────────────────────────────────────────────────────── */

:root {
  --navy: #00143C;
  --navy-deep: #000718;
  --navy-mid: #0A1F4A;
  --lavender: #A9A4C5;
  --lavender-deep: #8780B0;
  --lavender-light: #DAD7E8;
  --pink: #FFE6E3;
  --pink-deep: #F5BFB8;
  --white: #FFFFFF;
  --soft: #F4F2F8;
  --muted: #8B91A6;
  --line: rgba(255, 255, 255, 0.10);
  --line-dim: rgba(255, 255, 255, 0.05);
  --serif: 'Onest', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --accent: 'Playfair Display', "Editor's Note", Georgia, serif;
  --sans: 'Inter Tight', 'Kollektif', 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  background: var(--navy-deep);
  color: var(--lavender-light);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--lavender); color: var(--navy-deep); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--lavender-deep); border-radius: 10px; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--white);
  color: var(--navy-deep);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

/* ─────────────────────────────────────────────────────────
   Layout
   ───────────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) { .wrap { padding: 0 32px; } }
@media (min-width: 1080px) { .wrap { padding: 0 40px; } }

section {
  padding: 56px 0;
  position: relative;
}
@media (min-width: 720px) { section { padding: 72px 0; } }
@media (min-width: 1080px) { section { padding: 90px 0; } }

/* ─────────────────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--white);
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5.4vw, 5rem); line-height: 0.98; letter-spacing: -0.04em; }
@media (max-width: 539px) { h1 { overflow-wrap: anywhere; word-break: break-word; } }
@media (min-width: 720px) { h1 { letter-spacing: -0.045em; line-height: 0.96; } }
h2 { font-size: clamp(1.7rem, 4.6vw, 3.6rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.7rem); line-height: 1.2; letter-spacing: -0.025em; }
h4 { font-size: 1.05rem; letter-spacing: -0.02em; }

.serif    { font-family: var(--serif); font-weight: 600; letter-spacing: -0.025em; }
.serif-it { font-family: var(--accent); font-style: normal; font-weight: 400; letter-spacing: -0.025em; }
.it       { font-family: var(--accent); font-style: normal; font-weight: 400; color: var(--lavender); letter-spacing: -0.03em; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  display: inline-block;
}
.kicker-pink { color: var(--pink-deep); }
.kicker-muted { color: var(--muted); }

.body-lg {
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
  color: var(--lavender-light);
  text-wrap: pretty;
}
@media (min-width: 720px) { .body-lg { font-size: 18px; } }

.body-xl {
  font-size: 18px;
  line-height: 1.55;
  max-width: 60ch;
  color: var(--lavender-light);
  text-wrap: pretty;
}
@media (min-width: 720px) { .body-xl { font-size: 20px; } }
@media (min-width: 1080px) { .body-xl { font-size: 22px; } }

.text-lavender { color: var(--lavender); }
.text-light    { color: var(--lavender-light); }
.text-white    { color: var(--white); }
.text-muted    { color: var(--muted); }

/* ─────────────────────────────────────────────────────────
   Brand primitives
   ───────────────────────────────────────────────────────── */

.dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender);
}
.dots.lg i { width: 11px; height: 11px; }
.dots.pink i { background: var(--pink-deep); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(169, 164, 197, 0.18);
  color: var(--lavender-light);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.pill.pink   { background: var(--pink); color: var(--navy-deep); border: none; }
.pill.solid  { background: var(--lavender); color: var(--navy-deep); border: none; }
.pill.wrap-ok { white-space: normal; }
@media (max-width: 579px) { .hero-offer-chip { display: none; } }

/* Wrapping row of pills/tags (e.g. industry focus areas) */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.25s, background 0.2s;
  letter-spacing: -0.01em;
  text-align: left;
}
.btn:hover { transform: translateY(-2px); background: var(--pink); }
.btn:focus-visible { outline: 2px solid var(--lavender); outline-offset: 2px; }
.btn .arrow { width: 16px; height: 16px; flex-shrink: 0; }
.btn.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--lavender-deep);
}
.btn.ghost:hover { background: rgba(169, 164, 197, 0.12); }
.btn.pink { background: var(--pink); }
.btn.pink:hover { background: var(--pink-deep); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--lavender-deep);
  padding-bottom: 2px;
  transition: gap 0.25s, border-color 0.25s;
  color: var(--white);
  min-height: 32px;
}
.link:hover { gap: 14px; border-color: var(--white); }
.link:focus-visible { outline: 2px solid var(--lavender); outline-offset: 2px; }

/* ─────────────────────────────────────────────────────────
   Header / nav
   ───────────────────────────────────────────────────────── */

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0, 7, 24, 0.7);
  border-bottom: 1px solid var(--line-dim);
  transition: background 0.3s;
}
header.nav.scrolled { background: rgba(0, 7, 24, 0.92); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
@media (min-width: 720px) { .nav-row { padding-top: 16px; padding-bottom: 16px; } }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  min-height: 44px;
}
.logo img.wcg-mark {
  height: 24px;
  width: auto;
}
@media (min-width: 720px) { .logo img.wcg-mark { height: 28px; } }
.logo .pract {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  white-space: nowrap;
}
@media (max-width: 479px) { .logo .pract { display: none; } }
@media (min-width: 720px) { .logo .pract { font-size: 9.5px; letter-spacing: 0.14em; } }

.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.nav-links a {
  color: var(--lavender-light);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--lavender);
}
@media (min-width: 980px) { .nav-links { display: flex; } }

.nav-cta {
  display: none;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  min-height: 40px;
  align-items: center;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--pink); }
@media (min-width: 980px) { .nav-cta { display: inline-flex; } }

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border-radius: 4px;
  margin-right: -10px;
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--lavender); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--lavender-light);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
@media (min-width: 980px) { .nav-toggle { display: none; } }

body.menu-open { overflow: hidden; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 40;
  padding: 80px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
}
.mobile-menu nav a::after {
  content: '→';
  font-family: var(--sans);
  color: var(--lavender);
  font-size: 22px;
}
.mobile-menu nav a.active { color: var(--lavender); }
.mobile-menu .meta {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}
.mobile-menu .cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 600;
  border-radius: 4px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 980px) { .mobile-menu { display: none; } }

/* ─────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 52px 0 56px;
  overflow: hidden;
}
@media (min-width: 720px) { .hero { padding: 68px 0 72px; } }
@media (min-width: 1080px) { .hero { padding: 80px 0 90px; } }
/* Mobile: tighten the space above the hero so the page sits a little higher. */
@media (max-width: 579px) { .hero { padding-top: 30px; } }

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  max-height: 800px;
  background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(169, 164, 197, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(169, 164, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 164, 197, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  max-width: 100%;
  align-self: flex-start;
  margin-bottom: 50px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
a.hero-status:hover,
a.hero-status:focus-visible {
  border-color: var(--lavender);
  background: rgba(255, 255, 255, 0.06);
}
a.hero-status:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
}
.hero-status .arrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--lavender);
  opacity: 0.7;
  transition: transform 180ms ease, opacity 180ms ease;
  margin-left: -2px;
}
a.hero-status:hover .arrow,
a.hero-status:focus-visible .arrow {
  transform: translateX(3px);
  opacity: 1;
}
.hero-status .ping {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-deep);
  flex-shrink: 0;
}
.hero-status .ping::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--pink-deep);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0%   { opacity: 1; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(2); }
}
.hero-status .txt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
}
@media (min-width: 720px) { .hero-status .txt { font-size: 11px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 96px;
  }
}
@media (min-width: 1280px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 128px; }
}

.hero h1 {
  font-size: clamp(2rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
@media (max-width: 539px) {
  .hero h1 { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
}
.hero h1 .it { color: var(--lavender); }
@media (min-width: 720px) {
  .hero h1 { letter-spacing: -0.045em; line-height: 0.94; }
}

.nobr { white-space: nowrap; }

.hero-sub {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  color: var(--lavender);
  margin-top: 50px;
  max-width: none;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-principle {
  margin-top: 50px;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--pink-deep);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.5;
  max-width: none;
  letter-spacing: -0.005em;
}
@media (min-width: 720px) { .hero-principle { padding-left: 22px; } }

/* Three-pillar row in the hero (EBITDA / Private / Outcome) */
.hero-pillars {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .hero-pillars { padding-top: 32px; } }
@media (min-width: 880px) { .hero-pillars { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.pillar-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--lavender);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
}
.pillar-icon svg { width: 16px; height: 16px; }
.pillar-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pillar-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  line-height: 1.2;
}
.pillar-desc {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--lavender-light);
  line-height: 1.45;
  max-width: 26ch;
}

/* Two-line value in the hero stat (e.g. Target · Mid-market orgs / sub-line) */
.hero-stat .v-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-photo {
  aspect-ratio: 4/5;
  border-radius: 8px;
}
@media (max-width: 1079px) {
  .hero-photo { aspect-ratio: 16/9; max-height: 320px; }
}

.hero-stat {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
}
.hero-stat .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.hero-stat .row:last-child { border-bottom: none; }
.hero-stat .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat .v {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  color: var(--white);
  text-align: right;
}
@media (min-width: 720px) { .hero-stat .v { font-size: 22px; } }

.hero-aside .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}

/* Hero left column + trust box (under the CTAs). On desktop the box bottom-aligns
   with the aside's [01]/[02]/[03] meta block via the stretched column + margin-top:auto. */
.hero-lead { display: flex; flex-direction: column; min-width: 0; --lock-w: 515px; }
.hero-trust {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.hero-trust .ht-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-trust .ht-tagline {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lavender);
}
.hero-trust .ht-link { display: inline-block; margin-top: 14px; }
@media (min-width: 1080px) {
  .hero-lead { position: relative; }
  .hero-status { width: var(--lock-w); }
  .hero-trust { position: absolute; left: 0; right: auto; bottom: 0; width: var(--lock-w); margin-top: 0; }
}

/* ─────────────────────────────────────────────────────────
   Section heads
   ───────────────────────────────────────────────────────── */

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
  align-items: end;
}
@media (min-width: 880px) {
  .section-head {
    grid-template-columns: 240px 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1080px) {
  .section-head {
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-bottom: 56px;
  }
}
.section-head .lead { display: flex; flex-direction: column; gap: 14px; }

/* ─────────────────────────────────────────────────────────
   Use case cards (4-grid on home, 2-grid on insights, etc.)
   ───────────────────────────────────────────────────────── */

.uc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 720px) { .uc-grid { grid-template-columns: 1fr 1fr; } }

.uc-card {
  background: var(--navy);
  padding: 28px 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  color: inherit;
}
@media (min-width: 720px) { .uc-card { padding: 36px 32px; min-height: 340px; } }
@media (min-width: 1080px) { .uc-card { padding: 40px; min-height: 360px; } }

.uc-card:hover { background: var(--navy-mid); }
.uc-card:focus-visible { outline: 2px solid var(--lavender); outline-offset: -2px; }

.uc-card .num {
  font-family: var(--accent);
  font-size: clamp(56px, 9vw, 90px);
  font-style: normal;
  font-weight: 400;
  color: var(--lavender);
  line-height: 1;
  opacity: 0.6;
}
.uc-card h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); line-height: 1.1; }
.uc-card .lever {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.uc-card .outcome {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--white);
  margin-top: auto;
  line-height: 1.25;
}
.uc-card .more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.uc-card .bg-deco {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.6;
}
.uc-card .bg-deco::after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
@media (max-width: 719px) { .uc-card .bg-deco { display: none; } }

/* ─────────────────────────────────────────────────────────
   Methodology timeline (3-step)
   ───────────────────────────────────────────────────────── */

.method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 880px) { .method { grid-template-columns: repeat(3, 1fr); } }

/* Column-count variants: match the grid to the number of cards so no empty
   cells show through. Higher specificity (.method.cols-N) overrides the base. */
@media (min-width: 720px) {
  .method.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .method.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .method.cols-5 { grid-template-columns: 1fr; } /* 5 is prime: stay stacked until wide, then one clean row */
}
@media (min-width: 1080px) {
  .method.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .method.cols-5 { grid-template-columns: repeat(5, 1fr); }
}

.method-step {
  background: var(--navy);
  padding: 28px 22px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@media (min-width: 720px) { .method-step { padding: 36px; min-height: 260px; } }

.method-step .step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--lavender);
  text-transform: uppercase;
}
.method-step h3 { font-size: 1.4rem; }
@media (min-width: 720px) { .method-step h3 { font-size: 1.5rem; } }

.method-step .desc {
  color: var(--lavender-light);
  font-size: 14.5px;
  line-height: 1.6;
}
.method-step.active {
  background: var(--navy-mid);
  border-left: 2px solid var(--pink-deep);
}

/* ─────────────────────────────────────────────────────────
   Comparison table → mobile cards under 720px
   ───────────────────────────────────────────────────────── */

.cmp-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

@media (min-width: 720px) {
  .cmp { width: 100%; border-collapse: collapse; }
  .cmp th, .cmp td {
    text-align: left;
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    vertical-align: top;
  }
  .cmp th {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    padding-bottom: 14px;
  }
  .cmp tr.row { cursor: pointer; transition: background 0.2s; }
  .cmp tr.row:hover { background: rgba(169, 164, 197, 0.06); }
  .cmp tbody tr.row:last-child td { border-bottom: none; }
}

.cmp .uc-name {
  font-family: var(--accent);
  font-size: 1.1rem;
  color: var(--white);
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 720px) { .cmp .uc-name { font-size: 1.25rem; } }
.cmp .uc-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--lavender);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 4px;
}
.cmp .lever {
  color: var(--pink-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cmp .outcome { color: var(--white); font-weight: 500; }
.cmp .timeline,
.cmp .invest { color: var(--lavender-light); font-family: var(--mono); }

/* Mobile: stacked cards */
@media (max-width: 719px) {
  .cmp { display: block; }
  .cmp thead { display: none; }
  .cmp tbody { display: block; }
  .cmp tr.row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 22px 20px;
    border-bottom: 1px solid var(--line);
    gap: 12px;
    cursor: pointer;
  }
  .cmp tr.row:last-child { border-bottom: none; }
  .cmp td { display: block; padding: 0; }
  .cmp td[data-col]::before {
    content: attr(data-col);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
  }
  .cmp .uc-name { font-size: 1.2rem; margin-bottom: 4px; }
  .cmp tr.row td:first-child::before { content: ''; display: none; }
}

/* ─────────────────────────────────────────────────────────
   Case study card
   ───────────────────────────────────────────────────────── */

.case {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .case { grid-template-columns: 1fr 1fr; } }

.case .visual {
  background: linear-gradient(135deg, var(--lavender-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  position: relative;
  min-height: 280px;
  padding: 24px;
}
@media (min-width: 720px) { .case .visual { min-height: 340px; padding: 32px; } }
@media (min-width: 980px) { .case .visual { min-height: 420px; padding: 40px; } }

.case .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 230, 227, 0.25), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(218, 215, 232, 0.4), transparent 50%);
  pointer-events: none;
}
.case .visual .label {
  position: relative;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-light);
}
.case .visual .stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 3;
}
@media (min-width: 720px) { .case .visual .stats { bottom: 32px; left: 32px; right: 32px; gap: 14px; } }
@media (min-width: 980px) { .case .visual .stats { bottom: 40px; left: 40px; right: 40px; } }

.case .visual .stats > div {
  padding: 12px;
  background: rgba(0, 7, 24, 0.5);
  border: 1px solid var(--line);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case .visual .stats .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
}
.case .visual .stats .v {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  margin-top: 4px;
  line-height: 1.15;
}
@media (min-width: 720px) { .case .visual .stats .v { font-size: 22px; } }
@media (min-width: 980px) { .case .visual .stats .v { font-size: 26px; } }

.case .body {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 720px) { .case .body { padding: 40px 36px; } }
@media (min-width: 980px) { .case .body { padding: 50px 44px; } }

.case .body h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.case .body p {
  color: var(--lavender-light);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (min-width: 720px) { .case .body p { font-size: 16px; } }

/* ─────────────────────────────────────────────────────────
   Plan / 100-day rail
   ───────────────────────────────────────────────────────── */

.plan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 880px) { .plan { grid-template-columns: 280px 1fr; gap: 48px; } }
@media (min-width: 1080px) { .plan { grid-template-columns: 320px 1fr; gap: 60px; } }

.plan-rail {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
@media (min-width: 720px) { .plan-rail { padding: 30px; } }

.plan-rail .item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.plan-rail .item:last-child { border-bottom: none; }
.plan-rail .plan-group { display: flex; flex-direction: column; }
.plan-rail .plan-group + .plan-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.plan-rail .plan-group-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 4px;
}
.plan > div h2 { line-height: 1.12; }
@media (min-width: 720px) { .plan > div h2 { line-height: 1.1; } }
.plan-rail .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-rail .v {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: var(--white);
  text-align: right;
}
@media (min-width: 720px) { .plan-rail .v { font-size: 19px; } }

/* ─────────────────────────────────────────────────────────
   Big CTA block (light pink/lavender)
   ───────────────────────────────────────────────────────── */

.cta-block {
  background: linear-gradient(135deg, #0A1638 0%, var(--navy-deep) 60%);
  color: var(--white);
  padding: 48px 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .cta-block { padding: 64px 40px; } }
@media (min-width: 1080px) { .cta-block { padding: 90px 60px; } }

.cta-block::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 115, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block .kicker { color: var(--lavender); }
.cta-block h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 4.5rem);
}
.cta-block h2 .it { font-family: var(--accent); font-style: normal; color: var(--lavender); font-weight: 400; }
.cta-block p { color: var(--lavender-light); }
.cta-block .price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-top: 14px;
}
.cta-block .price .pre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  font-style: normal;
}
.cta-block .btn {
  margin-top: 24px;
  margin-left: clamp(16px, 3vw, 32px);
}
.cta-block .btn:hover { transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────
   Press strip
   ───────────────────────────────────────────────────────── */

/* Operational systems strip - hover/focus reveals a per-item tooltip */
.systems-strip {
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: visible;
}
@media (min-width: 720px) { .systems-strip { padding: 44px 0 48px; } }

.systems-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  text-align: center;
  margin: 0 0 24px;
}
@media (min-width: 720px) {
  .systems-kicker { font-size: 12px; letter-spacing: 0.24em; margin-bottom: 28px; }
}

.systems-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
}
@media (min-width: 540px) { .systems-row { grid-template-columns: repeat(3, 1fr); gap: 10px 16px; } }
@media (min-width: 880px) { .systems-row { grid-template-columns: repeat(6, 1fr); gap: 14px; } }

.systems-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  border-radius: 10px;
  cursor: default;
  outline: none;
  transition: background 0.25s ease;
}
.systems-item:hover,
.systems-item:focus-visible {
  background: rgba(255, 255, 255, 0.035);
}
.systems-item:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}

.systems-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--lavender);
  transition: color 0.25s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.systems-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.systems-item:hover .systems-icon,
.systems-item:focus-visible .systems-icon {
  color: var(--white);
  transform: translateY(-2px);
}

.systems-name {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender-light);
  text-align: center;
  white-space: nowrap;
  transition: color 0.25s ease;
}
@media (min-width: 720px) {
  .systems-name { font-size: 11.5px; letter-spacing: 0.18em; }
}
.systems-item:hover .systems-name,
.systems-item:focus-visible .systems-name {
  color: var(--white);
}

.systems-hover {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  max-width: 260px;
  padding: 14px 16px 15px;
  background: rgba(8, 12, 32, 0.97);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transform: translate(-50%, -4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.systems-hover::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -5px;
  width: 8px;
  height: 8px;
  background: rgba(8, 12, 32, 0.97);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
.systems-hover strong {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.systems-hover span {
  display: block;
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--lavender-light);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.systems-item:hover .systems-hover,
.systems-item:focus-visible .systems-hover,
.systems-item:focus-within .systems-hover {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Edge-column tooltips: nudge horizontally so they stay inside the wrap */
.systems-row .systems-item:first-child .systems-hover {
  left: 0;
  transform: translate(0, -4px);
}
.systems-row .systems-item:first-child .systems-hover::after { left: 30px; }
.systems-row .systems-item:first-child:hover .systems-hover,
.systems-row .systems-item:first-child:focus-visible .systems-hover,
.systems-row .systems-item:first-child:focus-within .systems-hover {
  transform: translate(0, 0);
}
.systems-row .systems-item:last-child .systems-hover {
  left: auto;
  right: 0;
  transform: translate(0, -4px);
}
.systems-row .systems-item:last-child .systems-hover::after { left: auto; right: 22px; transform: rotate(45deg); }
.systems-row .systems-item:last-child:hover .systems-hover,
.systems-row .systems-item:last-child:focus-visible .systems-hover,
.systems-row .systems-item:last-child:focus-within .systems-hover {
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .systems-icon,
  .systems-hover,
  .systems-item { transition: none; }
}

/* ─────────────────────────────────────────────────────────
   Use case detail page
   ───────────────────────────────────────────────────────── */

.uc-hero {
  padding: 32px 0 36px;
  position: relative;
}
@media (min-width: 720px) { .uc-hero { padding: 48px 0 50px; } }
@media (min-width: 1080px) { .uc-hero { padding: 70px 0 50px; } }

.uc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(ellipse 60% 80% at 30% 20%, rgba(169, 164, 197, 0.22), transparent 60%);
  pointer-events: none;
}
.uc-hero .wrap { position: relative; }

.uc-hero h1 { font-size: clamp(2rem, 5.4vw, 5rem); line-height: 0.96; }

/* Operating-model flow (About hero / methodology visual) */
.opm-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 34px;
}
.opm-node {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-light);
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--navy);
  white-space: nowrap;
}
.opm-arrow { color: var(--lavender); font-size: 13px; opacity: 0.75; }
.opm-meta {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.85;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
}
.crumbs a { color: var(--lavender); transition: color 0.2s; }
.crumbs a:hover { color: var(--white); }
.crumbs span.sep { color: var(--muted); }
.crumbs span.curr { color: var(--lavender-light); }

.uc-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 36px;
}
@media (min-width: 980px) { .uc-stats-row { grid-template-columns: repeat(4, 1fr); margin-top: 48px; } }

.uc-stat {
  background: var(--navy);
  padding: 22px 18px;
}
@media (min-width: 720px) { .uc-stat { padding: 28px; } }

.uc-stat .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.uc-stat .v {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin-top: 8px;
  line-height: 1.05;
}
.uc-stat .sub {
  font-size: 12.5px;
  color: var(--lavender-light);
  margin-top: 8px;
}

.uc-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 880px) {
  .uc-body-grid {
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding: 56px 0;
  }
}
@media (min-width: 1080px) {
  .uc-body-grid {
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding: 70px 0;
  }
}

.uc-body-grid .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
}
@media (min-width: 880px) {
  .uc-body-grid .label {
    position: sticky;
    top: 100px;
  }
}

.uc-body-grid .body p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--lavender-light);
  max-width: 60ch;
  text-wrap: pretty;
}
@media (min-width: 720px) { .uc-body-grid .body p { font-size: 17.5px; line-height: 1.6; } }

.uc-body-grid .body h2 { margin-bottom: 18px; }
.uc-body-grid ul {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.uc-body-grid ul li {
  padding-left: 22px;
  position: relative;
  color: var(--lavender-light);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 70ch;
}
@media (min-width: 720px) { .uc-body-grid ul li { font-size: 16px; padding-left: 26px; } }
.uc-body-grid ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--lavender);
}
.uc-body-grid ul li strong { color: var(--white); font-weight: 600; }

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 540px) { .outcome-grid { grid-template-columns: 1fr 1fr; } }

.outcome-cell {
  background: var(--navy);
  padding: 22px 20px;
}
@media (min-width: 720px) { .outcome-cell { padding: 26px; } }

.outcome-cell .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.outcome-cell .v {
  font-family: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  color: var(--white);
  margin-top: 8px;
  line-height: 1.15;
}

/* ─────────────────────────────────────────────────────────
   Insights / article cards
   ───────────────────────────────────────────────────────── */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 720px) { .insights-grid { grid-template-columns: 1fr 1fr; } }

/* ─────────────────────────────────────────────────────────
   About - differentiators (4 cards)
   ───────────────────────────────────────────────────────── */

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 720px) { .diff-grid { grid-template-columns: 1fr 1fr; } }

.diff-card {
  background: var(--navy);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: auto;
}
@media (min-width: 720px) { .diff-card { padding: 36px; min-height: 240px; } }

.diff-card.full { grid-column: 1 / -1; min-height: auto; }
.diff-card .step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--lavender);
  text-transform: uppercase;
}
.diff-card h3 { font-size: 1.4rem; }
.diff-card .desc {
  color: var(--lavender-light);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   Contact form
   ───────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1280px) { .contact-grid { gap: 60px; } }

.diag-output {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
}
@media (min-width: 720px) { .diag-output { padding: 36px; } }

.diag-output h3 { font-size: 1.4rem; margin-top: 12px; }
.diag-output ul {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diag-output ul li {
  padding-left: 24px;
  position: relative;
  color: var(--lavender-light);
  font-size: 14.5px;
  line-height: 1.55;
}
.diag-output ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 1px;
  background: var(--lavender);
}

form.contact-form { margin-top: 24px; }
@media (min-width: 980px) { form.contact-form { margin-top: 30px; } }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) { .field-row { grid-template-columns: 1fr 1fr; gap: 20px; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.field span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  min-height: 48px;
  font-size: 16px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lavender);
  background: rgba(255, 255, 255, 0.05);
}
.field option { background: var(--navy-deep); color: var(--white); }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  display: none;
}
.form-status.error {
  display: block;
  background: rgba(245, 191, 184, 0.12);
  color: var(--pink-deep);
  border: 1px solid var(--pink-deep);
}
.form-status.success {
  display: block;
  background: rgba(169, 164, 197, 0.12);
  color: var(--lavender-light);
  border: 1px solid var(--lavender);
}

aside.contact-side {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
}
@media (min-width: 720px) { aside.contact-side { padding: 32px; } }
@media (min-width: 980px) { aside.contact-side { position: sticky; top: 90px; } }

aside.contact-side h3 {
  font-size: 1.3rem;
  margin-top: 12px;
}
@media (min-width: 720px) { aside.contact-side h3 { font-size: 1.4rem; } }

aside.contact-side .addr {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--lavender-light);
}

aside.contact-side .crosslink-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ─────────────────────────────────────────────────────────
   Operator's Guide: form-forward lead-gen layout
   ───────────────────────────────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 980px) {
  .guide-grid { grid-template-columns: 1fr 1.08fr; gap: 56px; }
  .guide-grid > .guide-form-card { order: 0; }
}
.guide-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-list li {
  position: relative;
  padding-left: 26px;
  color: var(--lavender-light);
  font-size: 16px;
  line-height: 1.5;
}
.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 1px;
  background: var(--pink-deep);
}
.guide-audience { margin-top: 28px; font-size: 13px; color: var(--lavender); }

.guide-form-card {
  order: -1;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
}
@media (min-width: 720px) { .guide-form-card { padding: 38px 36px; } }
.guide-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
}
.guide-form-card h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); }
.guide-lede { margin-top: 10px; color: var(--lavender-light); font-size: 15px; line-height: 1.55; }
.guide-form-card form.contact-form { margin-top: 8px; }
.guide-form-card button[type="submit"] {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  min-height: 52px;
}

/* ─────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────── */

footer {
  background: black;
  color: var(--lavender);
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) { footer { padding: 70px 0 26px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dim);
}
@media (min-width: 540px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
}

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 980px) { .footer-brand { grid-column: auto; } }

.footer-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-grid ul a {
  color: var(--lavender-light);
  transition: color 0.2s;
  display: inline-block;
  padding: 4px 0;
}
.footer-grid ul a:hover { color: var(--white); }

.footer-grid .blurb {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 48ch;
  line-height: 1.6;
  text-align: justify;
}

.cross-link {
  display: block;
  max-width: 340px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--lavender-light);
  transition: background 0.2s, border-color 0.2s;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 22px;
}
.cross-link:hover { background: var(--navy); border-color: var(--lavender); }
.cross-link strong { color: var(--white); font-weight: 600; }
.cross-link .ar { color: var(--lavender); }

.footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   Photography - lavender duotone treatment per brand guide
   ───────────────────────────────────────────────────────── */

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
  background: var(--navy-mid);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 10, 36, 0.85) 0%, rgba(110, 104, 158, 0.55) 50%, rgba(255, 230, 227, 0.25) 100%);
  mix-blend-mode: color;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 230, 227, 0.18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(169, 164, 197, 0.25), transparent 55%);
  mix-blend-mode: screen;
}
.photo-frame.deep::before {
  background: linear-gradient(135deg, rgba(0, 10, 36, 0.95), rgba(110, 104, 158, 0.5));
}
.photo-frame.warm::before {
  background: linear-gradient(135deg, rgba(110, 104, 158, 0.55), rgba(255, 230, 227, 0.5));
}
.photo-frame > .label,
.photo-frame > .stats,
.photo-frame > .lbl { position: relative; z-index: 3; }
.photo-frame .lbl {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--lavender-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   Team grid
   ───────────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-top: 48px;
}
.team-member { margin: 0; }
.team-photo {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-mid);
}
.team-photo.is-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(169, 164, 197, 0.30), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--line);
}
.tm-monogram {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(34px, 6vw, 52px);
  letter-spacing: 0.02em;
  color: var(--lavender-light);
  opacity: 0.92;
}
.team-member figcaption { margin-top: 16px; }
.tm-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.tm-role {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
}
@media (min-width: 880px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* ─────────────────────────────────────────────────────────
   Reveal-on-scroll
   ───────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────────────────
   Utility
   ───────────────────────────────────────────────────────── */

.center-text { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 28px; }
.mt-lg  { margin-top: 48px; }
.mt-auto { margin-top: auto; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.no-wrap { white-space: nowrap; }
.full-width { width: 100%; }

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (min-width: 720px) { .button-row { gap: 14px; margin-top: 30px; } }

/* ─────────────────────────────────────────────────────────
   How we deliver AI: methodology flow (home, after hero)
   Native build of the operating-model to leverage visual.
   Brand tokens only: lavender = operating model, pink = leverage.
   ───────────────────────────────────────────────────────── */
.hwd-flow { max-width: 100%; margin: 8px 0 0; }
.hwd-frame {
  max-width: 840px;
  margin: 12px auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 30px 90px -45px rgba(48, 40, 110, 0.7);
  padding: clamp(26px, 4.5vw, 52px);
}

.hwd-group { display: flex; gap: 16px; }

.hwd-group__label {
  flex: 0 0 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.92;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
}
.hwd-group--leverage .hwd-group__label {
  color: var(--pink-deep);
  opacity: 1;
  border-left-color: rgba(245, 191, 184, 0.4);
}

.hwd-steps { flex: 1 1 auto; position: relative; }
.hwd-steps::before {                 /* vertical rail behind the node dots */
  content: "";
  position: absolute;
  left: 10px; top: 30px; bottom: 30px;
  width: 1px;
  background: var(--line);
}
.hwd-group--leverage .hwd-steps::before { display: none; }

.hwd-step { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: center; }
.hwd-node {
  justify-self: center;
  align-self: center;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--lavender-deep);
  box-shadow: 0 0 0 4px rgba(135, 128, 176, 0.12);
  position: relative;
  z-index: 1;
}
.hwd-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
  padding: 18px 22px;
}
.hwd-num { font-family: var(--mono); font-size: 18px; letter-spacing: 0.14em; color: var(--lavender); opacity: 0.6; }
.hwd-title { font-family: var(--accent); font-weight: 400; font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.02em; color: var(--white); margin: 3px 0 6px; }
.hwd-desc { font-family: var(--sans); font-size: 15.5px; line-height: 1.55; color: var(--lavender-light); opacity: 0.82; max-width: 50ch; }

.hwd-conn { display: block; width: 22px; height: 34px; line-height: 34px; text-align: center; color: var(--pink-deep); opacity: 0.9; font-size: 22px; text-shadow: 0 0 12px rgba(245, 191, 184, 0.55); }

/* leverage-layer accent (AI) */
.hwd-step--ai .hwd-node {
  background: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(245, 191, 184, 0.15), 0 0 14px 2px rgba(245, 191, 184, 0.45);
}
.hwd-step--ai .hwd-card {
  border-color: rgba(245, 191, 184, 0.35);
  background: linear-gradient(180deg, rgba(245, 191, 184, 0.06), rgba(245, 191, 184, 0.015));
  box-shadow: 0 0 44px -10px rgba(245, 191, 184, 0.3);
}
.hwd-step--ai .hwd-num { color: var(--pink-deep); opacity: 0.85; }
.hwd-conn--warm { color: var(--pink-deep); opacity: 1; text-shadow: 0 0 18px rgba(245, 191, 184, 0.75); }

.hwd-close {
  max-width: 100%;
  margin: 30px 0 0;
  text-align: left;
  font-family: var(--accent);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.01em;
  color: var(--white);
}

/* entrance (CSS-only, no JS dependency; respects reduced motion) */
@media (prefers-reduced-motion: no-preference) {
  .hwd-step, .hwd-conn { opacity: 0; transform: translateY(10px); animation: hwdIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
  .hwd-group--foundation .hwd-steps > :nth-child(1) { animation-delay: 0.04s; }
  .hwd-group--foundation .hwd-steps > :nth-child(2) { animation-delay: 0.10s; }
  .hwd-group--foundation .hwd-steps > :nth-child(3) { animation-delay: 0.16s; }
  .hwd-group--foundation .hwd-steps > :nth-child(4) { animation-delay: 0.22s; }
  .hwd-group--foundation .hwd-steps > :nth-child(5) { animation-delay: 0.28s; }
  .hwd-group--leverage .hwd-steps > :nth-child(1) { animation-delay: 0.34s; }
  .hwd-group--leverage .hwd-steps > :nth-child(2) { animation-delay: 0.40s; }
}
@keyframes hwdIn { to { opacity: 1; transform: none; } }

/* mobile: group labels go horizontal above each band */
@media (max-width: 600px) {
  .hwd-group { flex-direction: column; gap: 8px; }
  .hwd-group + .hwd-group { margin-top: 4px; }
  .hwd-group__label {
    writing-mode: horizontal-tb;
    transform: none;
    border-left: none;
    flex-basis: auto;
    justify-content: flex-start;
    letter-spacing: 0.18em;
  }
  .hwd-card { padding: 16px 18px; }
}

/* ─────────────────────────────────────────────────────────
   AI deployment models: "Where your AI lives" (security page)
   Native build of the private / hybrid / external spectrum.
   Brand tokens only; pink = the external / maximum-speed end.
   ───────────────────────────────────────────────────────── */
.adm-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(168, 164, 197, 0.07), rgba(255, 255, 255, 0.012));
  padding: clamp(24px, 4vw, 46px);
  margin-top: 12px;
}
.adm-head { margin-bottom: 34px; }
.adm-head h2 { margin-top: 6px; }
.adm-head .dots { margin-top: 16px; }

/* control-to-speed spectrum */
.adm-spectrum { position: relative; margin: 10px 0 34px; }
.adm-spectrum::before {
  content: ""; position: absolute; left: 16.6%; right: 16.6%; top: 6px; height: 1px;
  background: linear-gradient(90deg, var(--lavender-deep), var(--lavender) 55%, var(--pink-deep));
  opacity: 0.55;
}
.adm-points { display: grid; grid-template-columns: repeat(3, 1fr); }
.adm-point { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.adm-node {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--lavender-deep);
  box-shadow: 0 0 0 4px rgba(135, 128, 176, 0.14), 0 0 14px 2px rgba(168, 164, 197, 0.5);
  position: relative; z-index: 1;
}
.adm-point:last-child .adm-node {
  background: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(245, 191, 184, 0.16), 0 0 14px 2px rgba(245, 191, 184, 0.5);
}
.adm-point-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lavender); opacity: 0.6;
}
.adm-point:last-child .adm-point-label { color: var(--pink-deep); opacity: 0.85; }

/* the three deployment models */
.adm-models {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.adm-col { display: flex; flex-direction: column; padding: clamp(20px, 2.2vw, 30px); }
.adm-col + .adm-col { border-left: 1px solid var(--line); }
.adm-col-head { display: flex; align-items: baseline; gap: 12px; }
.adm-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--lavender); opacity: 0.5; }
.adm-title {
  font-family: var(--accent); font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem); color: var(--white);
}
.adm-rule { border-top: 1px solid var(--line); margin: 14px 0 18px; }
.adm-col--ext .adm-rule { border-top-color: rgba(245, 191, 184, 0.4); }
.adm-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.adm-list li {
  position: relative; padding-left: 22px;
  font-family: var(--sans); font-size: 15px; line-height: 1.45; color: var(--lavender-light); opacity: 0.92;
}
.adm-list li::before {
  content: ""; position: absolute; left: 2px; top: 6px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lavender-deep);
}
.adm-col--ext .adm-list li::before { background: var(--pink-deep); box-shadow: 0 0 8px rgba(245, 191, 184, 0.55); }
.adm-lead {
  margin-top: 10px;
  font-family: var(--sans); font-size: 14px; line-height: 1.5;
  color: var(--lavender-light); opacity: 0.82;
}
.adm-bestfor {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line-dim);
  font-family: var(--sans); font-size: 13px; line-height: 1.45;
  color: var(--lavender-light); opacity: 0.8;
}
.adm-bestfor b {
  display: block; margin-bottom: 5px;
  font-family: var(--mono); font-weight: 400; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lavender); opacity: 0.85;
}
.adm-col--ext .adm-bestfor b { color: var(--pink-deep); }

/* connector + closing line */
.adm-conn { text-align: center; color: var(--pink-deep); opacity: 0.85; font-size: 17px; margin-top: 24px; }
.adm-close {
  max-width: 660px; margin: 20px auto 0; text-align: center;
  font-family: var(--accent); font-size: clamp(1.2rem, 2.3vw, 1.6rem); line-height: 1.45;
  letter-spacing: -0.01em; color: var(--white);
}

@media (max-width: 760px) {
  .adm-models { grid-template-columns: 1fr; }
  .adm-col + .adm-col { border-left: none; border-top: 1px solid var(--line); }
  .adm-spectrum::before { left: 10%; right: 10%; }
  .adm-point-label { font-size: 9px; letter-spacing: 0.1em; }
}

/* ─────────────────────────────────────────────────────────
   "Who it's for" (home) — buyer chips + numbered vertical cards.
   Scoped (.wif-*) so the shared .method component stays untouched.
   ───────────────────────────────────────────────────────── */
.wif-buyers {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 880px) {
  .wif-buyers { grid-template-columns: 240px 1fr; gap: 40px; align-items: center; }
}
.wif-buyers-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lavender); opacity: 0.6;
}
.wif-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.wif-chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--sans); font-size: 13.5px; color: var(--lavender-light);
  white-space: nowrap;
}

.wif-grid {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 980px) { .wif-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* "Who it's for" cards — built to card-spec.md (Segment Card). All three use the pink accent. */
.wif-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(28, 27, 77, 0.42) 0%, rgba(6, 14, 38, 0.30) 100%);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2, .7, .3, 1), border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.wif-card::before {                 /* §4 top filament: inset hairline, fades to transparent at both ends */
  content: "";
  position: absolute;
  left: 32px; right: 32px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 191, 184, 0.7), transparent);
  opacity: .8;
}
.wif-card:hover {                    /* §6 lift + ambient shadow */
  transform: translateY(-6px);
  border-color: rgba(245, 191, 184, 0.36);
  background: linear-gradient(180deg, rgba(34, 33, 88, 0.55) 0%, rgba(8, 16, 42, 0.40) 100%);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9);
}
.wif-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.wif-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--muted); }
.wif-icon { width: 30px; height: 30px; display: grid; place-items: center; opacity: .9; color: var(--pink-deep); }
.wif-icon svg { width: 26px; height: 26px; display: block; }
.wif-label {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: 14px;
}
.wif-title {
  font-family: var(--sans); font-weight: 700; font-size: 24px; letter-spacing: -0.015em;
  line-height: 1.12; color: var(--white); margin: 0 0 12px;
}
.wif-desc { font-size: 15px; line-height: 1.55; color: var(--lavender-light); opacity: .9; text-wrap: pretty; }
.wif-tag {                          /* §5 signal row — margin-top:auto pins it to the base */
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-dim);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pink-deep);
}
.wif-tag i { width: 6px; height: 6px; border-radius: 50%; flex: none; background: var(--pink-deep); box-shadow: 0 0 10px var(--pink-deep); }

/* "What happens during the Sprint" — clean deliverables checklist (replaces pill jumble) */
.leave-with {
  list-style: none;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 40px;
  max-width: 920px;
}
@media (min-width: 720px) { .leave-with { grid-template-columns: 1fr 1fr; } }
.leave-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--sans); font-size: 15px; line-height: 1.45;
  color: var(--lavender-light);
}
.leave-check {
  flex: 0 0 auto; margin-top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(169, 164, 197, 0.14);
  color: var(--lavender);
}
.leave-check svg { width: 12px; height: 12px; display: block; }

/* "AI Transformation Areas" home preview — 3 themes mirroring /use-cases/ */
.areas-grid {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 880px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006));
  padding: clamp(22px, 2.2vw, 28px);
}
.area-num {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lavender); opacity: 0.6;
}
.area-title {
  font-size: 1.1rem; line-height: 1.3; color: var(--white);
  margin: 10px 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.area-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.area-list li { display: flex; flex-direction: column; gap: 4px; }
.area-name { font-family: var(--sans); font-weight: 600; font-size: 14.5px; color: var(--white); }
.area-note { font-family: var(--sans); font-size: 13px; line-height: 1.45; color: var(--lavender-light); opacity: 0.78; }
