/* SquidSpark — WordPress block theme stylesheet
   ------------------------------------------------------------------
   Verbatim port of the prototype's styles.css. Class names are preserved
   so ported markup works 1:1, with ONE deliberate rename:

     prototype `.nav`  →  theme `.site-nav`

   …because WordPress core and many plugins already style `.nav`. The
   header template part and squidspark.js both use `.site-nav`. An alias
   is provided below so any leftover `.nav` markup still works during the
   port; remove it once everything uses `.site-nav`.

   NOTE: the prototype set CSS custom properties in :root. Those are kept,
   but they intentionally mirror the theme.json preset variables
   (--wp--preset--color--cyan, etc.). Prefer the theme.json presets in new
   blocks; the raw vars remain for the ported component CSS.
   ------------------------------------------------------------------ */

/* Back-compat alias: treat legacy .nav as .site-nav. */
.site-nav { /* see full nav rules below (search ".nav {") */ }

/* SquidSpark — Home */

:root {
  --cyan: #19BEEC;
  --cyan-700: #0E8AB0;
  --cyan-900: #064158;
  --ink: #0A1218;
  --ink-2: #131E26;
  --deep: #051624;
  --deep-2: #0B2A3D;
  --spark: #FFD23F;
  --spark-2: #FFA825;
  --surface: #F4F7F9;
  --surface-2: #E9EFF2;
  --line: rgba(10, 18, 24, 0.08);
  --muted: rgba(10, 18, 24, 0.72);
  --bg: var(--surface);
  --fg: var(--ink);
  --font-display: "Space Grotesk", "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", "Inter Tight", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Hide the native cursor only once JS has booted the custom cursor
   (body.has-cursor is added by squidspark.js on fine-pointer devices). */
body.has-cursor,
body.has-cursor button,
body.has-cursor input,
body.has-cursor a { cursor: none; }

/* mode variants */
body.mode-light { --bg: var(--surface); --fg: var(--ink); --line: rgba(10,18,24,0.08); --muted: rgba(10,18,24,0.72); }
body.mode-dark  { --bg: #06090C; --fg: #E8F1F5; --line: rgba(232,241,245,0.08); --muted: rgba(232,241,245,0.55); }
body.mode-ocean { --bg: var(--deep); --fg: #E8F1F5; --line: rgba(232,241,245,0.10); --muted: rgba(232,241,245,0.60); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; margin: 0; line-height: 1.02; text-wrap: balance; }

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

/* ===== Layout ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
section { position: relative; }
.section-pad { padding: 140px 0; }

/* ===== Custom cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--spark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px var(--spark), 0 0 36px rgba(255, 210, 63, 0.6);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  opacity: 1;
  border-color: var(--spark);
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
/* Wordmark is black in source — invert + hue-rotate keeps the cyan squid
   roughly cyan while flipping the black "SQUIDSPARK" text to white.
   The nav chrome is ALWAYS dark (see "Nav: always dark" block), so the
   logo is always inverted regardless of theme mode. */
.nav-logo img {
  filter: invert(1) hue-rotate(180deg);
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.82;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  color: inherit;
}
.nav-link:hover, .nav-link.is-active { opacity: 1; background: color-mix(in oklch, currentColor 8%, transparent); }
.nav-link .caret { opacity: 0.55; transition: transform 0.2s ease; }
.nav-link.is-active .caret { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease;
}
body.mode-ocean .nav-cta, body.mode-dark .nav-cta { background: var(--cyan); color: #051624; border-color: var(--cyan); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta .arr { transition: transform 0.2s ease; display: inline-flex; }
.nav-cta:hover .arr { transform: translateX(3px); }

/* Hamburger */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  position: relative;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  position: absolute;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 13px; }
.nav-burger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ====== Mega menu ====== */
.mega-stack {
  position: absolute;
  left: 0; right: 0; top: 100%;
  pointer-events: none;
}
/* Once a panel is open, accept hover across the whole strip so the cursor
   has no dead zone to fall through between the nav bar and the panel. */
.nav.is-mega-open .mega-stack { pointer-events: auto; }
.mega-panel {
  position: absolute;
  left: 0; right: 0; top: 0;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  pointer-events: none;
}
.mega-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}

.mega-inner {
  display: grid;
  grid-template-columns: 0.85fr 2.2fr 1fr;
  gap: 56px;
  padding: 28px 32px 40px;
}
.mega-intro { padding-right: 16px; }
.mega-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.mega-blurb {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 280px;
}
.mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mega-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mega-item {
  display: flex;
  gap: 14px;
  padding: 10px 12px;
  margin: -10px -12px;
  border-radius: 12px;
  align-items: flex-start;
  transition: background 0.2s ease;
}
.mega-item:hover { background: color-mix(in oklch, var(--cyan) 8%, transparent); }
.mega-item-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: color-mix(in oklch, var(--cyan) 14%, transparent);
  color: var(--cyan);
  flex: 0 0 36px;
}
.mega-item-text { display: flex; flex-direction: column; gap: 2px; }
.mega-item-name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.mega-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.mega-feature {
  display: flex; flex-direction: column;
  background: linear-gradient(170deg, var(--deep) 0%, var(--ink) 100%);
  color: #E8F1F5;
  padding: 24px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 220px;
}
.mega-feature::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 220px at 80% 100%, color-mix(in oklch, var(--cyan) 35%, transparent), transparent 70%);
  pointer-events: none;
}
.mega-feature-tag {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.mega-feature-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.mega-feature-desc {
  position: relative;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(232,241,245,0.7);
  margin-bottom: auto;
}
.mega-feature-cta {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 20px;
}

.mega-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 95; /* over page content, under the nav (100) and its mega panels */
}
.mega-scrim.is-on { opacity: 1; pointer-events: auto; }

.nav.is-mega-open { background: color-mix(in oklch, var(--bg) 92%, transparent); backdrop-filter: saturate(180%) blur(20px); border-bottom-color: var(--line); }

@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: 1fr 2fr; gap: 32px; }
  .mega-feature { grid-column: 1 / -1; }
}

/* ====== Mobile drawer ====== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--deep);
  color: #E8F1F5;
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 96px 24px 32px;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-inner { display: flex; flex-direction: column; flex: 1; gap: 18px; }

.mobile-list { display: flex; flex-direction: column; }
.mobile-top {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 18px 0;
  border-bottom: 1px solid rgba(232,241,245,0.08);
}
.mobile-group { border-bottom: 1px solid rgba(232,241,245,0.08); }
.mobile-group-head {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #E8F1F5;
}
.mobile-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-group.is-open .mobile-group-body { max-height: 1200px; }
.mobile-sub {
  display: flex;
  gap: 14px;
  padding: 14px 0 14px 4px;
  align-items: flex-start;
  border-top: 1px solid rgba(232,241,245,0.06);
}
.mobile-sub:first-child { border-top: 0; }
.mobile-sub-icon {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(25, 190, 236, 0.14);
  color: var(--cyan);
}
.mobile-sub-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.mobile-sub-desc {
  display: block;
  font-size: 13px;
  color: rgba(232,241,245,0.62);
  line-height: 1.4;
}
.mobile-cta {
  margin-top: 16px;
  padding: 16px 22px;
  font-size: 16px;
  justify-content: center;
}
.mobile-foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,241,245,0.45);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--deep);
  color: #E8F1F5;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 70% 30%, rgba(25, 190, 236, 0.18), transparent 60%),
    radial-gradient(900px 600px at 20% 80%, rgba(255, 210, 63, 0.10), transparent 60%),
    linear-gradient(180deg, #03101A 0%, #051624 40%, #082135 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,241,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,241,245,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 80%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-text { max-width: 640px; }
.hero h1 {
  font-size: clamp(40px, 4.6vw, 72px);
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 22px 0 28px;
}
.hero h1 .grad {
  background: linear-gradient(180deg, #E8F1F5 0%, #19BEEC 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .spark-word {
  position: relative;
  color: var(--spark);
  font-weight: 600;
}
.hero p.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: rgba(232, 241, 245, 0.72);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: #051624; }
.btn-primary:hover { transform: translateY(-1px); background: #2AC9F2; }
.btn-ghost { color: #E8F1F5; border-color: rgba(232,241,245,0.18); }
.btn-ghost:hover { border-color: rgba(232,241,245,0.4); background: rgba(232,241,245,0.04); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1f2a33; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-1px); }

.hero-bullets {
  display: flex; gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-bullet {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-bullet .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -0.02em;
}
.hero-bullet .label {
  font-size: 13px;
  color: rgba(232,241,245,0.6);
  max-width: 180px;
  line-height: 1.35;
}

.hero-squid-wrap {
  position: relative;
  height: 540px;
  display: grid;
  place-items: center;
}
.hero-squid {
  width: min(540px, 100%);
  height: 540px;
  position: relative;
}

/* floating bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232,241,245,0.6), rgba(25,190,236,0.18) 60%, transparent 70%);
  border: 1px solid rgba(232,241,245,0.18);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(8px); }
}

/* hero scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(232,241,245,0.45);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .line { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, var(--cyan)); animation: cueDrop 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes cueDrop { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ===== Photo hero (home) ===== */
.hero-photo {
  min-height: 100vh;
  display: block;
  position: relative;
}
.hero-photo-bg {
  position: absolute; inset: -20px;
  z-index: 0;
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) + var(--sy, 0)), 0) scale(1.08);
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.hero-photo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.hero-photo-tint {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(3,16,26,0.94) 0%, rgba(4,18,30,0.82) 34%, rgba(5,22,36,0.55) 64%, rgba(5,22,36,0.40) 100%),
    linear-gradient(0deg, rgba(3,12,20,0.92) 0%, transparent 38%),
    radial-gradient(900px 500px at 80% 12%, rgba(25,190,236,0.18), transparent 60%);
}
.hero-spotlight {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-photo-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero-photo .hero-text { max-width: 680px; }
.hero-photo h1 {
  font-size: clamp(40px, 5vw, 78px);
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.0;
  margin: 22px 0 26px;
}
.hero-photo h1 .grad {
  background: linear-gradient(180deg, #FFFFFF 0%, #CFE9F4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-photo h1 .spark-word { color: var(--spark); font-weight: 600; }
.hero-photo .lead {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: rgba(232,241,245,0.82);
  max-width: 520px;
  margin: 0 0 34px;
}

/* floating glass stat cards */
.hero-float-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.hero-fcard {
  background: rgba(232,241,245,0.07);
  border: 1px solid rgba(232,241,245,0.14);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(14px) saturate(160%);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.7);
}
.hero-fcard:nth-child(2) { margin-left: 28px; }
.hero-fcard:nth-child(3) { margin-left: 8px; }
.hero-fcard-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cyan);
  flex: 0 0 auto;
  line-height: 1;
}
.hero-fcard-label {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(232,241,245,0.72);
}

.hero-strip-meta {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 30px;
  z-index: 4;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,241,245,0.5);
}
.hero-strip-meta .hero-strip-dot { color: var(--cyan); }

@media (max-width: 900px) {
  .hero-photo-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; padding-top: 130px; }
  .hero-float-cards { justself: start; justify-self: start; max-width: 460px; flex-direction: row; flex-wrap: wrap; }
  .hero-fcard { flex: 1 1 200px; margin-left: 0 !important; }
  .hero-strip-meta { display: none; }
}
@media (max-width: 560px) {
  .hero-fcard { flex-basis: 100%; }
}

/* marquee strip below hero */
.marquee-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee {
  display: flex;
  gap: 64px;
  animation: marq 40s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 64px; }
.marquee .dot { color: var(--cyan); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Services ===== */
.services {
  background: var(--bg);
  color: var(--fg);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.section-head .head-meta { color: var(--muted); font-size: 16px; max-width: 480px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* v2 discipline card: photo header + light body (replaces the old
   full-bleed dark photo cards and the bordered-table grid) */
.svc2-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc2-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--cyan) 40%, var(--line));
  box-shadow: 0 24px 48px -28px rgba(5, 22, 36, 0.35);
}
.svc2-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--deep);
}
.svc2-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.svc2-card:hover .svc2-thumb img { transform: scale(1.05); }
.svc2-num {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #E8F1F5;
  background: rgba(5, 22, 36, 0.55);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(232, 241, 245, 0.18);
}
.svc2-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.svc2-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.svc2-icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: color-mix(in oklch, var(--cyan) 14%, transparent);
  color: var(--cyan);
}
.svc2-icon svg { width: 22px; height: 22px; }
.svc2-head h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc2-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 20px;
}
.svc2-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.svc2-foot .svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc2-foot .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--fg) 6%, transparent);
  color: var(--muted);
}
.svc2-arrow {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.svc2-card:hover .svc2-arrow {
  background: var(--cyan); color: var(--deep); border-color: var(--cyan);
  transform: translate(2px, -2px);
}
.service-card {
  grid-column: span 2;
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
  min-height: 340px;
  background: var(--bg);
  transition: background 0.3s ease;
  overflow: hidden;
}
.service-card:hover { background: color-mix(in oklch, var(--cyan) 6%, var(--bg)); }
.service-card .svc-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 28px;
  color: var(--cyan);
}
.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 340px;
}
.service-card .svc-tags {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-card .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--fg) 6%, transparent);
  color: var(--muted);
}
.service-card .svc-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.service-card .arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.service-card:hover .arrow { background: var(--ink); color: #fff; border-color: var(--ink); transform: translate(-2px, -2px); }
body.mode-dark .service-card:hover .arrow,
body.mode-ocean .service-card:hover .arrow { background: var(--cyan); color: var(--deep); border-color: var(--cyan); }

/* feature service (wider) */
.service-card.featured {
  grid-column: span 3;
  background: linear-gradient(180deg, var(--deep) 0%, var(--ink) 100%);
  color: #E8F1F5;
  min-height: 340px;
}
.service-card.featured:hover { background: linear-gradient(180deg, #062538 0%, #1a2832 100%); }
.service-card.featured p { color: rgba(232,241,245,0.7); }
.service-card.featured .tag { background: rgba(232,241,245,0.08); color: rgba(232,241,245,0.7); }
.service-card.featured .arrow { background: var(--cyan); color: var(--deep); border-color: var(--cyan); }
.service-card.featured .svc-num { color: rgba(232,241,245,0.5); }

/* photo-backed discipline cards */
.service-card.has-photo {
  background: var(--ink);
  color: #E8F1F5;
}
.svc-card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,18,30,0.62) 0%, rgba(5,18,30,0.80) 55%, rgba(4,14,22,0.94) 100%);
  transition: background 0.3s ease;
}
.service-card.has-photo:hover { background: var(--ink); }
.service-card.has-photo:hover::after {
  background: linear-gradient(180deg, rgba(6,37,56,0.5) 0%, rgba(5,22,36,0.74) 55%, rgba(4,14,22,0.92) 100%);
}
.service-card.has-photo:hover .svc-card-photo { transform: scale(1.06); }
.service-card.has-photo > *:not(.svc-card-photo) { position: relative; z-index: 2; }
.service-card.has-photo .svc-icon { color: var(--cyan); background: rgba(25,190,236,0.16); border-radius: 13px; }
.service-card.has-photo p { color: rgba(232,241,245,0.78); }
.service-card.has-photo .svc-num { color: rgba(232,241,245,0.6); }
.service-card.has-photo .tag { background: rgba(232,241,245,0.12); color: rgba(232,241,245,0.82); }
.service-card.has-photo .arrow { background: rgba(232,241,245,0.14); color: #fff; border-color: transparent; backdrop-filter: blur(4px); }
.service-card.has-photo:hover .arrow { background: var(--cyan); color: var(--deep); border-color: var(--cyan); transform: translate(-2px, -2px); }

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== Why ===== */
.why {
  background: var(--ink);
  color: #E8F1F5;
}
body.mode-ocean .why { background: var(--deep-2); }
.why .section-head h2 .grad {
  background: linear-gradient(180deg, #E8F1F5 0%, var(--cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why .head-meta { color: rgba(232,241,245,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: rgba(232,241,245,0.04);
  border: 1px solid rgba(232,241,245,0.08);
  position: relative;
  overflow: hidden;
}
.why-card .why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 36px;
}
.why-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: rgba(232,241,245,0.62);
  line-height: 1.55;
  margin: 0;
}
.why-card .accent-blob {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--cyan) 50%, transparent) 0%, transparent 65%);
  top: -80px; right: -50px;
  pointer-events: none;
}
.why-card:nth-child(2) .accent-blob { background: radial-gradient(circle, color-mix(in oklch, var(--spark) 45%, transparent) 0%, transparent 65%); }

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== Case studies ===== */
.cases { background: var(--bg); color: var(--fg); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* v2 case card: photo header + light body (replaces the dark overlay cards) */
.case2-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.case2-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--cyan) 40%, var(--line));
  box-shadow: 0 24px 48px -28px rgba(5, 22, 36, 0.35);
}
.case2-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--deep);
}
.case2-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.case2-card:hover .case2-thumb img { transform: scale(1.05); }
.case2-industry {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--cyan);
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 500;
}
.case2-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 24px;
}
.case2-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}
.case2-arrow {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.case2-card:hover .case2-arrow {
  background: var(--cyan); color: var(--deep); border-color: var(--cyan);
  transform: translate(2px, -2px);
}
.case2-body h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 20px;
  text-wrap: balance;
}
.case2-stat {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.case2-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cyan);
}
.case2-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.case-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  color: #E8F1F5;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 360px;
  border: 1px solid transparent;
  transition: transform 0.3s ease;
}
.case-card:hover { transform: translateY(-4px); }
.case-card.light { background: var(--surface-2); color: var(--ink); border-color: var(--line); }
.case-card.cyan { background: var(--cyan); color: var(--deep); }

/* photo-backed case card */
.case-card.has-photo { background: var(--ink); color: #E8F1F5; }
.case-card .case-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.case-card.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,22,36,0.35) 0%, rgba(5,22,36,0.72) 55%, rgba(5,22,36,0.92) 100%);
}
.case-card.has-photo:hover .case-photo { transform: scale(1.05); }
.case-card.has-photo > *:not(.case-photo) { position: relative; z-index: 2; }
.case-card.has-photo .case-stat-num { color: var(--cyan); }
.case-card.has-photo .case-arrow { background: rgba(232,241,245,0.14); backdrop-filter: blur(4px); }
.case-card .case-meta { display: flex; justify-content: space-between; align-items: center; }
.case-card .case-industry {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.case-card .case-num {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.7;
}
.case-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 80px 0 16px;
  text-wrap: balance;
}
.case-card .case-stat {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: auto;
}
.case-card .case-stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.case-card .case-stat-label {
  font-size: 13px;
  opacity: 0.7;
  max-width: 160px;
  line-height: 1.35;
}
.case-card .case-arrow {
  position: absolute; top: 32px; right: 32px;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(232,241,245,0.08);
}
.case-card.light .case-arrow { background: rgba(10,18,24,0.08); }
.case-card.cyan .case-arrow { background: rgba(5,22,36,0.15); }

.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-logos .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.client-logos .logos {
  display: flex; gap: 56px; flex-wrap: wrap;
  align-items: center;
}
.client-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--fg);
  opacity: 0.72;
  display: inline-flex; align-items: center; gap: 8px;
}
.client-logo .sym { width: 18px; height: 18px; display: inline-block; }

@media (max-width: 1000px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* ===== Process ===== */
.process {
  background: var(--bg);
  color: var(--fg);
  border-top: 1px solid var(--line);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 6px, transparent 6px 14px);
  opacity: 0.5;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-step .step-orb {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--cyan);
  position: relative;
}
.process-step .step-orb::after {
  content: "";
  position: absolute; inset: -8px;
  border: 1px dashed color-mix(in oklch, var(--cyan) 40%, transparent);
  border-radius: 50%;
  opacity: 0.6;
}
.process-step h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 260px;
  margin: 0;
}
.process-step .step-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== Insights ===== */
.insights { background: var(--bg); color: var(--fg); border-top: 1px solid var(--line); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.insight-card:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--cyan) 35%, var(--line)); }
.insight-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.insight-thumb.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.insight-thumb.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,22,36,0.05) 0%, rgba(5,22,36,0.55) 100%);
}
.insight-card:hover .insight-thumb.has-photo img { transform: scale(1.06); }
.insight-thumb-cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--cyan);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.insight-card .insight-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.insight-card .insight-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.insight-card .insight-meta .cat { color: var(--cyan); }
.insight-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.insight-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 18px;
  flex: 1;
}
.insight-card .read-more {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta {
  background: var(--deep);
  color: #E8F1F5;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta .cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 30% 50%, rgba(25,190,236,0.25), transparent 65%),
    radial-gradient(700px 500px at 80% 30%, rgba(255,210,63,0.10), transparent 65%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.cta h2 .grad {
  background: linear-gradient(180deg, #E8F1F5 0%, var(--cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta h2 .spark {
  color: var(--spark);
  font-weight: 600;
}
.cta p.lead {
  font-size: 17px;
  color: rgba(232,241,245,0.7);
  max-width: 480px;
  margin: 24px 0 0;
}
.cta-card {
  background: rgba(232,241,245,0.04);
  border: 1px solid rgba(232,241,245,0.1);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
}
.cta-card h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin: 0 0 24px;
}
.cta-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,241,245,0.08);
  font-size: 14px;
}
.cta-row:last-of-type { border-bottom: 0; }
.cta-row .k { color: rgba(232,241,245,0.55); }
.cta-row .v { font-weight: 500; }
.cta-card .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: #E8F1F5;
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(232,241,245,0.08);
}
.footer-brand { max-width: 320px; }
.footer-brand p { font-size: 14px; color: rgba(232,241,245,0.6); line-height: 1.5; margin: 16px 0 24px; }
.footer-brand .socials { display: flex; gap: 10px; }
.footer-brand .social {
  width: 36px; height: 36px;
  border: 1px solid rgba(232,241,245,0.12);
  border-radius: 999px;
  display: grid; place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-brand .social:hover { background: rgba(232,241,245,0.08); border-color: rgba(232,241,245,0.3); }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,241,245,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(232,241,245,0.78); transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-newsletter input {
  width: 100%;
  background: rgba(232,241,245,0.04);
  border: 1px solid rgba(232,241,245,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit; color: #fff;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(232,241,245,0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--cyan); }
.footer-newsletter .btn { width: 100%; justify-content: center; }
.footer-newsletter .btn:disabled { opacity: 0.6; pointer-events: none; }
.footer-subscribe .subscribe-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.subscribe-msg { margin: 10px 0 0; font-size: 13px; color: rgba(232,241,245,0.6); }
.subscribe-msg:empty { display: none; }
.subscribe-msg.is-ok { color: var(--cyan); }
.subscribe-msg.is-err { color: var(--spark-2); }
.footer-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(232,241,245,0.5);
}
.footer-bottom .legal { display: flex; gap: 24px; }

@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ===== Reveal-on-scroll ===== */
/* Hidden state only applies once JS has confirmed it can drive the reveal
   (html.js-reveal). Without JS, or if anything goes wrong, content stays
   visible — never permanently hidden. */
.reveal { opacity: 1; transform: none; }
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
html.js-reveal .reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Section divider blip ===== */
.divider-blip {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.divider-blip::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.divider-blip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

/* hide cursor on touch / reduced-motion */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, .nav-newsletter input { cursor: auto; }
}

/* ===================================================================
   INNER PAGES (Services / Solutions)
   =================================================================== */

/* ----- Page hero (compact, not full-screen) ----- */
.page-hero {
  position: relative;
  background: var(--deep);
  color: #E8F1F5;
  overflow: hidden;
  isolation: isolate;
  padding: 180px 0 90px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 26px;
  text-wrap: balance;
}
.page-hero h1 .grad {
  background: linear-gradient(180deg, #E8F1F5 0%, #BFE9F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero h1 .spark-word { color: var(--cyan); font-weight: 600; }
.page-hero-lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  color: rgba(232, 241, 245, 0.72);
  max-width: 640px;
  margin: 0 0 34px;
}
.page-hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page-hero-stat .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cyan);
}
.page-hero-stat .label {
  font-size: 13px;
  color: rgba(232, 241, 245, 0.6);
  max-width: 160px;
  line-height: 1.4;
  margin-top: 4px;
}
/* Fade removed by request — inner-page heroes end on a clean cut. */
.page-hero-fade { display: none; }

/* page hero with photo background */
.page-hero.has-photo { overflow: hidden; }
.page-hero-photo {
  position: absolute; inset: -20px;
  z-index: 0;
  will-change: transform;
}
.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  filter: saturate(1.05);
}
.page-hero-photo-tint {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(3,16,26,0.94) 0%, rgba(4,18,30,0.82) 38%, rgba(5,22,36,0.58) 70%, rgba(5,22,36,0.45) 100%),
    linear-gradient(0deg, rgba(3,12,20,0.9) 0%, transparent 42%),
    radial-gradient(900px 500px at 82% 14%, rgba(25,190,236,0.16), transparent 60%);
}
.page-hero.has-photo .page-hero-inner { z-index: 2; }

/* ----- Process strip ----- */
.proc-strip {
  background: var(--bg);
  color: var(--fg);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.proc-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.proc-strip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.proc-strip-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  padding: 6px 10px;
  border: 1px solid color-mix(in oklch, var(--cyan) 30%, transparent);
  border-radius: 999px;
  flex: 0 0 auto;
}
.proc-strip-item h4 { font-size: 16px; font-weight: 600; margin: 2px 0 4px; }
.proc-strip-item p { font-size: 13.5px; color: var(--muted); line-height: 1.45; margin: 0; }
@media (max-width: 900px) {
  .proc-strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .proc-strip-grid { grid-template-columns: 1fr; }
}

/* ----- Service category block ----- */
.svc-cat {
  background: var(--bg);
  color: var(--fg);
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.svc-cat:nth-child(even) { background: color-mix(in oklch, var(--fg) 3%, var(--bg)); }
.svc-cat-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.svc-cat.flip .svc-cat-head { order: 2; }
.svc-cat.flip .svc-cards { order: 1; }
.svc-cat-head { position: sticky; top: 110px; }
.svc-cat-badge {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
}
.svc-cat-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: color-mix(in oklch, var(--cyan) 14%, transparent);
  color: var(--cyan);
}
.svc-cat-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.svc-cat-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.svc-cat-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 420px;
}
.svc-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.svc-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.svc-cat-photo {
  position: relative;
  margin-top: 34px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}
.svc-cat-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.svc-cat-photo-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,22,36,0.05) 0%, rgba(5,22,36,0.45) 100%);
}
.svc-benefit-check {
  width: 24px; height: 24px;
  flex: 0 0 24px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: color-mix(in oklch, var(--cyan) 16%, transparent);
  color: var(--cyan);
}
.svc-benefit-check svg { width: 12px; height: 12px; }

.svc-cards { display: flex; flex-direction: column; gap: 14px; }
.svc-mini-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.svc-mini-card:hover {
  transform: translateX(4px);
  border-color: color-mix(in oklch, var(--cyan) 40%, var(--line));
  background: color-mix(in oklch, var(--cyan) 5%, var(--bg));
}
.svc-mini-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: color-mix(in oklch, var(--cyan) 12%, transparent);
  color: var(--cyan);
}
.svc-mini-body { flex: 1; }
.svc-mini-body h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 2px 0 6px;
}
.svc-mini-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 460px;
}
.svc-mini-arrow {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.svc-mini-card:hover .svc-mini-arrow {
  background: var(--cyan); color: var(--deep); border-color: var(--cyan);
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .svc-cat { padding: 72px 0; }
  .svc-cat-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-cat-head { position: static; }
  .svc-cat.flip .svc-cat-head { order: 1; }
  .svc-cat.flip .svc-cards { order: 2; }
}

/* ----- Solutions page specifics ----- */
.sol-block {
  background: var(--bg);
  color: var(--fg);
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.sol-block:nth-of-type(even) { background: color-mix(in oklch, var(--fg) 3%, var(--bg)); }
.sol-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sol-block.flip .sol-copy { order: 2; }
.sol-block.flip .sol-visual { order: 1; }
.sol-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.sol-tag .sol-tag-num {
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--cyan) 14%, transparent);
}
.sol-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.sol-cs {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 30px;
}
.sol-cs-item {
  border-left: 2px solid var(--line);
  padding-left: 20px;
}
.sol-cs-item.solution { border-left-color: var(--cyan); }
.sol-cs-item.challenge { border-left-color: var(--spark-2); }
.sol-cs-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.sol-cs-item.solution .sol-cs-label { color: var(--cyan); }
.sol-cs-item.challenge .sol-cs-label { color: color-mix(in oklch, var(--spark-2) 65%, var(--fg)); }
.sol-cs-item p { font-size: 15.5px; line-height: 1.55; margin: 0; color: var(--fg); }
.sol-cs-item.challenge p { color: var(--fg); }
.sol-includes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.sol-includes .chip {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--fg) 6%, transparent);
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 7px;
}
.sol-includes .chip::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan);
}

/* solution visual card */
.sol-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(160deg, var(--deep) 0%, var(--ink) 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 40px;
}
.sol-visual-photo { position: absolute; inset: 0; }
.sol-visual-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sol-visual-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,22,36,0.35) 0%, rgba(5,22,36,0.78) 100%),
    radial-gradient(120% 80% at 80% 20%, rgba(25,190,236,0.18), transparent 60%);
  mix-blend-mode: normal;
}
.sol-visual-inner { position: relative; width: 100%; height: 100%; min-height: 340px; z-index: 1; }
.sol-metric {
  position: absolute;
  background: rgba(232, 241, 245, 0.06);
  border: 1px solid rgba(232, 241, 245, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  color: #E8F1F5;
}
.sol-metric .m-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cyan);
}
.sol-metric .m-label {
  font-size: 12px;
  color: rgba(232, 241, 245, 0.62);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .sol-block { padding: 72px 0; }
  .sol-inner { grid-template-columns: 1fr; gap: 40px; }
  .sol-block.flip .sol-copy { order: 1; }
  .sol-block.flip .sol-visual { order: 2; }
  .sol-visual { min-height: 320px; }
}

/* ===================================================================
   DETAIL PAGES (per service / per solution)
   =================================================================== */
.detail-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--deep);
  color: #E8F1F5;
  overflow: hidden;
  isolation: isolate;
}
.detail-hero-bg {
  position: absolute; inset: -16px;
  z-index: 0;
  transform: translate3d(var(--mx,0), calc(var(--my,0) + var(--sy,0)), 0) scale(1.08);
  transition: transform 0.18s cubic-bezier(0.2,0.8,0.2,1);
  will-change: transform;
}
.detail-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(3,16,26,0.95) 0%, rgba(4,18,30,0.82) 40%, rgba(5,22,36,0.55) 75%, rgba(5,22,36,0.42) 100%),
    linear-gradient(0deg, rgba(3,12,20,0.9) 0%, transparent 40%),
    radial-gradient(800px 460px at 82% 14%, rgba(25,190,236,0.16), transparent 60%);
}
.detail-hero-inner { position: relative; z-index: 4; max-width: 860px; padding-top: 140px; padding-bottom: 90px; }
.detail-crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(232,241,245,0.5);
  margin-bottom: 28px;
}
.detail-crumb a { color: rgba(232,241,245,0.66); transition: color 0.2s ease; }
.detail-crumb a:hover { color: var(--cyan); }
.detail-crumb .cur { color: var(--cyan); }
.detail-hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(232,241,245,0.78);
  margin-bottom: 22px;
}
.detail-hero-badge .svc-cat-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(25,190,236,0.16); color: var(--cyan);
}
.detail-hero h1 {
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.0;
  margin: 0 0 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #CFE9F4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.detail-hero-line {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500; letter-spacing: -0.015em;
  color: var(--spark);
  margin: 0 0 24px;
}
.detail-hero-lead {
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55;
  color: rgba(232,241,245,0.8); max-width: 620px; margin: 0 0 32px;
}
/* Fade removed by request — detail-page heroes end on a clean cut. */
.detail-hero-fade { display: none; }

/* outcomes band */
.outcomes-band { background: var(--bg); color: var(--fg); padding: 80px 0; border-bottom: 1px solid var(--line); }
.outcomes-head { margin-bottom: 40px; }
.outcomes-head h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -0.025em; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.outcome-card {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--deep) 0%, var(--ink) 100%);
  color: #E8F1F5;
  position: relative; overflow: hidden;
}
.outcome-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(320px 200px at 85% 0%, rgba(25,190,236,0.28), transparent 70%);
}
.outcome-num {
  position: relative;
  font-family: var(--font-display); font-size: 54px; font-weight: 600;
  letter-spacing: -0.03em; color: var(--cyan); line-height: 1; margin-bottom: 12px;
}
.outcome-label { position: relative; font-size: 15px; color: rgba(232,241,245,0.72); line-height: 1.45; max-width: 240px; }
@media (max-width: 800px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* overview */
.detail-overview { background: var(--bg); color: var(--fg); border-bottom: 1px solid var(--line); }
.detail-overview-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.detail-overview-copy h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 22px; }
.detail-overview-copy p { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 0; max-width: 520px; }
.detail-overview-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3.2; border: 1px solid var(--line); }
.detail-overview-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-overview-photo-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,22,36,0.05), rgba(5,22,36,0.4)); }
@media (max-width: 900px) { .detail-overview-inner { grid-template-columns: 1fr; gap: 40px; } }

/* capabilities grid */
.detail-caps { background: color-mix(in oklch, var(--fg) 3%, var(--bg)); color: var(--fg); border-bottom: 1px solid var(--line); }
.detail-caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.detail-cap-card {
  padding: 30px 28px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.detail-cap-card:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--cyan) 38%, var(--line)); }
.detail-cap-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: color-mix(in oklch, var(--cyan) 12%, transparent);
  color: var(--cyan); margin-bottom: 20px;
}
.detail-cap-card h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.detail-cap-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .detail-caps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .detail-caps-grid { grid-template-columns: 1fr; } }

/* related */
.related { background: var(--bg); color: var(--fg); border-bottom: 1px solid var(--line); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.related-card:hover { transform: translateY(-3px); border-color: color-mix(in oklch, var(--cyan) 38%, var(--line)); background: color-mix(in oklch, var(--cyan) 5%, var(--bg)); }
.related-icon {
  width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center;
  border-radius: 11px; background: color-mix(in oklch, var(--cyan) 12%, transparent); color: var(--cyan);
}
.related-body { flex: 1; }
.related-body h4 { font-size: 16px; font-weight: 600; margin: 0 0 3px; }
.related-body p { font-size: 13px; color: var(--muted); line-height: 1.4; margin: 0; }
.related-arrow {
  width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center;
  border-radius: 999px; border: 1px solid var(--line); color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.related-card:hover .related-arrow { background: var(--cyan); color: var(--deep); border-color: var(--cyan); transform: translate(2px,-2px); }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* challenge → solution band (solution detail) */
.cs-band { background: var(--bg); color: var(--fg); border-bottom: 1px solid var(--line); }
.cs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.cs-col { padding: 36px 34px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--bg); }
.cs-col.challenge {
  background: color-mix(in oklch, var(--fg) 4%, var(--bg));
  border-left: 3px solid var(--spark-2);
}
.cs-col.solution { background: linear-gradient(170deg, var(--deep) 0%, var(--ink) 100%); color: #E8F1F5; border-color: transparent; }
.cs-kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px; color: var(--muted);
}
.cs-col.solution .cs-kicker { color: var(--cyan); }
.cs-col.challenge .cs-kicker { color: color-mix(in oklch, var(--spark-2) 65%, var(--fg)); }
.cs-col p { font-size: 17px; line-height: 1.6; margin: 0; }
.cs-col.challenge p { color: var(--fg); }
.cs-arrow {
  width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center;
  border-radius: 999px; background: var(--cyan); color: var(--deep);
}
.cs-arrow svg { width: 20px; height: 20px; }
@media (max-width: 800px) {
  .cs-grid { grid-template-columns: 1fr; gap: 18px; }
  .cs-arrow { transform: rotate(90deg); margin: 0 auto; }
}

.covered-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.covered-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 500; }
@media (max-width: 560px) { .covered-list { grid-template-columns: 1fr; } }

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-story { background: var(--bg); color: var(--fg); border-bottom: 1px solid var(--line); }
.about-story-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-story-copy h2 { font-size: clamp(28px, 3.2vw, 46px); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 24px; }
.about-story-copy p { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 0 0 18px; max-width: 540px; }
.about-story-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3.4; border: 1px solid var(--line); }
.about-story-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-story-photo-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,22,36,0.05), rgba(5,22,36,0.4)); }
@media (max-width: 900px) { .about-story-inner { grid-template-columns: 1fr; gap: 40px; } }

.about-values { background: var(--ink); color: #E8F1F5; }
body.mode-ocean .about-values { background: var(--deep-2); }
.about-values .on-dark .grad { background: linear-gradient(180deg, #E8F1F5 0%, var(--cyan) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-values .on-dark-meta { color: rgba(232,241,245,0.65); }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-value-card { padding: 28px 24px; border-radius: var(--r-lg); background: rgba(232,241,245,0.04); border: 1px solid rgba(232,241,245,0.08); }
.about-value-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--cyan); margin-bottom: 30px; }
.about-value-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.about-value-card p { font-size: 14px; color: rgba(232,241,245,0.62); line-height: 1.55; margin: 0; }
@media (max-width: 1000px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .about-values-grid { grid-template-columns: 1fr; } }

.about-locations { background: var(--bg); color: var(--fg); border-bottom: 1px solid var(--line); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.location-card { border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: var(--bg); transition: transform 0.3s ease; }
.location-card:hover { transform: translateY(-4px); }
.location-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.location-photo img { width: 100%; height: 100%; object-fit: cover; }
.location-photo-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,22,36,0.1) 0%, rgba(5,22,36,0.6) 100%); }
.location-flag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(5,22,36,0.6); color: #E8F1F5; backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(232,241,245,0.15);
}
.location-body { padding: 28px 30px 32px; }
.location-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.location-body h3 { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.location-body address { font-style: normal; display: flex; flex-direction: column; gap: 4px; font-size: 15px; color: var(--muted); }
.location-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--cyan); }
.location-phone:hover { color: var(--cyan-700); }
@media (max-width: 800px) { .locations-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   GENERIC PAGE PROSE (Privacy, Terms, …)
   =================================================================== */
.page-prose { max-width: 760px; }
.page-prose h2 { font-size: 26px; margin: 44px 0 14px; line-height: 1.15; }
.page-prose h2:first-child { margin-top: 0; }
.page-prose h3 { font-size: 19px; margin: 30px 0 10px; line-height: 1.2; }
.page-prose p, .page-prose li { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.page-prose p { margin: 0 0 16px; }
.page-prose ul, .page-prose ol { margin: 0 0 16px; padding-left: 22px; }
.page-prose li { margin: 0 0 8px; }
.page-prose a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.page-prose strong { color: var(--fg); }
.page-prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }

/* ===================================================================
   CASE STUDIES PAGE
   =================================================================== */
.cs-page { background: var(--bg); color: var(--fg); }
.cs-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cs-page-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px; color: #E8F1F5; background: var(--ink);
  transition: transform 0.3s ease;
}
.cs-page-card:hover { transform: translateY(-5px); }
.cs-page-card.big { grid-column: span 2; min-height: 420px; }
.cs-page-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.cs-page-card:hover .cs-page-photo { transform: scale(1.05); }
.cs-page-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,14,22,0.45) 0%, rgba(4,14,22,0.74) 55%, rgba(3,11,18,0.94) 100%); }
.cs-page-card > * { position: relative; z-index: 2; }
.cs-page-card > .cs-page-photo, .cs-page-card > .cs-page-overlay { position: absolute; }
.cs-page-top { display: flex; justify-content: space-between; align-items: center; }
.cs-page-industry { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); }
.cs-page-num { font-family: var(--font-mono); font-size: 11px; color: rgba(232,241,245,0.6); }
.cs-page-bottom h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; max-width: 460px; text-wrap: balance; }
.cs-page-card.big .cs-page-bottom h3 { font-size: 30px; max-width: 620px; }
.cs-page-bottom p { font-size: 14px; color: rgba(232,241,245,0.74); line-height: 1.55; margin: 0 0 22px; max-width: 480px; }
.cs-page-stat { display: flex; align-items: baseline; gap: 12px; }
.cs-page-stat-num { font-family: var(--font-display); font-size: 44px; font-weight: 600; letter-spacing: -0.03em; color: var(--cyan); line-height: 1; }
.cs-page-stat-label { font-size: 13px; color: rgba(232,241,245,0.7); max-width: 200px; line-height: 1.35; }
.cs-page-arrow { position: absolute; top: 28px; right: 28px; z-index: 3; width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; background: rgba(232,241,245,0.14); backdrop-filter: blur(4px); transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.cs-page-card:hover .cs-page-arrow { background: var(--cyan); color: var(--deep); transform: translate(2px,-2px); }
@media (max-width: 800px) { .cs-page-grid { grid-template-columns: 1fr; } .cs-page-card.big { grid-column: span 1; } }

/* ===================================================================
   WHITE PAPERS PAGE
   =================================================================== */
.papers { background: var(--bg); color: var(--fg); }
.papers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.paper-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg); transition: transform 0.3s ease, border-color 0.3s ease; }
.paper-card:hover { transform: translateY(-5px); border-color: color-mix(in oklch, var(--cyan) 35%, var(--line)); }
.paper-card.featured { grid-column: span 3; flex-direction: row; }
.paper-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0; }
.paper-card.featured .paper-thumb { width: 46%; aspect-ratio: auto; }
.paper-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.paper-card:hover .paper-thumb img { transform: scale(1.05); }
.paper-thumb-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,22,36,0.1), rgba(5,22,36,0.5)); }
.paper-cat { position: absolute; top: 14px; left: 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--cyan); color: var(--deep); padding: 5px 10px; border-radius: 999px; font-weight: 500; }
.paper-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.paper-card.featured .paper-body { justify-content: center; padding: 40px; }
.paper-meta { display: flex; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.paper-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 12px; }
.paper-card.featured .paper-body h3 { font-size: 30px; }
.paper-body p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 20px; flex: 1; }
.paper-card.featured .paper-body p { font-size: 16px; max-width: 480px; }
.paper-dl { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); }
@media (max-width: 1000px) { .papers-grid { grid-template-columns: 1fr 1fr; } .paper-card.featured { grid-column: span 2; } }
@media (max-width: 700px) { .papers-grid { grid-template-columns: 1fr; } .paper-card.featured { grid-column: span 1; flex-direction: column; } .paper-card.featured .paper-thumb { width: 100%; aspect-ratio: 16/10; } }

/* ===================================================================
   NEWSROOM PAGE
   =================================================================== */
.newsroom { background: var(--bg); color: var(--fg); }
.news-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); background: var(--ink); color: #E8F1F5; }
.news-featured-photo { position: relative; min-height: 360px; }
.news-featured-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-featured-tint { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(5,22,36,0.1), rgba(5,22,36,0.5)); }
.news-featured-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.news-meta { display: flex; gap: 14px; align-items: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,241,245,0.55); margin-bottom: 18px; }
.news-cat { color: var(--deep); background: var(--cyan); padding: 5px 11px; border-radius: 999px; font-weight: 500; }
.news-featured-body h2 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.news-featured-body p { font-size: 15.5px; color: rgba(232,241,245,0.72); line-height: 1.6; margin: 0 0 24px; max-width: 460px; }
.news-readmore { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 800px) { .news-featured { grid-template-columns: 1fr; } .news-featured-photo { min-height: 240px; } .news-featured-body { padding: 32px; } }

.news-divider { display: flex; align-items: center; gap: 16px; margin: 56px 0 28px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.news-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.news-list { display: flex; flex-direction: column; }
.news-item { display: grid; grid-template-columns: 200px 1fr auto; gap: 28px; align-items: center; padding: 26px 8px; border-top: 1px solid var(--line); transition: background 0.2s ease, padding 0.2s ease; }
.news-item:hover { background: color-mix(in oklch, var(--cyan) 5%, var(--bg)); padding-left: 20px; padding-right: 20px; }
.news-item-meta { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.news-item-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 6px; }
.news-item-body p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; max-width: 560px; }
.news-item-arrow { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.news-item:hover .news-item-arrow { background: var(--cyan); color: var(--deep); border-color: var(--cyan); transform: translate(2px,-2px); }
@media (max-width: 700px) { .news-item { grid-template-columns: 1fr auto; gap: 16px; } .news-item-meta { flex-direction: row; gap: 12px; } }

/* ===================================================================
   DIGITAL PRESENCE — PORTFOLIO SLIDESHOW
   =================================================================== */
.dp-portfolio { background: var(--bg); color: var(--fg); border-bottom: 1px solid var(--line); }
.dp-slideshow {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.dp-stage { position: relative; }
.dp-browser {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: 0 40px 80px -40px rgba(5,22,36,0.6);
}
.dp-browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: color-mix(in oklch, var(--ink) 90%, #fff);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dp-browser-bar .dp-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dp-browser-bar .dp-dot:nth-child(1) { background: #FF5F57; }
.dp-browser-bar .dp-dot:nth-child(2) { background: #FEBC2E; }
.dp-browser-bar .dp-dot:nth-child(3) { background: #28C840; }
.dp-url {
  margin-left: 14px;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(232,241,245,0.6);
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 999px;
  max-width: 320px;
}
.dp-shots { position: relative; aspect-ratio: 16/10; background: var(--deep); }
.dp-shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.dp-shot.is-active { opacity: 1; transform: scale(1); }
/* Click-through overlay: the active slide links to the live site. */
.dp-shot-link { position: absolute; inset: 0; z-index: 2; display: block; }

.dp-info { padding-left: 8px; }
.dp-count {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 18px;
}
.dp-count span { color: var(--muted); font-size: 22px; }
.dp-type {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.dp-name {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.dp-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 420px;
  min-height: 100px;
}
.dp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.dp-tag {
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--fg) 6%, transparent);
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 7px;
}
.dp-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.dp-controls { display: flex; align-items: center; gap: 18px; }
.dp-arrow {
  width: 52px; height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--fg);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dp-arrow:hover { background: var(--cyan); color: var(--deep); border-color: var(--cyan); transform: translateY(-2px); }
.dp-dots { display: flex; gap: 9px; flex: 1; justify-content: center; }
.dp-dot-btn {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--fg) 18%, transparent);
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}
.dp-dot-btn.is-active { background: var(--cyan); width: 26px; }

@media (max-width: 900px) {
  .dp-slideshow { grid-template-columns: 1fr; gap: 32px; }
  .dp-info { padding-left: 0; }
  .dp-desc { min-height: 0; }
}

/* ===================================================================
   NAV: ALWAYS DARK CHROME (any theme mode)
   The nav bar, mega panels, and their text stay on the deep-ocean dark
   regardless of body mode — light text on dark, in every state.
   =================================================================== */
.nav { color: #E8F1F5; }
.nav.is-scrolled,
.nav.is-mega-open {
  background: color-mix(in oklch, var(--deep) 90%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(232, 241, 245, 0.10);
}
.nav-link { color: #E8F1F5; opacity: 0.85; }
.nav-link:hover, .nav-link.is-active { opacity: 1; background: rgba(232, 241, 245, 0.09); }
.nav-cta { background: var(--cyan); color: var(--deep); border-color: var(--cyan); }
.nav-burger { border-color: rgba(232, 241, 245, 0.22); color: #E8F1F5; }

/* Mega panels: dark glass, light text */
.mega-panel {
  background: color-mix(in oklch, var(--deep) 94%, transparent);
  border-top-color: rgba(232, 241, 245, 0.08);
  border-bottom-color: rgba(232, 241, 245, 0.12);
  color: #E8F1F5;
}
.mega-blurb,
.mega-col h5,
.mega-item-desc { color: rgba(232, 241, 245, 0.62); }
.mega-item-name { color: #E8F1F5; }
.mega-item:hover { background: rgba(25, 190, 236, 0.10); }
.mega-feature { border: 1px solid rgba(232, 241, 245, 0.10); }

/* ===================================================================
   LIGHT MODE — TEXT CONTRAST FIXES
   Brand cyan (#19BEEC) is too light for TEXT on white surfaces. On
   light-background sections, accent text shifts to a darker, readable
   cyan. Sections that stay dark in light mode (hero, why, CTA, footer,
   mega panels, drawer) are excluded so their accents keep full cyan.
   =================================================================== */
body.mode-light .eyebrow,
body.mode-light .sol-tag,
body.mode-light .dp-type,
body.mode-light .step-tag,
body.mode-light .step-orb,
body.mode-light .detail-cap-icon,
body.mode-light .related-icon,
body.mode-light .proc-strip-num,
body.mode-light .location-role,
body.mode-light .insight-meta .cat,
body.mode-light .paper-dl,
body.mode-light .news-readmore,
body.mode-light .case2-stat-num,
body.mode-light .svc-cat-icon,
body.mode-light .svc2-icon,
body.mode-light .svc-mini-icon,
body.mode-light .svc-benefit-check,
body.mode-light .mega-item-icon,
body.mode-light .sol-cs-item.solution .sol-cs-label {
  color: color-mix(in oklch, var(--cyan-700) 85%, var(--ink));
}
body.mode-light .proc-strip-num {
  border-color: color-mix(in oklch, var(--cyan-700) 45%, transparent);
}
/* dark bands keep the bright accent */
body.mode-light :is(.hero, .hero-photo, .page-hero, .detail-hero, .why, .cta, .footer, .mega-panel, .mobile-drawer, .cs-col.solution, .mega-feature) .eyebrow,
body.mode-light .mega-panel .mega-item-icon {
  color: var(--cyan);
}
