/* ──────────────────────────────────────────────────────────
   Hira Data Solutions — shared stylesheet
   Linked by every homepage-family page via /styles.css
   Case-study pages keep their own inline archetype CSS (§14).
   ────────────────────────────────────────────────────────── */

/* ── ROOT TOKENS ── */
:root {
  --bg: #f7f8fc;
  --bg-2: #ffffff;
  --bg-card: #ffffff;
  --bg-card-2: #f2f3f8;
  --navy: #0d1126;
  --navy-mid: #1e2545;
  --purple: #6d4fc2;
  --purple-mid: #8b6dd4;
  --purple-light: #a98ee6;
  --purple-bg: rgba(109,79,194,0.07);
  --purple-border: rgba(109,79,194,0.2);
  --teal: #0ea896;
  --text: #0d1126;
  --muted: #5a6180;
  --dim: #9ba3c0;
  --border: rgba(13,17,38,0.07);
  --border-2: rgba(13,17,38,0.12);
  --font: 'Outfit', sans-serif;
}

/* ── RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 6%;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(247,248,252,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 6%;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img {
  height: 64px;
  width: auto;
  max-width: 280px;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--purple); font-weight: 500; }
.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 7px;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  border: 1px solid transparent;
}
.nav-cta:hover { background: var(--purple-mid) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(109,79,194,0.3); }

/* ── SERVICES DROPDOWN (desktop) ── */
.nav-item { position: relative; }
.nav-item.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.32rem; cursor: default; }
.nav-item.has-dropdown > a::after {
  content: ""; width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px); transition: transform 0.2s; opacity: 0.7;
}
.nav-item.has-dropdown:hover > a::after,
.nav-item.has-dropdown:focus-within > a::after { transform: rotate(-135deg) translateY(-1px); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 210px; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 11px;
  box-shadow: 0 12px 32px rgba(13,17,38,0.12); padding: 0.5rem; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a { display: block; padding: 0.6rem 0.85rem; border-radius: 7px; font-size: 0.88rem; color: var(--muted); white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-dropdown a:hover { background: var(--bg); color: var(--purple); }

/* ── BUTTONS ── */
.btn-fill {
  background: var(--navy); color: #fff; text-decoration: none;
  padding: 0.85rem 1.9rem; border-radius: 9px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  transition: all 0.22s; border: 1px solid transparent; display: inline-block;
}
.btn-fill:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13,17,38,0.2); }
.btn-ghost {
  background: transparent; color: var(--muted); text-decoration: none;
  padding: 0.85rem 1.9rem; border-radius: 9px;
  font-size: 0.92rem; font-weight: 400; border: 1px solid var(--border-2);
  transition: all 0.22s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--purple-border); color: var(--purple); background: var(--purple-bg); }
.btn-purple {
  background: var(--purple); color: #fff; text-decoration: none;
  padding: 0.65rem 1.25rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; display: inline-block; margin-top: 1.4rem;
  transition: all 0.22s;
}
.btn-purple:hover { background: var(--purple-mid); transform: translateY(-1px); }
.btn-white { background:#fff; color:var(--purple); text-decoration:none; padding:0.85rem 1.9rem; border-radius:9px; font-size:0.92rem; font-weight:700; transition:all 0.22s; display:inline-block; border: 1px solid transparent; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,0.15); }
.btn-outline-white { background:transparent; color:#fff; text-decoration:none; padding:0.85rem 1.9rem; border-radius:9px; font-size:0.92rem; font-weight:400; border:1px solid rgba(255,255,255,0.35); transition:all 0.22s; display:inline-block; }
.btn-outline-white:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }

/* ── HERO (home) ── */
#hero {
  display: flex; align-items: center;
  min-height: 100vh;
  padding: 7rem 6% 4.5rem; background: var(--bg-2);
  position: relative; overflow: hidden;
}
.hero-accent {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, rgba(109,79,194,0.04) 0%, rgba(109,79,194,0.02) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero-dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(109,79,194,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 50%, black, transparent);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--purple-bg); border: 1px solid var(--purple-border);
  border-radius: 100px; padding: 0.3rem 0.9rem;
  font-size: 0.72rem; font-weight: 600; color: var(--purple);
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1.2rem; animation: up 0.7s ease both;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: blink 2.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem); font-weight: 800;
  color: var(--navy); line-height: 1.1; letter-spacing: -0.035em;
  margin-bottom: 1.2rem; animation: up 0.7s 0.08s ease both;
}
h1 em { font-style: normal; color: var(--purple); }

.hero-body {
  font-size: 1.05rem; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 460px; margin-bottom: 1.6rem;
  animation: up 0.7s 0.15s ease both;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; animation: up 0.7s 0.22s ease both; }

/* Hero visual */
.hero-visual { animation: up 0.7s 0.15s ease both; position: relative; padding-bottom: 2rem; }
.hcard {
  background: var(--bg-card); border: 1px solid var(--border-2); border-radius: 22px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(13,17,38,0.1), 0 1px 0 rgba(255,255,255,0.8) inset;
  max-width: 400px; margin: 0 auto;
}
.hcard-bar {
  background: var(--bg-card-2); padding: 0.9rem 1.2rem;
  display: flex; align-items: center; gap: 0.6rem; border-bottom: 1px solid var(--border);
}
.hcard-dots { display: flex; gap: 0.35rem; }
.hd { width: 9px; height: 9px; border-radius: 50%; }
.hd-r{background:#ff5f57} .hd-y{background:#febc2e} .hd-g{background:#28c840}
.hcard-title { font-size: 0.75rem; font-weight: 500; color: var(--dim); letter-spacing: 0.05em; margin-left: 0.3rem; }
.hcard-live { margin-left:auto; display:flex; align-items:center; gap:0.35rem; font-size:0.65rem; font-weight:600; color:var(--teal); text-transform:uppercase; letter-spacing:0.07em; }
.live-dot { width:5px; height:5px; border-radius:50%; background:var(--teal); animation:blink 2.5s infinite; }
.hcard-body { padding: 1.05rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cmsg { display: flex; gap: 0.7rem; align-items: flex-end; }
.cmsg.user { flex-direction: row-reverse; }
.cavatar { width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.6rem; font-weight:700; flex-shrink:0; }
.av-u { background:var(--navy); color:white; }
.av-a { background:linear-gradient(135deg,var(--purple),var(--teal)); color:white; }
.cbubble {
  background:var(--bg-card-2); border:1px solid var(--border);
  border-radius:16px 16px 16px 4px;
  padding:0.65rem 0.9rem; font-size:0.8rem; line-height:1.55; color:var(--muted); max-width:260px;
}
.cbubble.u {
  border-radius:16px 16px 4px 16px;
  background:var(--navy); color:#fff; border-color:var(--navy);
  font-size: 0.8rem;
}
.typing { display:flex; gap:0.3rem; align-items:center; padding:0.3rem 0.1rem; }
.typing span { width:5px; height:5px; border-radius:50%; background:var(--purple); animation:ty 1.3s infinite; }
.typing span:nth-child(2){animation-delay:.18s} .typing span:nth-child(3){animation-delay:.36s}
@keyframes ty { 0%,60%,100%{opacity:0.2;transform:translateY(0)} 30%{opacity:1;transform:translateY(-3px)} }
.hcard-input {
  display:flex; align-items:center; gap:0.6rem;
  padding:0.7rem 0.9rem; border-top:1px solid var(--border); background:var(--bg-card);
}
.hci-field {
  flex:1; background:var(--bg-card); border:1px solid var(--border);
  border-radius:999px; padding:0.55rem 0.95rem;
  font-size:0.78rem; color:var(--dim); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.hci-send {
  width:32px; height:32px; flex-shrink:0; border-radius:50%;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.hero-float {
  position:absolute; bottom:-1.5rem; left:-1.5rem;
  background:var(--bg-card); border:1px solid var(--border-2); border-radius:13px;
  padding:0.8rem 1.1rem; display:flex; align-items:center; gap:0.7rem;
  box-shadow:0 12px 32px rgba(13,17,38,0.12); animation:float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.float-icon { width:34px; height:34px; border-radius:8px; background:linear-gradient(135deg,var(--teal),var(--purple)); display:flex; align-items:center; justify-content:center; }
.float-icon svg { width:18px; height:18px; stroke:#fff; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.float-l { font-size:0.65rem; color:var(--dim); margin-bottom:0.1rem; }
.float-v { font-size:0.85rem; font-weight:600; color:var(--navy); }

/* Hero data-source cluster — scattered source cards behind the chat card */
.hero-stage { position:relative; height:500px; }
.hero-stage .hcard { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:5; width:322px; max-width:none; margin:0; }
.hero-stage .hcard-body { padding-bottom:1.5rem; }
.hsrc {
  position:absolute; z-index:2; transform:translateX(-50%);
  display:flex; align-items:center; gap:0.5rem;
  background:#fff; border:1px solid var(--border-2); border-radius:12px;
  padding:0.45rem 0.65rem; box-shadow:0 14px 34px rgba(13,17,38,0.13);
  white-space:nowrap; animation:hsfloat 6.5s ease-in-out infinite;
}
.hsrc-ic { width:28px; height:28px; border-radius:8px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--c,#888); box-shadow:0 4px 12px -2px var(--c,#888); }
.hsrc-ic svg { width:16px; height:16px; display:block; }
.hsrc-ic-logo { background:#fff; border:1px solid var(--border); }
.hsrc-ic-logo svg { width:20px; height:20px; }
.hsrc-tx { display:flex; flex-direction:column; line-height:1.15; }
.hsrc-tx b { font-size:0.74rem; font-weight:600; color:var(--navy); }
.hsrc-tx span { font-size:0.6rem; color:var(--dim); }
@keyframes hsfloat { 0%,100%{ translate:0 0; } 50%{ translate:0 -7px; } }
.hsrc1 { left:17%; top:0%;  rotate:-7deg; animation-delay:0s; }
.hsrc2 { left:52%; top:-4%; rotate:4deg;  animation-delay:0.7s; }
.hsrc3 { left:83%; top:2%;  rotate:8deg;  animation-delay:1.3s; }
.hsrc4 { left:6%;  top:42%; rotate:-5deg; animation-delay:1.0s; }
.hsrc5 { left:94%; top:46%; rotate:6deg;  animation-delay:0.4s; }
.hsrc6 { left:18%; top:90%; rotate:5deg;  animation-delay:1.6s; }
.hsrc7 { left:82%; top:90%; rotate:-4deg; animation-delay:2.1s; }
/* tight two-column band: column is too narrow for cards beside the chat —
   drop the mid pair and shrink the card so the rest stays clear */
@media (max-width:1160px) and (min-width:901px) {
  .hero-stage .hcard { width:300px; }
  .hsrc4, .hsrc5 { display:none; }
  .hsrc1 { left:15%; } .hsrc3 { left:85%; }
  .hsrc6 { left:16%; } .hsrc7 { left:84%; }
}
@media (prefers-reduced-motion: reduce) { .hsrc { animation:none !important; } }

@keyframes up { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 9.5rem 6% 4.5rem; background: var(--bg-2);
  position: relative; overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); max-width: 860px; }
.page-hero .hero-body { max-width: 620px; }
.page-hero .hero-eyebrow { animation: none; }
.page-hero h1, .page-hero .hero-body, .page-hero .hero-btns { animation: none; }

/* ── STRIP ── */
.strip { border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg); padding:1.5rem 6%; }
.strip-inner { max-width:1180px; margin:0 auto; display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.strip-label { font-size:0.68rem; font-weight:600; color:var(--dim); text-transform:uppercase; letter-spacing:0.1em; padding-right:1.25rem; border-right:1px solid var(--border); flex-shrink:0; }
.strip-items { display:flex; gap:2rem; flex-wrap:wrap; }
.strip-item { font-size:0.83rem; color:var(--dim); transition:color 0.2s; }
.strip-item:hover { color:var(--muted); }
.strip-item-more { color:var(--purple); font-style:italic; }

/* ── SECTIONS ── */
section { padding: 6.5rem 6%; }
.s-inner { max-width:1180px; margin:0 auto; }
.s-label { font-size:0.68rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--purple); margin-bottom:0.85rem; display:block; }
h2 { font-size:clamp(1.9rem,3.8vw,2.9rem); font-weight:800; color:var(--navy); line-height:1.1; letter-spacing:-0.035em; margin-bottom:1.1rem; }
h2 em { font-style: normal; color: var(--purple); }
.s-sub { font-size:1rem; color:var(--muted); max-width:560px; line-height:1.75; font-weight:300; }
/* Single-column statement sections: left-aligned at the gutter, constrained measure */
.s-narrow h2 { max-width: 680px; }
.s-narrow .s-sub { max-width: 620px; }

/* ── GEOMETRIC SVG ICONS (emoji replacement) ── */
.geo-icon { width:42px; height:42px; border-radius:10px; background:var(--purple-bg); border:1px solid var(--purple-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.geo-icon svg { width:20px; height:20px; stroke:var(--purple); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.geo-icon.lg { width:48px; height:48px; border-radius:12px; }
.geo-icon.lg svg { width:23px; height:23px; }

/* ── DATA ASSISTANT / FEATURE ROWS ── */
#assistant { background: var(--bg-2); }
.plat-grid { display:grid; grid-template-columns:0.92fr 1.08fr; gap:4rem; align-items:center; margin-top:4rem; }
.plat-features { display:flex; flex-direction:column; gap:1.2rem; }
.pfeat { display:flex; gap:1.1rem; align-items:flex-start; background:var(--bg); border:1px solid var(--border); border-radius:13px; padding:1.35rem; transition:all 0.22s; }
.pfeat:hover { border-color:var(--purple-border); transform:translateX(5px); background:var(--bg-card); }
.pf-text h4 { font-size:0.92rem; font-weight:600; color:var(--navy); margin-bottom:0.3rem; }
.pf-text p { font-size:0.82rem; color:var(--muted); line-height:1.6; }

/* ── DATA SOURCES → ASSISTANT (floating-card visual) ── */
@keyframes df-pulse { 0%,100%{ box-shadow:0 0 0 3px rgba(14,168,150,0.18);} 50%{ box-shadow:0 0 0 5px rgba(14,168,150,0.05);} }
@keyframes df-float { 0%,100%{ translate:0 0;} 50%{ translate:0 -8px;} }
body.page-product .df-stage { position:relative; height:480px; width:100%; margin:0; background:radial-gradient(circle at 50% 50%, rgba(109,79,194,0.07), transparent 62%); }
/* left:% is each card's CENTRE (transform centres it) so mirrored values balance; float via the standalone `translate` property so it composes with the centring transform */
body.page-product .df-card { position:absolute; z-index:4; transform:translateX(-50%); animation:df-float 6s ease-in-out infinite; display:flex; align-items:center; gap:0.6rem; background:#fff; border:1px solid var(--border-2); border-radius:13px; padding:0.6rem 0.85rem; box-shadow:0 14px 38px rgba(13,17,38,0.13); white-space:nowrap; }
body.page-product .df-ic { width:34px; height:34px; border-radius:9px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--c,#888); box-shadow:0 4px 12px -2px var(--c,#888); }
body.page-product .df-ic svg { width:19px; height:19px; display:block; }
/* full-colour brand logos sit on a white tile (keep the soft brand-tinted shadow) */
body.page-product .df-ic-logo { background:#fff; border:1px solid var(--border); }
body.page-product .df-ic-logo svg { width:23px; height:23px; }
body.page-product .df-tx { display:flex; flex-direction:column; line-height:1.15; }
body.page-product .df-tx b { font-size:0.82rem; font-weight:600; color:var(--navy); }
body.page-product .df-tx span { font-size:0.66rem; color:var(--dim); }
body.page-product .df-p1 { left:25%; top:21%; animation-delay:0s; }
body.page-product .df-p2 { left:75%; top:21%; animation-delay:0.9s; }
body.page-product .df-p3 { left:13%; top:45%; animation-delay:1.7s; }
body.page-product .df-p4 { left:87%; top:45%; animation-delay:0.5s; }
body.page-product .df-p5 { left:25%; top:69%; animation-delay:1.3s; }
body.page-product .df-p6 { left:75%; top:69%; animation-delay:2.1s; }
/* centre hub — light theme, mini chat */
body.page-product .df-hub { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3; width:272px; background:linear-gradient(150deg,#fff,var(--purple-bg)); border:1px solid var(--purple-border); border-radius:20px; box-shadow:0 30px 80px rgba(13,17,38,0.18); overflow:hidden; }
body.page-product .df-chat { padding:0.85rem 0.95rem; }
body.page-product .df-chead { display:flex; align-items:center; gap:0.5rem; margin-bottom:0.7rem; padding-bottom:0.6rem; border-bottom:1px solid var(--border); }
body.page-product .df-av { width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,var(--purple),var(--teal)); display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
body.page-product .df-av svg { width:14px; height:14px; }
body.page-product .df-name { font-size:0.8rem; font-weight:700; color:var(--navy); line-height:1; }
body.page-product .df-name span { display:flex; align-items:center; font-size:0.58rem; font-weight:600; color:var(--teal); text-transform:uppercase; letter-spacing:0.06em; margin-top:3px; }
body.page-product .df-livedot { width:6px; height:6px; border-radius:50%; background:var(--teal); margin-right:5px; box-shadow:0 0 0 3px rgba(14,168,150,0.18); animation:df-pulse 2s ease-in-out infinite; }
body.page-product .df-q { display:block; max-width:80%; margin-left:auto; background:var(--navy); color:#fff; font-size:0.72rem; padding:0.45rem 0.7rem; border-radius:12px 12px 3px 12px; }
body.page-product .df-a { max-width:90%; margin-top:0.45rem; background:#fff; border:1px solid var(--border); color:var(--navy); font-size:0.72rem; padding:0.45rem 0.7rem; border-radius:12px 12px 12px 3px; box-shadow:0 4px 14px rgba(13,17,38,0.05); }
body.page-product .df-a b { color:var(--purple); }
@media (prefers-reduced-motion: reduce) { body.page-product .df-card, body.page-product .df-livedot { animation:none !important; } }
/* mobile: cards stack above the assistant, no absolute offsets */
@media (max-width:820px) {
  body.page-product .df-stage { height:auto; background:none; display:flex; flex-direction:column; align-items:center; gap:0.7rem; margin-top:2.5rem; }
  body.page-product .df-card { position:static; transform:none; animation:none; width:100%; max-width:300px; }
  body.page-product .df-hub { position:static; transform:none; order:99; width:100%; max-width:300px; margin-top:0.5rem; }
}

.data-chat-card { flex: 1; background: var(--bg-card); border: 1px solid var(--border-2); border-radius: 18px; overflow: hidden; box-shadow: 0 16px 48px rgba(13,17,38,0.08); }
.dc-head { background: var(--bg-card-2); padding: 0.8rem 1.1rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.dc-title { font-size: 0.7rem; font-weight: 600; color: var(--dim); letter-spacing: 0.07em; text-transform: uppercase; }
.dc-body { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.8rem; }

/* ── SERVICES / CARDS ── */
.svc-hd { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:3rem; gap:2rem; flex-wrap:wrap; }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; }
.scard { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:1.85rem; transition:all 0.25s; min-height: 220px; text-decoration: none; display: block; }
.scard:hover { border-color:var(--purple-border); transform:translateY(-3px); box-shadow:0 14px 36px rgba(13,17,38,0.08); }
.scard .geo-icon { margin-bottom:1.1rem; }
.scard h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:0.6rem; }
.scard p { font-size:0.83rem; color:var(--muted); line-height:1.65; }
.scard-tag { display:inline-block; font-size:0.62rem; font-weight:700; text-transform:uppercase; letter-spacing:0.09em; color:var(--purple); background:var(--purple-bg); border:1px solid var(--purple-border); border-radius:100px; padding:0.2rem 0.65rem; margin-bottom:0.9rem; }
.scard-more { display:inline-flex; align-items:center; gap:0.35rem; margin-top:1.1rem; font-size:0.78rem; font-weight:600; color:var(--purple); }
.scard-result { font-size:0.82rem; font-weight:700; color:var(--teal); margin-top:1.1rem; }
.scard-result + .scard-more { margin-top:0.4rem; }
/* Highlighted card (entry-point emphasis within a card grid) */
.scard.highlight { background:linear-gradient(135deg, var(--purple-bg), var(--bg-card)); border-color:var(--purple-border); }
/* Featured card */
.scard.feat {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--purple-bg), var(--bg-card));
  border-color: var(--purple-border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.scard.feat:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(109,79,194,0.12); }
.feat-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.65rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.65rem; }
.feat-badge::before { content: ''; width: 6px; height: 6px; border-radius: 2px; background: var(--teal); display: inline-block; }

/* ── DELIVERABLES CHECKLIST ── */
.deliv-list { display:flex; flex-direction:column; gap:0.9rem; margin-top: 1rem; }
.deliv-item { display:flex; gap:0.9rem; align-items:flex-start; }
.deliv-check { width:24px; height:24px; border-radius:50%; background:var(--purple-bg); border:1px solid var(--purple-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:0.1rem; }
.deliv-check svg { width:13px; height:13px; stroke:var(--purple); fill:none; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }
.deliv-item .di-text { font-size:0.9rem; color:var(--muted); line-height:1.6; }
.deliv-item .di-text strong { color:var(--navy); font-weight:600; }

/* ── AUDIT TIERS (by scope, no price) ── */
.tier-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; margin-top:1rem; }
.tier-card { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:1.85rem; transition:all 0.25s; }
.tier-card:hover { border-color:var(--purple-border); box-shadow:0 14px 36px rgba(13,17,38,0.08); transform:translateY(-3px); }
.tier-card.feat { background:linear-gradient(135deg,var(--purple-bg),var(--bg-card)); border-color:var(--purple-border); }
.tier-name { font-size:1.1rem; font-weight:800; color:var(--navy); letter-spacing:-0.02em; margin-bottom:0.3rem; }
.tier-scale { font-size:0.78rem; font-weight:600; color:var(--purple); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:1.1rem; }
.tier-scope-list { list-style:none; display:flex; flex-direction:column; gap:0.6rem; }
.tier-scope-list li { display:flex; gap:0.6rem; align-items:flex-start; font-size:0.85rem; color:var(--muted); line-height:1.55; }
.tier-scope-list li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--purple); flex-shrink:0; margin-top:0.5rem; }
.tier-note { font-size:0.82rem; color:var(--dim); margin-top:1.25rem; line-height:1.6; }

/* ── RESULTS / PROOF ── */
#results { background: var(--navy); }
#results .s-label { color:rgba(169,142,230,0.8); }
#results h2 { color:#fff; }
#results h2 em { color: var(--purple-light); }
#results .s-sub { color:rgba(255,255,255,0.55); max-width:600px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 3rem; }
.rcard { background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.09); border-radius:16px; padding:1.85rem; transition:all 0.22s; text-decoration:none; display:block; }
.rcard:hover { border-color:rgba(109,79,194,0.4); transform:translateY(-2px); }
.rcard-sector { font-size:0.65rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:rgba(169,142,230,0.7); margin-bottom:0.75rem; }
.rcard h4 { font-size:1rem; font-weight:700; color:#fff; margin-bottom:0.75rem; line-height:1.25; }
.rcard p { font-size:0.82rem; color:rgba(255,255,255,0.5); line-height:1.65; }
.rcard-impact { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-top: 1.35rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); width: 100%; }
.rcard-num { font-size:1.5rem; font-weight:800; color:var(--teal); letter-spacing:-0.03em; line-height:1; }
.rcard-desc { font-size:0.75rem; color:rgba(255,255,255,0.4); line-height:1.4; }
.results-foot { margin-top:2.5rem; }
.link-arrow { display:inline-flex; align-items:center; gap:0.4rem; font-size:0.85rem; font-weight:600; color:var(--purple-light); text-decoration:none; }
.link-arrow:hover { color:#fff; }
.link-arrow svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

/* ── DIFFERENTIATOR BAND ── */
/* Work we've done — navy section */
#proof { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); }
#proof .s-label { color:rgba(169,142,230,0.8); }
#proof h2 { color:#fff; }
#proof h2 em { color:var(--purple-light); }
#proof .s-sub { color:rgba(255,255,255,0.55); }
#proof .scard { background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.09); }
#proof .scard:hover { border-color:rgba(255,255,255,0.2); box-shadow:0 14px 36px rgba(0,0,0,0.3); }
#proof .scard h3 { color:#fff; }
#proof .scard p { color:rgba(255,255,255,0.6); }
#proof .scard-more { color:var(--purple-light); }
#proof .scard-result { border-top:1px solid rgba(255,255,255,0.1); padding-top:1.1rem; }
#diff { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); }
#diff .s-label { color:rgba(169,142,230,0.8); }
#diff h2 { color:#fff; max-width: 760px; }
#diff h2 em { color: var(--purple-light); }
.diff-body { display:grid; grid-template-columns:1fr; gap:1.75rem; margin-top:2.5rem; max-width:760px; }
.diff-body p { font-size:1rem; font-weight:300; color:rgba(255,255,255,0.7); line-height:1.85; }
.diff-body p strong { color:#fff; font-weight:600; }
.diff-pull p { font-size:1.15rem; color:#fff; font-weight:300; line-height:1.6; }

/* ── PROCESS ── */
#process { background: var(--bg-2); }
.proc-hd { text-align:center; max-width:580px; margin:0 auto 4rem; }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.steps::before { content:''; position:absolute; top:23px; left:12%; right:12%; height:1px; background:linear-gradient(90deg,transparent,var(--purple-border),var(--purple-border),transparent); }
.step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 0.75rem; position:relative; z-index:1; }
.step-n { width:46px; height:46px; border-radius:50%; background:var(--bg); border:1.5px solid var(--purple-border); display:flex; align-items:center; justify-content:center; font-size:0.85rem; font-weight:800; color:var(--purple); margin-bottom:1.35rem; transition:all 0.2s; }
.step:hover .step-n { background:var(--purple); border-color:var(--purple); color:#fff; box-shadow:0 0 20px rgba(109,79,194,0.25); }
.step h4 { font-size:0.87rem; font-weight:700; color:var(--navy); margin-bottom:0.45rem; }
.step p { font-size:0.75rem; color:var(--muted); line-height:1.55; }

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-g { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; margin-top:4rem; }
.about-text p { font-size:0.93rem; color:var(--muted); line-height:1.8; margin-bottom:1.1rem; font-weight:300; }
.about-name-origin { background: var(--purple-bg); border: 1px solid var(--purple-border); border-left: 3px solid var(--purple); border-radius: 0 10px 10px 0; padding: 1rem 1.2rem; margin: 1.5rem 0; }
.about-name-origin p { font-size:0.85rem; color:var(--muted); line-height:1.7; margin:0; font-style:italic; }
.about-name-origin strong { color:var(--purple); font-style:normal; }
.chips { display:flex; flex-wrap:wrap; gap:0.45rem; margin-top:1.5rem; }
.chip { font-size:0.72rem; padding:0.28rem 0.8rem; background:var(--bg-card); border:1px solid var(--border); border-radius:100px; color:var(--muted); }
.founders { display:flex; flex-direction:column; gap:1.1rem; }
.fcard { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:1.5rem; transition:all 0.2s; display:block; text-decoration:none; }
.fcard:hover { border-color:var(--purple-border); box-shadow:0 8px 24px rgba(13,17,38,0.06); transform:translateY(-2px); }
.fhead { display:flex; align-items:center; gap:0.9rem; margin-bottom:0.8rem; }
.favatar { width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:800; color:#fff; flex-shrink:0; }
.fa-q { background:linear-gradient(135deg,var(--purple),var(--purple-mid)); }
.fa-h { background:linear-gradient(135deg,var(--teal),var(--purple)); }
.fmeta h4 { font-size:0.95rem; font-weight:700; color:var(--navy); }
.fmeta span { font-size:0.76rem; color:var(--purple); }
.fbio { font-size:0.82rem; color:var(--muted); line-height:1.65; }
.fcard-footer { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--border); font-size: 0.75rem; font-weight: 500; color: #0077B5; }
.fcard-footer svg { width: 14px; height: 14px; fill: #0077B5; flex-shrink: 0; }

/* ── TESTIMONIAL ── */
#testimonial { padding:5rem 6%; background:var(--bg-2); }
.twall-hd { max-width:660px; margin:0 auto 2.75rem; text-align:center; }
.twall-hd h2 { margin-top:0.4rem; }
.twall { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; max-width:980px; margin:0 auto; }
.tcard { background:var(--bg-card); border:1px solid var(--border); border-radius:16px; padding:2rem; text-align:left; display:flex; flex-direction:column; gap:1.25rem; margin:0; }
.tcard blockquote { font-size:1.05rem; font-weight:300; color:var(--navy); line-height:1.6; margin:0; font-style:italic; position:relative; }
.tcard blockquote::before { content:'"'; font-size:3.5rem; color:rgba(109,79,194,0.1); position:absolute; top:-1.6rem; left:-0.6rem; line-height:1; z-index:0; font-style:normal; }
.tauthor { display:flex; align-items:center; justify-content:flex-start; gap:0.9rem; margin-top:auto; }
.tau-av { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--purple),var(--teal)); display:flex; align-items:center; justify-content:center; font-weight:700; color:#fff; font-size:0.85rem; flex-shrink:0; }
.tau-n { font-size:0.88rem; font-weight:600; color:var(--navy); text-align:left; }
.tau-c { font-size:0.75rem; color:var(--dim); }
@media (max-width:600px) { .twall { grid-template-columns:1fr; } }

/* ── CTA BAND (+ booking link + lead form) ── */
#cta { padding:6.5rem 6%; background:var(--purple); text-align:center; position:relative; overflow:hidden; }
#cta::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 80% at 50% 50%,rgba(255,255,255,0.08),transparent); }
.cta-inner { max-width:620px; margin:0 auto; position:relative; z-index:1; }
.cta-inner h2 { color:#fff; margin-bottom:1.1rem; }
@media(min-width:901px){ .cta-inner h2 { white-space:nowrap; } }
.cta-inner h2 em { color:#fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 4px; }
.cta-inner p { font-size:1rem; color:rgba(255,255,255,0.75); margin-bottom:2rem; font-weight:300; }
.cta-btns { display:flex; gap:0.9rem; justify-content:center; flex-wrap:wrap; }
.cta-points { display:flex; gap:2rem; justify-content:center; flex-wrap:wrap; margin-top:2.25rem; }
.cta-points span { display:inline-flex; align-items:center; gap:0.5rem; font-size:0.85rem; color:rgba(255,255,255,0.65); }
.cta-points svg { width:15px; height:15px; stroke:#fff; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
/* Shared dark CTA band (canonical #cs-cta look) — pairs with .cta-inner */
.cta-dark { padding:6.5rem 6%; background:linear-gradient(160deg, var(--navy), var(--navy-mid)); text-align:center; position:relative; overflow:hidden; }
.cta-dark::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:120px; height:1px; background:var(--purple-border); }
.cta-divider { display:flex; align-items:center; gap:1rem; margin:2.25rem auto 1.5rem; max-width:420px; color:rgba(255,255,255,0.55); font-size:0.8rem; }
.cta-divider::before, .cta-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.25); }
.cta-form { display:flex; flex-wrap:wrap; gap:0.6rem; justify-content:center; max-width:520px; margin:0 auto; }
.cta-form input[type="text"], .cta-form input[type="email"] { flex:1 1 150px; padding:0.8rem 1rem; border-radius:8px; border:1px solid rgba(255,255,255,0.3); background:rgba(255,255,255,0.12); color:#fff; font-family:var(--font); font-size:0.85rem; }
.cta-form input::placeholder { color:rgba(255,255,255,0.65); }
.cta-form input:focus { outline:none; border-color:#fff; background:rgba(255,255,255,0.18); }
.cta-form .btn-white { flex:1 1 100%; cursor:pointer; border:none; font-family:var(--font); }
.cta-hp { position:absolute; left:-9999px; opacity:0; height:0; width:0; }
.cta-consent { font-size:0.72rem; color:rgba(255,255,255,0.55); margin-top:1rem; line-height:1.5; max-width:440px; margin-left:auto; margin-right:auto; }
.cta-consent a { color:rgba(255,255,255,0.8); }

/* ── FOOTER ── */
footer { background:var(--navy); border-top:1px solid rgba(255,255,255,0.07); padding:3.5rem 6% 2rem; }
.footer-g { max-width:1180px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.fbrand img { height:100px; margin-left: -16px; }
.fbrand p { font-size:0.82rem; color:rgba(255,255,255,0.75); margin-top:0.9rem; line-height:1.7; max-width:260px; }
.fcol h5 { font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:rgba(255,255,255,0.8); margin-bottom:1.1rem; }
.fcol a { display:block; font-size:0.82rem; color:rgba(255,255,255,0.7); text-decoration:none; margin-bottom:0.6rem; transition:color 0.2s; }
.fcol a:hover { color:#ffffff; }
.footer-b { max-width:1180px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; padding-top:1.75rem; border-top:1px solid rgba(255,255,255,0.07); font-size:0.75rem; color:rgba(255,255,255,0.55); flex-wrap:wrap; gap:1rem; }

/* ── HAMBURGER ── */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 300; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  background: rgba(247,248,252,0.98); backdrop-filter: blur(20px);
  padding: 7rem 6% 2rem; z-index: 199; flex-direction: column; gap: 0;
  border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(13,17,38,0.08);
  transform: translateY(-100%); transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mm-link { display: block; color: var(--muted); text-decoration: none; font-size: 1.1rem; font-weight: 400; padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mm-link:hover { color: var(--text); }
.mm-cta { display: inline-block; margin-top: 1.5rem; background: var(--purple); color: #fff; text-decoration: none; padding: 0.85rem 1.9rem; border-radius: 9px; font-size: 0.95rem; font-weight: 600; text-align: center; transition: background 0.2s; }
.mm-cta:hover { background: var(--purple-mid); }
/* mobile services submenu */
.mm-group { border-bottom: 1px solid var(--border); }
.mm-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; cursor: pointer; color: var(--muted); font-family: var(--font);
  font-size: 1.1rem; font-weight: 400; padding: 1rem 0; text-align: left;
}
.mm-toggle::after {
  content: ""; width: 7px; height: 7px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg); transition: transform 0.25s;
}
.mm-group.open .mm-toggle::after { transform: rotate(-135deg); }
.mm-sub { display: none; flex-direction: column; padding: 0 0 0.6rem 1rem; }
.mm-group.open .mm-sub { display: flex; }
.mm-sub a { display: block; color: var(--muted); text-decoration: none; font-size: 1rem; padding: 0.6rem 0; transition: color 0.2s; }
.mm-sub a:hover { color: var(--purple); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.in { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero-inner,.plat-grid,.about-g,.diff-body{grid-template-columns:1fr}
  .hero-visual{display:none}
  .svc-grid{grid-template-columns:1fr 1fr}
  .scard.feat{grid-column:span 2; grid-template-columns:1fr;}
  .tier-grid{grid-template-columns:1fr 1fr}
  .results-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr 1fr}
  .steps::before{display:none}
  .footer-g{grid-template-columns:1fr 1fr}
  .nav-links{display:none}
  .nav-burger{display:flex}
  .mobile-menu{display:flex}
  .nav-logo img{height:44px; margin-left:-8px;}
  .data-chat-card{width:100%;}
}
@media(max-width:600px){
  .svc-grid,.results-grid,.tier-grid,.steps{grid-template-columns:1fr}
  .scard.feat{grid-column:span 1;}
  .footer-g{grid-template-columns:1fr}
}

/* ── MTF EVENT LANDING (page-mtf) — additive, scoped ── */
body.page-mtf { background: var(--bg); }
body.page-mtf .nav-links { display: flex; }
body.page-mtf .mtf-landing { min-height: 100vh; display: flex; align-items: center; padding: 8rem 6% 4.5rem; background: var(--bg); position: relative; overflow: hidden; }
body.page-mtf .mtf-inner { max-width: 1080px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
body.page-mtf .mtf-intro h1 { font-size: clamp(2.1rem, 3.6vw, 3rem); margin-bottom: 1.1rem; }
body.page-mtf .mtf-intro .hero-body { max-width: 460px; margin-bottom: 1.6rem; }
body.page-mtf .mtf-explore { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem; color: var(--muted); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: color 0.2s, gap 0.2s; }
body.page-mtf .mtf-explore:hover { color: var(--purple); gap: 0.6rem; }
body.page-mtf .mtf-explore svg { width: 15px; height: 15px; }
body.page-mtf .mtf-card { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 16px; padding: 2.25rem; box-shadow: 0 24px 60px rgba(13,17,38,0.10); }
body.page-mtf .mtf-card h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--navy); margin-bottom: 0.6rem; }
body.page-mtf .mtf-card h2 em { font-style: normal; color: var(--purple); }
body.page-mtf .mtf-card > p { font-size: 0.95rem; color: var(--muted); font-weight: 300; margin-bottom: 1.5rem; }
body.page-mtf .mtf-card .cta-form { max-width: none; }
body.page-mtf .mtf-card .cta-form input[type="text"], body.page-mtf .mtf-card .cta-form input[type="email"] { flex: 1 1 100%; background: var(--bg); border: 1px solid var(--border-2); color: var(--text); }
body.page-mtf .mtf-card .cta-form input::placeholder { color: var(--dim); }
body.page-mtf .mtf-card .cta-form input:focus { border-color: var(--purple); background: #fff; }
body.page-mtf .mtf-card .cta-form .btn-white { background: var(--purple); color: #fff; }
body.page-mtf .mtf-card .cta-form .btn-white:hover { background: var(--purple-mid); box-shadow: 0 10px 28px rgba(109,79,194,0.3); }
@media (max-width: 900px) { body.page-mtf .mtf-inner { grid-template-columns: 1fr; gap: 2.5rem; } body.page-mtf .mtf-landing { padding: 7rem 6% 3.5rem; min-height: 0; } }

/* ── CONTACT HUB (page-contact) — additive, scoped ── */
body.page-contact { background: var(--bg); }
body.page-contact .contact-hub { min-height: 100vh; display: flex; align-items: center; padding: 9rem 6% 5rem; background: var(--bg); }
body.page-contact .contact-inner { max-width: 1080px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
body.page-contact .contact-intro h1 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); margin-bottom: 1.1rem; }
body.page-contact .contact-intro .hero-body { max-width: 470px; margin-bottom: 1.8rem; }
body.page-contact .contact-next { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0 0 1.8rem; padding: 0; }
body.page-contact .contact-next li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); }
body.page-contact .contact-next svg { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--purple); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
body.page-contact .contact-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
body.page-contact .contact-links a { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--muted); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: color 0.2s, gap 0.2s; }
body.page-contact .contact-links a:hover { color: var(--purple); gap: 0.6rem; }
body.page-contact .contact-links svg { width: 15px; height: 15px; }
body.page-contact .contact-card { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 16px; padding: 2.4rem; box-shadow: 0 24px 60px rgba(13,17,38,0.10); }
body.page-contact .contact-card h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); color: var(--navy); margin-bottom: 0.55rem; }
body.page-contact .contact-card h2 em { font-style: normal; color: var(--purple); }
body.page-contact .contact-card > p { font-size: 0.95rem; color: var(--muted); font-weight: 300; margin-bottom: 1.4rem; }
body.page-contact .contact-card .btn-fill { width: 100%; text-align: center; margin-bottom: 1.4rem; }
body.page-contact .contact-card .cta-divider { color: var(--dim); margin: 0 0 1.4rem; max-width: none; }
body.page-contact .contact-card .cta-divider::before, body.page-contact .contact-card .cta-divider::after { background: var(--border-2); }
body.page-contact .contact-card .cta-form { max-width: none; }
body.page-contact .contact-card .cta-form input[type="text"], body.page-contact .contact-card .cta-form input[type="email"] { flex: 1 1 100%; background: var(--bg); border: 1px solid var(--border-2); color: var(--text); }
body.page-contact .contact-card .cta-form input::placeholder { color: var(--dim); }
body.page-contact .contact-card .cta-form input:focus { border-color: var(--purple); background: #fff; }
body.page-contact .contact-card .cta-form .btn-white { background: var(--purple); color: #fff; }
body.page-contact .contact-card .cta-form .btn-white:hover { background: var(--purple-mid); box-shadow: 0 10px 28px rgba(109,79,194,0.3); }
@media (max-width: 900px) { body.page-contact .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; } body.page-contact .contact-hub { padding: 7rem 6% 3.5rem; min-height: 0; } }

/* ── ABOUT (page-about) — editorial archetype, additive, scoped ── */
body.page-about { background: var(--bg); }
body.page-about .about-hero { padding: 9rem 6% 3rem; background: var(--bg-2); }
body.page-about .about-hero .hero-eyebrow { animation: none; }
body.page-about .about-hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 820px; animation: none; }
body.page-about .about-hero .lede { max-width: 680px; font-size: 1.05rem; color: var(--muted); line-height: 1.8; font-weight: 300; margin: 1.2rem 0 1.8rem; }
body.page-about .about-hero .hero-btns { animation: none; }
body.page-about .about-body { background: var(--bg-2); padding: 0 6% 2rem; }
body.page-about .about-body .s-inner { max-width: 760px; }
body.page-about .about-block { padding: 3.75rem 0; }
body.page-about .about-body .about-block:first-child { background: var(--bg); box-shadow: 0 0 0 100vmax var(--bg); clip-path: inset(0 -100vmax); }
body.page-about .about-block + .about-block { border-top: 0; margin-top: 0; }
body.page-about .about-block h2 { margin-top: 0.4rem; max-width: 680px; }
body.page-about .about-prose { margin-top: 1.1rem; }
body.page-about .about-prose p { font-size: 1rem; line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 680px; margin-bottom: 1.1rem; }
body.page-about .about-block .founders { margin-top: 2rem; max-width: none; }
body.page-about .favatar { overflow: hidden; }
body.page-about .favatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
/* dark reflective close — the name section flows straight into the CTA as one navy passage */
body.page-about #about-name { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); padding: 6.5rem 6% 3.5rem; }
body.page-about #about-name .about-name-inner { max-width: 760px; margin: 0 auto; }
body.page-about #about-name .s-label { color: var(--purple-light); }
body.page-about #about-name h2 { color: #fff; max-width: 680px; }
body.page-about #about-name h2 em { color: var(--purple-light); }
body.page-about #about-name .about-name-prose { margin-top: 1.4rem; }
body.page-about #about-name .about-name-prose p { font-size: 1.02rem; line-height: 1.9; color: rgba(255,255,255,0.72); font-weight: 300; max-width: 680px; margin-bottom: 1.2rem; }
body.page-about #about-name .about-name-prose p:last-child { margin-bottom: 0; }
body.page-about .cta-dark { padding-top: 3.5rem; } /* abuts the dark #about-name section above */

/* ── OUR WORK (page-work) — index/gallery archetype, additive, scoped ── */
body.page-work { background: var(--bg); }
/* nav over the dark hero — swap to the white logo asset, revert when scrolled */
body.page-work .nav-logo .logo-white { display: none; }
body.page-work nav:not(.scrolled) .nav-logo .logo-navy { display: none; }
body.page-work nav:not(.scrolled) .nav-logo .logo-white { display: block; }
body.page-work nav:not(.scrolled) .nav-links > li > a:not(.nav-cta) { color: rgba(255,255,255,0.82); }
body.page-work nav:not(.scrolled) .nav-links > li > a:not(.nav-cta):hover { color: #fff; }
body.page-work nav:not(.scrolled) .nav-links > li > a.active { color: var(--purple-light); }
body.page-work nav:not(.scrolled) .nav-burger span { background: #fff; }
/* dark hero */
body.page-work #work-hero { position: relative; background: linear-gradient(160deg, var(--navy), var(--navy-mid)); padding: 10rem 6% 4.5rem; overflow: hidden; }
body.page-work #work-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--purple-border); }
body.page-work .work-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
body.page-work #work-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); max-width: 860px; color: #fff; margin-top: 1rem; }
body.page-work #work-hero h1 em { color: var(--purple-light); }
body.page-work .work-hero-dek { max-width: 620px; margin: 1.2rem 0 1.8rem; font-size: 1.02rem; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.72); }
body.page-work #work-hero .btn-ghost { border-color: rgba(255,255,255,0.28); color: #fff; }
body.page-work #work-hero .btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
/* light metric-forward gallery */
body.page-work #studies { background: var(--bg); padding: 5rem 6%; }
body.page-work #studies .s-inner { max-width: 1180px; margin: 0 auto; }
body.page-work .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
body.page-work .work-card { display: flex; flex-direction: column; min-height: 240px; }
body.page-work .work-card h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.4; color: var(--navy); }
body.page-work .work-card .scard-more { margin-top: auto; padding-top: 1.2rem; }
@media (max-width: 900px) {
  body.page-work .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body.page-work .work-grid { grid-template-columns: 1fr; }
  body.page-work #work-hero { padding: 8rem 6% 3.5rem; }
}

/* ── OFFER PAGES — shared skeleton (additive brand layer: .offer-hero + reused .cta-dark) ── */
.offer-hero { padding: 9.5rem 6% 4rem; background: var(--bg-2); position: relative; }
.offer-hero-inner { max-width: 1180px; margin: 0 auto; }
.offer-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); max-width: 820px; margin-top: 1rem; }
.offer-hero .offer-dek { max-width: 640px; margin: 1.2rem 0 1.8rem; font-size: 1.05rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.offer-hero .hero-eyebrow, .offer-hero h1, .offer-hero .hero-btns { animation: none; }
@media (max-width: 600px) { .offer-hero { padding: 8rem 6% 3rem; } }

/* ── AUDIT (page-audit) — Offer signature, additive, scoped ── */
body.page-audit { background: var(--bg); }
/* background rhythm: hero(bg-2) → what(bg) → deliverables(bg-2) → process(bg) → tiers(bg-2) → next(bg) → cta(navy) */
body.page-audit #deliverables, body.page-audit #tiers { background: var(--bg-2); }
/* deliverables — numbered editorial manifest (01–05) */
body.page-audit .manifest-hd { max-width: 720px; }
body.page-audit .manifest { counter-reset: man; margin-top: 2.75rem; max-width: 820px; }
body.page-audit .manifest-item { counter-increment: man; display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; padding: 1.5rem 0; border-top: 1px solid var(--border); align-items: baseline; }
body.page-audit .manifest-item:first-child { border-top: 0; padding-top: 0; }
body.page-audit .manifest-item::before { content: counter(man, decimal-leading-zero); font-size: 0.95rem; font-weight: 800; color: var(--purple); letter-spacing: 0.05em; font-variant-numeric: tabular-nums; }
body.page-audit .manifest-item .di-text { font-size: 1rem; line-height: 1.7; color: var(--muted); }
body.page-audit .manifest-item .di-text strong { color: var(--navy); font-weight: 600; }
body.page-audit .manifest-foot { margin-top: 2.25rem; color: var(--muted); font-size: 0.95rem; font-weight: 300; max-width: 820px; }
body.page-audit .manifest-foot strong { color: var(--navy); font-weight: 600; }
/* two-week process — vertical numbered spine */
body.page-audit .spine { list-style: none; counter-reset: spine; margin-top: 3rem; max-width: 760px; }
body.page-audit .spine-step { counter-increment: spine; position: relative; padding: 0 0 2.5rem 4.25rem; }
body.page-audit .spine-step::before { content: counter(spine); position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--purple-border); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: var(--purple); z-index: 1; }
body.page-audit .spine-step::after { content: ''; position: absolute; left: 23px; top: 46px; bottom: 0; width: 1.5px; background: var(--purple-border); }
body.page-audit .spine-step:last-child { padding-bottom: 0; }
body.page-audit .spine-step:last-child::after { display: none; }
body.page-audit .spine-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; padding-top: 0.65rem; }
body.page-audit .spine-step p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
body.page-audit .spine-foot { margin-top: 2.5rem; font-size: 0.88rem; color: var(--dim); max-width: 760px; line-height: 1.6; }
/* forward note */
body.page-audit #next .svc-grid { grid-template-columns: 1fr 1fr; margin-top: 3rem; }
@media (max-width: 600px) {
  body.page-audit #next .svc-grid { grid-template-columns: 1fr; }
  body.page-audit .manifest-item { gap: 1.1rem; }
  body.page-audit .spine-step { padding-left: 3.75rem; }
}

/* ── DATA ASSISTANT (page-product) — Offer signature: chat demo as centrepiece, additive, scoped ── */
body.page-product { background: var(--bg); }
/* background rhythm: hero(bg-2) → assistant(bg) → after-audit(bg-2) → cta(navy) */
body.page-product #after-audit { background: var(--bg-2); }
/* hero — two columns: text + the live chat demo as centrepiece */
body.page-product .offer-hero { overflow: hidden; }
body.page-product .offer-hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
body.page-product .offer-hero-text h1 { max-width: 560px; }
body.page-product .offer-hero-text .offer-dek { max-width: 520px; }
body.page-product .offer-hero-visual { position: relative; }
body.page-product .offer-hero-visual .data-chat-card { max-width: 384px; margin: 0 auto; box-shadow: 0 24px 64px rgba(13,17,38,0.13); }
/* more compact chat demo so the whole card sits cleanly within the laptop hero */
body.page-product .data-chat-card .dc-head { padding: 0.65rem 0.95rem; }
body.page-product .data-chat-card .dc-body { padding: 0.9rem; gap: 0.55rem; }
body.page-product .data-chat-card .cbubble { font-size: 0.74rem; padding: 0.55rem 0.8rem; }
body.page-product .data-chat-card .cbubble.u { font-size: 0.74rem; }
body.page-product .data-chat-card .cavatar { width: 23px; height: 23px; }
body.page-product .data-chat-card .hcard-input { padding: 0.55rem 0.8rem; }
body.page-product .data-chat-card .hci-field { font-size: 0.72rem; padding: 0.5rem 0.85rem; }
body.page-product .data-chat-card .hci-send { width: 29px; height: 29px; }
@media (max-width: 900px) {
  body.page-product .offer-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  body.page-product .offer-hero-visual .data-chat-card { margin: 0 auto; }
}
@media (max-width: 600px) {
  body.page-product .offer-hero-visual .data-chat-card { max-width: 100%; }
}

/* ── DEEP-DIVE SPRINTS (page-sprints) — Offer signature: question-led catalogue, additive, scoped ── */
body.page-sprints { background: var(--bg); }
/* background rhythm: hero(bg-2) → what(bg) → variants(bg-2) → process(bg) → after-audit(bg-2) → cta(navy) */
body.page-sprints #variants, body.page-sprints #sprint-after-audit { background: var(--bg-2); }
body.page-sprints #process { background: var(--bg); }
/* the five variants as a numbered, question-led menu (index-like; not the home's card grid) */
body.page-sprints .sprint-menu { margin-top: 3rem; border-top: 1px solid var(--border); }
body.page-sprints .sprint-row { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; padding: 2rem 1rem; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.25s ease, padding 0.25s ease; }
body.page-sprints .sprint-row:hover { background: var(--purple-bg); padding-left: 1.5rem; }
body.page-sprints .sprint-idx { font-size: 1.05rem; font-weight: 800; color: var(--purple); letter-spacing: 0.05em; font-variant-numeric: tabular-nums; align-self: start; padding-top: 0.15rem; }
body.page-sprints .sprint-row-main .scard-tag { margin-bottom: 0.55rem; }
body.page-sprints .sprint-row h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 0.45rem; }
body.page-sprints .sprint-row p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 620px; }
body.page-sprints .sprint-row .scard-more { margin-top: 0; white-space: nowrap; }
@media (max-width: 600px) {
  body.page-sprints .sprint-row { grid-template-columns: auto 1fr; gap: 0.4rem 1.2rem; padding: 1.6rem 0.25rem; }
  body.page-sprints .sprint-row:hover { padding-left: 0.5rem; }
  body.page-sprints .sprint-row-main { grid-column: 2; }
  body.page-sprints .sprint-row .scard-more { grid-column: 2; }
}

/* ── THANK YOU (post-submission confirmation) ── */
body.page-thanks .thanks-hero { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 10rem 6% 6rem; background: var(--bg-2); }
body.page-thanks .thanks-inner { max-width: 620px; margin: 0 auto; }
body.page-thanks .thanks-hero .hero-eyebrow { justify-content: center; }
body.page-thanks .thanks-hero .hero-body { margin: 0 auto; }
body.page-thanks .thanks-hero .hero-btns { justify-content: center; margin-top: 2.25rem; }
