/* ============================================================
   AANN Marketing Homepage
   Marketing/cover surface — does NOT use the AANN Core scaffold
   (per CLAUDE.md §1). Built directly on design-system tokens.
   ============================================================ */
body {
  background: var(--color-neutral-950);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}
html { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; }
button { font-family: inherit; }
.hp-mobile-break,
.hp-mobile-only,
.hp-foot-mobile-extra,
.hp-mobile-menu-button {
  display: none;
}

/* ---------- Honeypot ---------- */
.hp-honeypot { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

/* ---------- Buttons ---------- */
[hidden] { display: none !important; }

.hp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 40px; padding: 0 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s var(--ease-standard),
              background .2s var(--ease-standard),
              box-shadow .2s var(--ease-standard);
}
.hp-btn--primary {
  background: var(--color-brand-300);
  color: var(--color-brand-900);
}
.hp-btn--primary:hover {
  background: var(--color-brand-200);
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}
.hp-btn--ghost {
  background: transparent; color: var(--text-secondary);
  border-color: transparent;
}
.hp-btn--ghost:hover { color: var(--color-brand-300); }
.hp-btn--lg { height: 48px; padding: 0 28px; font-size: 15px; }

/* ---------- Top Nav ---------- */
.hp-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: rgba(15, 23, 41, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
}
.hp-nav-brand {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--text-primary);
  text-decoration: none;
}
.hp-nav-links {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 5px 6px;
}
.hp-nav-links a {
  padding: 8px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--text-tertiary);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.hp-nav-links a:hover { color: var(--text-primary); }
.hp-nav-links a.is-active {
  background: rgba(164,201,255,0.10);
  color: var(--color-brand-300);
}
.hp-nav-actions { display: flex; align-items: center; gap: 12px; }
.hp-nav-burger { display: none; }

/* ---------- Hero ---------- */
.hp-hero {
  position: relative;
  padding: 96px 24px 120px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hp-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--color-brand-300);
  margin-bottom: 28px;
}
.hp-hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--text-primary);
  margin: 0 auto;
  max-width: 1100px;
}
.hp-hero-title .alt {
  color: var(--color-brand-300);
  font-weight: 700;
}
.hp-hero-lede {
  margin: 28px auto 36px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-tertiary);
}
/* Animated waveform — two SVG curves drifting horizontally */
.hp-wave {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: .55;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 35%, transparent 78%);
}
.hp-wave svg { width: 200%; height: 100%; display: block; }
.hp-wave .wave-a { animation: hp-wave-drift 22s linear infinite; }
.hp-wave .wave-b { animation: hp-wave-drift 34s linear infinite reverse; opacity:.55; }
@keyframes hp-wave-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hp-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% 30%, rgba(80,149,231,0.12), transparent 60%);
  z-index: -1;
}

/* ---------- Roles strip ---------- */
.hp-logos {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0 26px;
  overflow: hidden;
  background: var(--color-neutral-1000);
  position: relative;
}
.hp-logos-eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding: 0 24px;
}
.hp-logos-eyebrow .dot { color: var(--color-brand-300); margin: 0 6px; opacity: .8; }
.hp-logos-track {
  display: flex; gap: 56px;
  width: max-content;
  animation: hp-marquee 38s linear infinite;
  align-items: center;
}
.hp-logos-item {
  font-family: var(--font-mono);
  font-size: 16px; font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.hp-logos-item .role-num {
  font-size: 9px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .15em;
}
.hp-logos-sep {
  width: 1px; height: 16px;
  background: var(--border-subtle);
  flex: 0 0 auto;
}
@keyframes hp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Dashboard collage ---------- */
.hp-collage-head {
  text-align: center; padding: 96px 24px 8px;
  border-top: 1px solid var(--border-subtle);
  background: var(--color-neutral-950);
}
.hp-collage-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-brand-300); margin: 0 0 14px;
}
.hp-collage-h {
  font-size: clamp(28px, 3.4vw, 48px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.15;
  color: var(--text-primary); margin: 0 auto; max-width: 900px;
}
.hp-collage-h .dim { color: var(--text-muted); }
.hp-collage {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(80,149,231,0.06), transparent 70%),
    var(--color-neutral-950);
}
.hp-collage-row {
  display: flex; gap: 24px;
  width: max-content;
  padding: 14px 0;
}
.hp-collage-row--a { animation: hp-collage-a 60s linear infinite; }
.hp-collage-row--b { animation: hp-collage-b 75s linear infinite; margin-top: 18px; }
@keyframes hp-collage-a { from { transform: translateX(-4%); } to { transform: translateX(-54%); } }
@keyframes hp-collage-b { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.hp-collage-row:hover { animation-play-state: paused; }
.hp-collage::before, .hp-collage::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 200px;
  pointer-events: none; z-index: 2;
}
.hp-collage::before { left: 0; background: linear-gradient(90deg, var(--color-neutral-950) 0%, transparent 100%); }
.hp-collage::after  { right: 0; background: linear-gradient(270deg, var(--color-neutral-950) 0%, transparent 100%); }

.hp-tile {
  flex: 0 0 auto;
  width: 320px; height: 200px;
  background: var(--color-neutral-900);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.hp-tile--lg { width: 420px; height: 240px; }
.hp-tile-cap {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hp-tile-head {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.hp-tile-head em { color: var(--color-brand-300); font-style: normal; }
.hp-tile-body { flex: 1; display: flex; gap: 10px; }
.hp-tile-col {
  flex: 1;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.hp-tile-line {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.hp-tile-line--brand { background: var(--color-brand-300); opacity: .55; }
.hp-tile-stat {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: .4px;
}
.hp-tile-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: auto; }
.hp-tile-bar { flex: 1; background: var(--color-brand-300); border-radius: 2px; opacity: .7; }
.hp-tile-mod {
  flex: 1;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 10px 8px;
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.hp-tile-mod-cap {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted);
}
.hp-tile-mod-val {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 600; letter-spacing: -.01em;
  color: var(--text-primary);
  line-height: 1;
}
.hp-tile-mod-val em { color: var(--color-brand-300); font-style: normal; }
.hp-tile-mod-val em.amber { color: #E0C68A; }
.hp-tile-mod-sub {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--text-muted); letter-spacing: .3px;
}
.hp-tile-spark { height: 28px; width: 100%; margin-top: auto; }
.hp-tile-spark path { fill: none; stroke: var(--color-brand-300); stroke-width: 1.4; opacity: .9; }
.hp-tile-spark .area { fill: var(--color-brand-300); opacity: .12; stroke: none; }
.hp-tile-stack { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.hp-tile-stack-row {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 8.5px; color: var(--text-muted);
}
.hp-tile-stack-row .seg {
  flex: 1; height: 5px; border-radius: 2px;
  background: rgba(255,255,255,0.06); position: relative; overflow: hidden;
}
.hp-tile-stack-row .seg i {
  position: absolute; inset: 0; width: var(--w, 0%);
  background: var(--color-brand-300); border-radius: 2px; opacity: .8;
}
.hp-tile-stack-row .seg i.amber { background: #E0C68A; opacity: .9; }
.hp-tile-stack-row .seg i.coral { background: #E07B5A; opacity: .85; }
.hp-tile-stack-row .pct { width: 28px; text-align: right; }
.hp-tile-pulse {
  height: 50px; margin-top: auto;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-brand-300) 50%,
    transparent 100%);
  opacity: .35;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' preserveAspectRatio='none'><path d='M0,20 Q25,5 50,20 T100,20 T150,20 T200,20' fill='none' stroke='black' stroke-width='1.5'/></svg>") center/100% 100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' preserveAspectRatio='none'><path d='M0,20 Q25,5 50,20 T100,20 T150,20 T200,20' fill='none' stroke='black' stroke-width='1.5'/></svg>") center/100% 100% no-repeat;
}

/* ---------- CFO · Liquidity tile ---------- */
.hp-cfo {
  display: flex; gap: 14px; align-items: center;
  margin-top: 6px; flex: 1;
}
.hp-cfo-donut {
  width: 124px; height: 124px; flex: 0 0 124px;
  position: relative;
}
.hp-cfo-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.hp-cfo-donut .hp-cfo-track { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 12; }
.hp-cfo-donut .hp-cfo-seg { fill: none; stroke-width: 12; stroke-linecap: butt; }
.hp-cfo-donut .hp-cfo-seg-1 { stroke: var(--color-brand-300); }
.hp-cfo-donut .hp-cfo-seg-2 { stroke: var(--color-brand-200); opacity: .85; }
.hp-cfo-donut .hp-cfo-seg-3 { stroke: rgba(255,255,255,.32); }
.hp-cfo-donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.hp-cfo-donut-val {
  font-size: 18px; font-weight: 700; letter-spacing: -.01em;
  color: var(--text-primary); line-height: 1;
}
.hp-cfo-donut-cap {
  font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: .9px; color: var(--text-muted);
  margin-top: 4px; text-transform: uppercase;
}
.hp-cfo-right {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.hp-cfo-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .5px;
}
.hp-cfo-row-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.hp-cfo-row-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hp-cfo-row-val {
  color: var(--text-primary); font-weight: 600;
  font-size: 10px;
}
.hp-cfo-runway {
  margin-top: 4px;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono);
}
.hp-cfo-runway-track {
  position: relative; height: 6px;
  background: linear-gradient(90deg,
    var(--color-brand-300) 0%,
    var(--color-brand-300) 65%,
    rgba(80,149,231,.4) 80%,
    rgba(80,149,231,0) 100%);
  border-radius: 3px;
  overflow: visible;
}
.hp-cfo-runway-now {
  position: absolute; left: 0; top: -3px; bottom: -3px;
  width: 2px; background: var(--text-primary); border-radius: 1px;
}
.hp-cfo-runway-end {
  position: absolute; left: 80%; top: -4px;
  width: 8px; height: 14px;
  background: rgba(255,255,255,.18);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.hp-cfo-runway-pulse {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--color-brand-200);
  border-radius: 3px;
  animation: hp-cfo-pulse 4s ease-in-out infinite;
}
@keyframes hp-cfo-pulse {
  0%,100% { left: 0%; opacity: .9; }
  50% { left: 62%; opacity: .5; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-cfo-runway-pulse { animation: none; }
}
.hp-cfo-runway-axis {
  display: flex; justify-content: space-between;
  font-size: 8px; color: var(--text-muted);
  letter-spacing: .8px;
}

/* ---------- CEO · Strategic radar tile ---------- */
.hp-ceo {
  display: flex; gap: 14px; align-items: center;
  margin-top: 6px; flex: 1;
}
.hp-ceo-radar {
  width: 140px; height: 140px; flex: 0 0 140px;
  position: relative;
}
.hp-ceo-radar svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hp-ceo-grid { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.hp-ceo-axis { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.hp-ceo-last {
  fill: none; stroke: rgba(255,255,255,.18);
  stroke-width: 1; stroke-dasharray: 2 3;
}
.hp-ceo-now {
  fill: var(--color-brand-300); fill-opacity: .18;
  stroke: var(--color-brand-300); stroke-width: 1.4;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(80,149,231,.35));
}
.hp-ceo-vert { fill: var(--color-brand-200); }
.hp-ceo-sweep { transform-origin: 70px 70px; animation: hpm-radar-sweep 5s linear infinite; }
@keyframes hpm-radar-sweep { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hp-ceo-sweep { animation: none; }
}
.hp-ceo-list {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .5px; text-transform: uppercase;
}
.hp-ceo-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.hp-ceo-row:last-child { border-bottom: 0; }
.hp-ceo-row-label { color: var(--text-secondary); }
.hp-ceo-row-spark {
  width: 36px; height: 10px; opacity: .8;
}
.hp-ceo-row-spark path { fill: none; stroke: var(--color-brand-300); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.hp-ceo-row-spark.flat path { stroke: rgba(255,255,255,.4); }
.hp-ceo-row-delta {
  font-size: 9.5px; font-weight: 600;
  color: var(--color-brand-200);
  min-width: 32px; text-align: right;
}
.hp-ceo-row-delta.flat { color: var(--text-muted); }

/* ---------- "A new layer of intelligence" ---------- */
.hp-newlayer {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(80,149,231,0.08), transparent 70%),
    var(--color-neutral-1000);
  border-top: 1px solid var(--border-subtle);
}
.hp-newlayer-title {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--text-primary);
  margin: 0 auto;
  max-width: 1000px;
}
.hp-newlayer-title .dim { color: var(--text-muted); }
.hp-newlayer-lede {
  margin: 24px auto 64px;
  max-width: 540px;
  font-size: 15px; line-height: 1.65;
  color: var(--text-tertiary);
}
.hp-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.hp-col {
  position: relative;
  text-align: left;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(80,149,231,0.10), transparent 60%),
    var(--color-neutral-900);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s var(--ease-standard),
              transform .25s var(--ease-standard),
              background .25s var(--ease-standard);
}
.hp-col:hover, .hp-col.is-active {
  border-color: rgba(164,201,255,0.30);
  transform: translateY(-3px);
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(80,149,231,0.18), transparent 60%),
    var(--color-neutral-900);
}
.hp-col-illo {
  height: 96px;
  margin-bottom: 24px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hp-col-title {
  font-family: var(--font-sans);
  font-size: 22px; font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.hp-col-copy {
  font-size: 13px; line-height: 1.7;
  color: var(--text-tertiary);
  margin: 0 0 28px;
}
.hp-col-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-brand-300);
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  transition: color .2s, gap .2s;
}
.hp-col-cta::after {
  content: "→";
  transition: transform .25s var(--ease-standard);
  display: inline-block;
}
.hp-col:hover .hp-col-cta::after, .hp-col.is-active .hp-col-cta::after {
  transform: translateX(4px);
}

/* --- Illustration animations --- */

.illo-net { width: 100%; height: 100%; overflow: visible; }
.illo-net .orbit-track {
  fill: none;
  stroke: var(--color-brand-500);
  stroke-width: 0.5;
  opacity: .25;
  stroke-dasharray: 2 3;
}
.illo-net .ring {
  transform-origin: 100px 48px;
  animation: illo-net-spin 28s linear infinite;
}
.illo-net .ring--inner {
  animation: illo-net-spin 16s linear infinite reverse;
}
@keyframes illo-net-spin { to { transform: rotate(360deg); } }
.hp-col:hover .illo-net .ring,
.hp-col.is-active .illo-net .ring { animation-duration: 11s; }
.hp-col:hover .illo-net .ring--inner,
.hp-col.is-active .illo-net .ring--inner { animation-duration: 6s; }

.illo-net .strut {
  stroke: var(--color-brand-500);
  stroke-width: 0.7;
  fill: none;
  opacity: .25;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset .7s var(--ease-standard), opacity .3s;
}
.hp-col:hover .illo-net .strut,
.hp-col.is-active .illo-net .strut { stroke-dashoffset: 0; opacity: .6; }
.illo-net .strut--inner { stroke: var(--color-brand-300); opacity: .35; }
.hp-col:hover .illo-net .strut--inner,
.hp-col.is-active .illo-net .strut--inner { opacity: .8; }

.illo-net .core-link {
  stroke: var(--color-brand-300);
  stroke-width: 0.6;
  fill: none;
  opacity: .25;
  transition: opacity .3s;
}
.hp-col:hover .illo-net .core-link,
.hp-col.is-active .illo-net .core-link { opacity: .85; }

.illo-net .satellite {
  fill: var(--color-brand-300);
  transform-origin: center;
  transform-box: fill-box;
}
.illo-net .satellite--mini {
  fill: var(--color-brand-200);
  opacity: .8;
}
.illo-net .core {
  fill: var(--color-brand-300);
  transition: fill .5s var(--ease-standard), filter .5s var(--ease-standard);
  transform-origin: center;
  transform-box: fill-box;
  filter: drop-shadow(0 0 2px rgba(164,201,255,0.6));
}
.illo-net .core-bright {
  fill: #fff;
  opacity: .9;
  transition: fill .5s var(--ease-standard);
}
.hp-col:hover .illo-net .core,
.hp-col.is-active .illo-net .core {
  animation: illo-core-pop 1.8s var(--ease-standard) infinite;
  fill: #E0C68A;
  filter: drop-shadow(0 0 3px rgba(224,198,138,0.4));
}
.hp-col:hover .illo-net .core-bright,
.hp-col.is-active .illo-net .core-bright { fill: #F5E6BE; }
.hp-col:hover .illo-net .core:nth-of-type(2) { animation-delay: .12s; }
.hp-col:hover .illo-net .core:nth-of-type(3) { animation-delay: .24s; }
.hp-col:hover .illo-net .core:nth-of-type(4) { animation-delay: .36s; }
.hp-col:hover .illo-net .core:nth-of-type(5) { animation-delay: .48s; }
.hp-col:hover .illo-net .core:nth-of-type(6) { animation-delay: .60s; }
.hp-col:hover .illo-net .core:nth-of-type(7) { animation-delay: .72s; }
.hp-col:hover .illo-net .core:nth-of-type(8) { animation-delay: .84s; }
.hp-col:hover .illo-net .core:nth-of-type(9) { animation-delay: .96s; }
@keyframes illo-core-pop {
  0%, 100% { r: 1.4; opacity: .65; }
  50%      { r: 2.4; opacity: 1;   }
}
.hp-col:hover .illo-net .satellite,
.hp-col.is-active .illo-net .satellite {
  animation: illo-sat-pulse 2.6s var(--ease-standard) infinite;
}
.illo-net .satellite:nth-of-type(2) { animation-delay: .15s; }
.illo-net .satellite:nth-of-type(3) { animation-delay: .30s; }
.illo-net .satellite:nth-of-type(4) { animation-delay: .45s; }
.illo-net .satellite:nth-of-type(5) { animation-delay: .60s; }
.illo-net .satellite:nth-of-type(6) { animation-delay: .75s; }
.illo-net .satellite:nth-of-type(7) { animation-delay: .90s; }
.illo-net .satellite:nth-of-type(8) { animation-delay: 1.05s; }
@keyframes illo-sat-pulse {
  0%, 100% { opacity: .55; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.2);  }
}
.illo-net .pulse-dot {
  fill: var(--color-brand-200);
  filter: drop-shadow(0 0 4px var(--color-brand-300));
  opacity: 0;
}
.hp-col:hover .illo-net .pulse-dot,
.hp-col.is-active .illo-net .pulse-dot { opacity: 1; }

.illo-dock {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.illo-dock-row {
  display: flex; align-items: center; gap: 14px;
}
.illo-dock-bars {
  display: flex; align-items: center; gap: 5px;
  pointer-events: none;
}
.illo-dock-bars span {
  width: 3px; height: 3px;
  background: var(--color-error-300);
  border-radius: 2px;
  transition: height 320ms var(--ease-standard),
              background 320ms var(--ease-standard);
  transform-origin: center;
}
.hp-col:hover .illo-dock-bars span,
.hp-col.is-active .illo-dock-bars span { background: var(--color-success-300); }
.hp-col:hover .illo-dock-bars span:nth-child(1),
.hp-col.is-active .illo-dock-bars span:nth-child(1) { height: 8px;  }
.hp-col:hover .illo-dock-bars.left  span:nth-child(2),
.hp-col.is-active .illo-dock-bars.left  span:nth-child(2) { height: 18px; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(3),
.hp-col.is-active .illo-dock-bars.left  span:nth-child(3) { height: 24px; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(4),
.hp-col.is-active .illo-dock-bars.left  span:nth-child(4) { height: 16px; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(5),
.hp-col.is-active .illo-dock-bars.left  span:nth-child(5) { height: 12px; }
.hp-col:hover .illo-dock-bars.right span:nth-child(2),
.hp-col.is-active .illo-dock-bars.right span:nth-child(2) { height: 16px; }
.hp-col:hover .illo-dock-bars.right span:nth-child(3),
.hp-col.is-active .illo-dock-bars.right span:nth-child(3) { height: 24px; }
.hp-col:hover .illo-dock-bars.right span:nth-child(4),
.hp-col.is-active .illo-dock-bars.right span:nth-child(4) { height: 18px; }
.hp-col:hover .illo-dock-bars.right span:nth-child(5),
.hp-col.is-active .illo-dock-bars.right span:nth-child(5) { height: 12px; }
@keyframes illo-dock-bar {
  0%   { transform: scaleY(0.45); }
  100% { transform: scaleY(1);    }
}
.hp-col:hover .illo-dock-bars span,
.hp-col.is-active .illo-dock-bars span {
  animation: illo-dock-bar 1.1s ease-in-out infinite alternate;
}
.hp-col:hover .illo-dock-bars.left  span:nth-child(1) { animation-delay: 400ms; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(2) { animation-delay: 320ms; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(3) { animation-delay: 240ms; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(4) { animation-delay: 160ms; }
.hp-col:hover .illo-dock-bars.left  span:nth-child(5) { animation-delay: 80ms;  }
.hp-col:hover .illo-dock-bars.right span:nth-child(1) { animation-delay: 80ms;  }
.hp-col:hover .illo-dock-bars.right span:nth-child(2) { animation-delay: 160ms; }
.hp-col:hover .illo-dock-bars.right span:nth-child(3) { animation-delay: 240ms; }
.hp-col:hover .illo-dock-bars.right span:nth-child(4) { animation-delay: 320ms; }
.hp-col:hover .illo-dock-bars.right span:nth-child(5) { animation-delay: 400ms; }
.illo-dock-mic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(247, 130, 130, 0.08);
  border: 1.5px solid var(--color-error-300);
  box-shadow: 0 0 0 rgba(125, 222, 156, 0);
  color: var(--color-error-300);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background 320ms var(--ease-standard),
              border-color 320ms var(--ease-standard),
              color 320ms var(--ease-standard),
              box-shadow 320ms var(--ease-standard);
}
.illo-dock-mic-slash {
  position: absolute;
  width: 28px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(-45deg) scaleX(1);
  transform-origin: center;
  transition: transform 320ms var(--ease-standard),
              background 320ms var(--ease-standard);
  pointer-events: none;
}
.hp-col:hover .illo-dock-mic,
.hp-col.is-active .illo-dock-mic {
  background: rgba(125, 222, 156, 0.10);
  border-color: var(--color-success-300);
  color: var(--color-success-300);
  box-shadow: 0 0 22px rgba(125, 222, 156, 0.22);
}
.hp-col:hover .illo-dock-mic-slash,
.hp-col.is-active .illo-dock-mic-slash { transform: rotate(-45deg) scaleX(0); }

.illo-org { width: 100%; height: 100%; overflow: visible; }
.illo-org .branch {
  stroke: var(--color-brand-500);
  stroke-width: 1;
  fill: none;
  opacity: .35;
}
.illo-org .pill {
  fill: var(--color-neutral-1000);
  stroke: var(--color-brand-500);
  stroke-width: 1;
  opacity: .85;
  transition: stroke .35s, opacity .35s;
}
.illo-org .pill-label {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: .06em;
  fill: var(--text-secondary);
  text-anchor: middle;
  dominant-baseline: middle;
  transition: fill .35s;
}
.illo-org .root-pill {
  fill: var(--color-neutral-1000);
  stroke: var(--color-brand-300);
  stroke-width: 1.4;
}
.illo-org .root-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .14em;
  fill: var(--color-brand-300);
  text-anchor: middle;
  dominant-baseline: middle;
}
.hp-col:hover .illo-org .root-pill,
.hp-col.is-active .illo-org .root-pill {
  animation: illo-root-pulse 1.8s var(--ease-standard) infinite;
}
@keyframes illo-root-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50%      { filter: drop-shadow(0 0 6px var(--color-brand-300)); }
}
.illo-org .branch-color {
  stroke: var(--c, var(--color-brand-300));
  stroke-width: 1.6;
  stroke-linecap: round;
  fill: none;
  pathLength: 100;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .55s var(--ease-standard);
  filter: drop-shadow(0 0 4px var(--c, var(--color-brand-300)));
}
.hp-col:hover .illo-org .branch-color,
.hp-col.is-active .illo-org .branch-color { stroke-dashoffset: 0; }
.hp-col:hover .illo-org .branch-color:nth-of-type(2) { transition-delay: .06s; }
.hp-col:hover .illo-org .branch-color:nth-of-type(3) { transition-delay: .12s; }
.hp-col:hover .illo-org .branch-color:nth-of-type(4) { transition-delay: .18s; }
.hp-col:hover .illo-org .branch-color:nth-of-type(5) { transition-delay: .24s; }
.illo-org .role { transition: opacity .35s; }
.hp-col:hover .illo-org .role .pill,
.hp-col.is-active .illo-org .role .pill { stroke: var(--c); opacity: 1; }
.hp-col:hover .illo-org .role .pill-label,
.hp-col.is-active .illo-org .role .pill-label { fill: var(--c); }
.illo-org .pill-glow {
  fill: var(--c);
  opacity: 0;
  transition: opacity .4s;
}
.hp-col:hover .illo-org .role .pill-glow,
.hp-col.is-active .illo-org .role .pill-glow { opacity: .14; }
.hp-col:hover .illo-org .role:nth-of-type(2) .pill,
.hp-col:hover .illo-org .role:nth-of-type(2) .pill-label,
.hp-col:hover .illo-org .role:nth-of-type(2) .pill-glow { transition-delay: .06s; }
.hp-col:hover .illo-org .role:nth-of-type(3) .pill,
.hp-col:hover .illo-org .role:nth-of-type(3) .pill-label,
.hp-col:hover .illo-org .role:nth-of-type(3) .pill-glow { transition-delay: .12s; }
.hp-col:hover .illo-org .role:nth-of-type(4) .pill,
.hp-col:hover .illo-org .role:nth-of-type(4) .pill-label,
.hp-col:hover .illo-org .role:nth-of-type(4) .pill-glow { transition-delay: .18s; }
.hp-col:hover .illo-org .role:nth-of-type(5) .pill,
.hp-col:hover .illo-org .role:nth-of-type(5) .pill-label,
.hp-col:hover .illo-org .role:nth-of-type(5) .pill-glow { transition-delay: .24s; }

/* ---------- Big CTA card ---------- */
.hp-bigcta-wrap { padding: 0 24px 96px; background: var(--color-neutral-1000); }
.hp-bigcta {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  background: var(--color-neutral-900);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}
.hp-bigcta::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brand-300), transparent);
  opacity: .5;
}
.hp-bigcta-left { padding: 64px 56px; }
.hp-bigcta-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--color-brand-300);
  margin: 0 0 16px; display: inline-flex; align-items: center; gap: 8px;
}
.hp-bigcta-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--color-brand-300); }
.hp-bigcta-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin: 0 0 20px; max-width: 560px;
}
.hp-bigcta-p {
  font-size: 15px; line-height: 1.65;
  color: var(--text-tertiary);
  margin: 0 0 14px; max-width: 540px;
}
.hp-bigcta-actions { margin-top: 28px; }
.hp-bigcta-right {
  padding: 56px 48px;
  background:
    radial-gradient(ellipse 400px 320px at 50% 50%, rgba(80,149,231,0.18), transparent 70%),
    var(--color-neutral-1000);
  border-left: 1px solid var(--border-subtle);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px; text-align: center;
}
.hp-coop-stack { display: flex; align-items: center; gap: 16px; }
.hp-coop-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--color-brand-200), var(--color-brand-300) 50%, var(--color-brand-400));
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700;
  color: var(--color-brand-900); font-size: 14px;
  box-shadow: 0 0 24px rgba(80,149,231,.35), 0 0 0 1px rgba(255,255,255,.05);
}
.hp-coop-meta { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.hp-coop-name { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.hp-coop-role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.hp-id-disc {
  width: 200px; height: 200px; border-radius: 50%;
  position: relative; margin: 12px 0 4px;
  background: radial-gradient(circle at 50% 45%,
    rgba(122,184,255,0.55) 0%,
    rgba(122,184,255,0.18) 38%,
    rgba(122,184,255,0.04) 70%,
    transparent 100%);
  box-shadow: 0 0 80px rgba(122,184,255,0.25);
  animation: hp-id-breathe 4.2s ease-in-out infinite;
}
.hp-id-disc::before {
  content: ""; position: absolute; inset: 26%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(122,184,255,0.6) 60%, transparent 100%);
  animation: hp-id-pulse 2.4s ease-in-out infinite;
}
.hp-id-disc::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(122,184,255,0.35);
  animation: hp-id-ring 2.4s ease-out infinite;
}
@keyframes hp-id-breathe { 0%,100%{transform:scale(.96);opacity:.85} 50%{transform:scale(1.04);opacity:1} }
@keyframes hp-id-pulse   { 0%,100%{opacity:.65} 50%{opacity:1} }
@keyframes hp-id-ring    { 0%{transform:scale(.85);opacity:.45} 70%{transform:scale(1.12);opacity:0} 100%{transform:scale(1.12);opacity:0} }
.hp-bigcta-cta-row { display: flex; width: 100%; }
.hp-bigcta-cta-row .hp-btn { width: 100%; justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .hp-id-disc, .hp-id-disc::before, .hp-id-disc::after { animation: none !important; }
}

/* ---------- Contact ---------- */
.hp-contact {
  background: var(--color-neutral-1000);
  padding: 96px 56px 64px;
  border-top: 1px solid var(--border-subtle);
}
.hp-contact-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.hp-contact-title .dim { color: var(--text-muted); }
.hp-field-label {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: 8px;
}
.hp-form {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 48px;
}
.hp-field { display: flex; flex-direction: column; gap: 4px; }
.hp-field--full { grid-column: 1 / -1; }
.hp-field input, .hp-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.hp-field textarea { min-height: 60px; }
.hp-field input::placeholder, .hp-field textarea::placeholder { color: var(--text-muted); }
.hp-field input:focus, .hp-field textarea:focus { border-color: var(--color-brand-300); }
.hp-form-action {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.hp-form-action .hp-form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .6px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hp-form-action .hp-btn { height: 38px; padding: 0 20px; font-size: 13px; }
.hp-form-action .hp-btn svg { transition: transform .25s var(--ease-standard); }
.hp-form-action .hp-btn:hover svg { transform: translateX(3px); }
@media (max-width: 720px) {
  .hp-form-action { flex-direction: column; align-items: stretch; }
  .hp-form-action .hp-btn { width: 100%; }
}

/* ---------- Footer ---------- */
.hp-foot {
  background: var(--color-neutral-1000);
  border-top: 1px solid var(--border-subtle);
  padding: 32px 56px 28px;
}
.hp-foot-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.hp-foot-brand { font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--text-primary); }
.hp-foot-links { display: flex; gap: 36px; }
.hp-foot-links a { color: var(--text-tertiary); font-size: 13px; text-decoration: none; }
.hp-foot-links a:hover { color: var(--text-primary); }
.hp-foot-social { display: flex; gap: 14px; }
.hp-foot-social a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--text-tertiary);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.hp-foot-social a:hover { color: var(--color-brand-300); background: rgba(164,201,255,0.08); }
.hp-foot-copy {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hp-nav { padding: 14px 16px; gap: 12px; }
  .hp-nav-links { display: none; }
  .hp-nav.is-open .hp-nav-links,
  body.hp-menu-open .hp-nav .hp-nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: rgba(15, 23, 41, 0.96);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.34);
  }
  .hp-nav.is-open .hp-nav-links a,
  body.hp-menu-open .hp-nav .hp-nav-links a { padding: 12px 14px; font-size: 14px; }
  .hp-nav-actions { gap: 8px; margin-left: auto; flex-shrink: 0; }
  .hp-nav-actions .hp-btn--primary { height: 40px; padding: 0 16px; white-space: nowrap; }
  .hp-nav-burger {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; flex: 0 0 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
  }
  .hp-nav-actions .hp-btn--ghost { display: none; }
  .hp-hero { padding: 56px 20px 80px; }
  .hp-cols { grid-template-columns: 1fr; }
  .hp-form { grid-template-columns: 1fr; gap: 24px; }
  .hp-bigcta { grid-template-columns: 1fr; padding: 0; }
  .hp-bigcta-left { padding: 48px 36px; }
  .hp-bigcta-right { border-left: 0; border-top: 1px solid var(--border-subtle); padding: 44px 36px; }
  .hp-contact { padding: 64px 20px; }
  .hp-foot { padding: 24px 20px; }
  .hp-foot-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hp-foot-links { flex-wrap: wrap; gap: 16px 24px; }
  .hp-newlayer { padding: 80px 20px; }
  .hp-bigcta-title br { display: none; }
}

@media (max-width: 720px) {
  .hp-btn { min-height: 44px; }
  .hp-nav-brand { font-size: 22px; }
  .hp-nav-actions .hp-btn--primary { height: 42px; padding: 0 15px; font-size: 13px; }
  .hp-nav-actions .hp-btn--primary { display: none; }
  .hp-nav { width: 100vw; max-width: 100vw; left: 0; right: 0; }
  .hp-nav-burger { display: none !important; }
  .hp-mobile-menu-button { display: none !important; }
  .hp-nav-links { display: none !important; }
  .hp-hero { padding: 56px 20px 76px; min-height: auto; }
  .hp-hero-eyebrow { font-size: 10px; letter-spacing: 1.4px; margin-bottom: 28px; }
  .hp-mobile-break { display: inline; }
  .hp-hero-title { font-size: 40px; line-height: 1.05; letter-spacing: 0; max-width: 350px; text-wrap: balance; }
  .hp-hero-lede { max-width: min(30ch, calc(100vw - 56px)); margin: 24px auto 34px; font-size: 15px; line-height: 1.62; }
  .hp-logos { padding: 22px 0 24px; }
  .hp-logos-eyebrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 10px; max-width: 330px; margin: 0 auto 14px; font-size: 11px; font-weight: 600; line-height: 1.7; color: var(--color-brand-300); }
  .hp-logos-eyebrow .dot { margin: 0; color: var(--text-muted); }
  .hp-logos-track { gap: 34px; animation-duration: 44s; }
  .hp-collage-head { padding: 72px 20px 4px; }
  .hp-collage-eyebrow { font-size: 12px; margin-bottom: 16px; }
  .hp-collage-h { font-size: 32px; line-height: 1.16; letter-spacing: 0; max-width: 340px; text-wrap: balance; }
  .hp-collage { display: flex; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding: 20px; padding: 32px 20px 56px; -webkit-overflow-scrolling: touch; }
  .hp-collage::before, .hp-collage::after { display: none; }
  .hp-collage-row { display: contents; width: auto; padding: 0; animation: none !important; }
  .hp-collage-row--a .hp-tile:not(:nth-child(5)) { display: none; }
  .hp-collage-row--b .hp-tile { display: none; }
  .hp-collage-row--b .hp-tile:nth-child(1),
  .hp-collage-row--b .hp-tile:nth-child(2),
  .hp-collage-row--b .hp-tile:nth-child(3),
  .hp-collage-row--b .hp-tile:nth-child(6) { display: flex; }
  .hp-tile, .hp-tile--lg { width: min(340px, calc(100vw - 48px)); min-width: min(340px, calc(100vw - 48px)); height: auto; min-height: 380px; padding: 20px; border-radius: 18px; scroll-snap-align: center; scroll-snap-stop: always; }
  .hp-tile--cfo { order: 1; }
  .hp-tile--cro { order: 2; }
  .hp-tile--cmo { order: 3; }
  .hp-tile--ceo { order: 4; }
  .hp-tile--caio { order: 5; }
  .hp-tile-cap { font-size: 10px; }
  .hp-tile-head { font-size: 20px; line-height: 1.2; }
  .hp-tile-bars { height: 178px; }
  .hp-tile--cmo > .hp-tile-bars, .hp-tile--cro > .hp-tile-bars { display: none; }
  .hp-mobile-only { display: block; }
  .hp-mobile-cac { width: 100%; height: 190px; margin-top: auto; }
  .hp-mobile-cac-grid { stroke: rgba(255,255,255,0.07); stroke-width: 1; }
  .hp-mobile-cac-line { fill: none; stroke: var(--color-brand-300); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
  .hp-mobile-cac-area { fill: rgba(80,149,231,0.13); }
  .hp-mobile-pipeline { display: flex; flex-direction: column; gap: 18px; margin-top: auto; padding-top: 28px; }
  .hp-mobile-pipeline-row { display: grid; grid-template-columns: 76px 1fr 48px; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; }
  .hp-mobile-pipeline-row i { display: block; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--color-brand-300), var(--color-success-300)); width: var(--w); }
  .hp-mobile-pipeline-row b { color: var(--text-primary); font-weight: 600; text-align: right; }
  .hp-cfo, .hp-ceo { flex-direction: column; align-items: stretch; gap: 18px; }
  .hp-cfo-donut, .hp-ceo-radar { align-self: center; }
  .hp-tile--caio .hp-tile-body { flex-direction: column; }
  .hp-tile-mod { min-height: 112px; }
  .hp-newlayer { padding: 72px 20px; }
  .hp-newlayer-title { font-size: 36px; letter-spacing: 0; text-wrap: balance; }
  .hp-newlayer-lede { max-width: min(30ch, calc(100vw - 56px)); margin: 20px auto 36px; font-size: 15px; }
  .hp-cols { display: flex; flex-direction: column; gap: 12px; }
  .hp-col { padding: 20px; border-radius: 18px; transform: none !important; max-width: calc(100vw - 40px); }
  .hp-col-title { position: relative; margin: 0; padding-right: 32px; font-size: 20px; }
  .hp-col-title::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--color-brand-300); font-family: var(--font-mono); font-weight: 600; }
  .hp-col.is-active .hp-col-title::after { content: "-"; }
  .hp-col-illo, .hp-col-copy, .hp-col-cta { display: none; }
  .hp-col.is-active .hp-col-illo { display: flex; height: 92px; margin: 2px 0 18px; }
  .hp-col.is-active .hp-col-copy { display: block; margin: 16px 0 22px; font-size: 14px; }
  .hp-col.is-active .hp-col-cta { display: inline-flex; }
  .hp-bigcta-wrap { padding: 0 20px 72px; }
  .hp-bigcta { border-radius: 30px; max-width: calc(100vw - 40px); }
  .hp-bigcta-left, .hp-bigcta-right { padding: 36px 24px; }
  .hp-bigcta-title { font-size: 32px; line-height: 1.12; letter-spacing: 0; }
  .hp-bigcta-p { font-size: 15px; max-width: min(30ch, calc(100vw - 88px)); }
  .hp-bigcta-actions .hp-btn { width: 100%; }
  .hp-coop-stack { align-self: stretch; justify-content: center; }
  .hp-id-disc { width: 160px; height: 160px; }
  .hp-contact { padding: 68px 20px 56px; }
  .hp-contact-title { font-size: 30px; letter-spacing: 0; }
  .hp-form { margin-top: 36px; gap: 22px; }
  .hp-field input, .hp-field textarea { min-height: 44px; font-size: 15px; }
  .hp-form-action { margin-top: 18px; }
  .hp-form-action .hp-btn { height: 48px; font-size: 14px; }
  .hp-foot { padding: 32px 20px 30px; }
  .hp-foot-links { width: 100%; flex-direction: column; gap: 12px; }
  .hp-foot-links a { font-size: 14px; }
  .hp-foot-mobile-extra { display: inline-flex; }
  .hp-foot-copy { text-align: left; line-height: 1.7; }
}

@media (max-width: 480px) {
  .hp-mobile-menu-button { right: auto; left: min(330px, calc(100vw - 60px)); }
}

@media (prefers-reduced-motion: reduce) {
  .hp-wave .wave-a, .hp-wave .wave-b,
  .hp-collage-row, .hp-logos-track,
  .illo-net .node, .illo-wave .bar, .illo-org .root { animation: none !important; }
}
