/* ═══════════════════════════════════════════════
   NIUNEX — styles.css
   Igloo.inc inspired split-hero + cinematic sections
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #080809;
  --white:  #ffffff;
  --off:    rgba(255,255,255,.52);
  --dim:    rgba(255,255,255,.26);
  --border: rgba(255,255,255,.07);
  --bh:     rgba(255,255,255,.12);
  --blue:   #2563eb;
  --blue-l: #60a5fa;
  --grad:   linear-gradient(125deg,#fff 0%,#a8c8ff 45%,#2563eb 100%);
  --nav-h:  68px;
  --pad:    88px;
  --max:    1220px;
  --r:      12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar          { width: 3px; }
::-webkit-scrollbar-track    { background: var(--bg); }
::-webkit-scrollbar-thumb    { background: rgba(255,255,255,.1); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 56px; }

/* ─── Gradient text ──────────────────────────── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ─── Blink dot ──────────────────────────────── */
.blink-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue); flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;box-shadow:0 0 8px var(--blue)} 50%{opacity:.3;box-shadow:none} }

/* ─── Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ─── Scroll progress ────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--blue), var(--blue-l));
  box-shadow: 0 0 10px rgba(37,99,235,.5);
}

/* ─── Nav ────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: var(--nav-h);
}
#nav.scrolled {
  background: rgba(8,8,9,.9);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 56px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.logo-img  { height: 72px; max-width: 270px; width: auto; object-fit: contain; }
.logo-fallback { font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: #fff; }

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--off); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 9px 22px; border: 1px solid var(--bh); border-radius: 100px;
  color: var(--white) !important; display: flex; align-items: center; gap: 6px;
  transition: background .2s, border-color .2s !important;
}
.nav-cta:hover { background: rgba(255,255,255,.06) !important; }
.nav-arr { font-size: 12px; }

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:901; }
.hamburger span { display:block; width:22px; height:1.5px; background:#fff; transition:transform .3s; }
.hamburger.open span:first-child { transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:last-child  { transform:translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position:fixed; inset:0; z-index:899;
  background:rgba(8,8,9,.97); backdrop-filter:blur(28px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .35s;
}
.mobile-menu.open { opacity:1; pointer-events:all; }
.mobile-menu ul { list-style:none; text-align:center; }
.mobile-menu li { margin:20px 0; }
.mm-link { font-size:clamp(28px,7vw,46px); font-weight:800; color:#fff; text-decoration:none; transition:color .2s; }
.mm-link:hover { color:var(--blue-l); }

/* ─── Buttons ────────────────────────────────── */
.btn-arrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  transition: gap .3s ease;
}
.btn-arrow:hover { gap: 20px; }
.btn-arr-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--bh); border-radius: 50%;
  font-size: 14px; transition: background .2s, border-color .2s;
}
.btn-arrow:hover .btn-arr-icon { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

.btn-ghost {
  display:inline-flex; align-items:center; gap:8px; padding:11px 24px;
  font-size:13px; font-weight:500; color:var(--off); text-decoration:none;
  border:1px solid var(--border); border-radius:100px;
  transition:color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover { color:var(--white); border-color:var(--bh); background:rgba(255,255,255,.04); }

/* ═══════════════════════════════════════════
   HERO — Igloo-style split layout
═══════════════════════════════════════════ */
#hero-zone { height: 200vh; position: relative; }

.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}

#webgl {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--bg);
  transition: opacity .7s ease;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 8; pointer-events: none;
  background: var(--bg); opacity: 0;
}

/* LEFT: brand title */
.hero-content {
  position: absolute; z-index: 10;
  left: 80px; top: 50%; transform: translateY(-50%);
  max-width: 46%;
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s .3s cubic-bezier(.16,1,.3,1),
              transform .9s .3s cubic-bezier(.16,1,.3,1);
}
.hero-eyebrow.in { opacity: 1; transform: none; }

.eyebrow-company {
  display: block;
  background: linear-gradient(145deg,
    #c0c8dc 0%,
    #eaedf8 22%,
    #8890aa 44%,
    #dce0f0 66%,
    #9aa4c0 82%,
    #e4e8f4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(160,180,230,.28));
  letter-spacing: -.01em;
}

.hero-h1 {
  display: flex; flex-direction: column;
  font-size: clamp(54px, 7.5vw, 106px);
  font-weight: 900; letter-spacing: -.04em; line-height: .94;
  text-transform: uppercase; margin-bottom: 28px;
}

.hw-line {
  display: block; overflow: hidden;
  opacity: 0; transform: translateY(100%);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1);
}
.hw-line:nth-child(1) { transition-delay: .5s; }
.hw-line:nth-child(2) { transition-delay: .65s; }
.hw-line:nth-child(3) { transition-delay: .8s; }
.hw-line.in { opacity: 1; transform: none; }

.hw-dim { color: rgba(255,255,255,.32); }

.hero-desc {
  font-size: 15px; font-weight: 400; color: var(--off); line-height: 1.72;
  margin-bottom: 44px; max-width: 380px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s 1s ease, transform .7s 1s ease;
}
.hero-desc.in { opacity: 1; transform: none; }

/* CTA — igloo style: text + circle arrow */
.hero-cta {
  display: inline-flex; align-items: center; gap: 20px;
  text-decoration: none;
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s 1.15s ease, transform .7s 1.15s ease;
}
.hero-cta.in { opacity: 1; transform: none; }

.cta-text {
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white);
  transition: letter-spacing .3s;
}
.hero-cta:hover .cta-text { letter-spacing: .2em; }

.cta-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 16px; color: var(--white);
  transition: background .25s, border-color .25s, transform .25s;
}
.hero-cta:hover .cta-circle {
  background: var(--white);
  color: var(--bg);
  transform: rotate(45deg);
}

/* TOP RIGHT: badge */
.hero-badge {
  position: absolute; top: 100px; right: 80px; z-index: 10;
  opacity: 0; transform: scale(.9);
  transition: opacity .7s 1.3s ease, transform .7s 1.3s ease;
}
.hero-badge.in { opacity: 1; transform: none; }
.badge-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100px; height: 100px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  gap: 2px;
}
.badge-num {
  font-size: 38px; font-weight: 900; letter-spacing: -.04em; line-height: 1;
  color: var(--white);
}
.badge-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim); text-align: center; line-height: 1.4;
}

/* BOTTOM: scroll indicator */
.hero-bottom {
  position: absolute; bottom: 40px; left: 80px; z-index: 10;
  display: flex; align-items: center; gap: 32px;
  opacity: 0; transition: opacity .7s 1.5s ease;
}
.hero-bottom.in { opacity: 1; }

.scroll-indicator {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
}
.scroll-icon {
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 13px; display: flex; justify-content: center; padding-top: 7px;
}
.scroll-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--white);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 60%{transform:translateY(12px);opacity:.2} 100%{transform:translateY(0);opacity:1} }

.scroll-dashes { display: flex; gap: 5px; align-items: center; }
.sd { width: 24px; height: 2px; background: rgba(255,255,255,.18); border-radius: 1px; transition: background .3s; }
.sd.active { background: rgba(255,255,255,.7); width: 36px; }

/* ═══════════════════════════════════════════
   CINEMA SECTIONS
═══════════════════════════════════════════ */
.cinema-section {
  position: relative; z-index: 1;
  padding: var(--pad) 0;
}
.cinema-section + .cinema-section::before {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  margin-bottom: var(--pad);
}

/* Section eyebrow & headings */
.sec-intro { margin-bottom: 52px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 20px;
}
.sec-h2 {
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.08;
  margin-bottom: 18px;
}
.sec-desc {
  font-size: 15px; color: var(--off); line-height: 1.72; max-width: 520px;
  margin-bottom: 28px;
}

/* ─── AI cards ───────────────────────────────── */
.card-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-bottom: 1px;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.card {
  padding: 36px 30px; display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,.02);
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .3s; cursor: default;
}
.card:hover { background: rgba(255,255,255,.055); box-shadow: inset 0 0 0 1px rgba(96,165,250,.12); }
.card:nth-child(3n)      { border-right: none; }
.card:nth-last-child(-n+3) { border-bottom: none; }
.card-icon-wrap { color: rgba(96,165,250,.8); margin-bottom: 6px; }
.card-num { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.card-h3  { font-size: 15px; font-weight: 700; letter-spacing: -.015em; color: var(--white); line-height: 1.3; }
.card-p   { font-size: 13px; color: var(--off); line-height: 1.68; }

/* ─── Horizontal scroll containers ──────────── */
.hscroll-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--pad));
  padding: 0 var(--pad);
  overflow: hidden;
}
.hscroll-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 120px; pointer-events: none; z-index: 2;
  background: linear-gradient(to right, transparent, var(--bg) 90%);
}
.hscroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.hscroll-track:active { cursor: grabbing; }
.hscroll-track::-webkit-scrollbar { display: none; }

/* AI Division horizontal cards */
.hcard {
  flex: 0 0 272px;
  scroll-snap-align: start;
  padding: 32px 28px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s, border-color .25s, box-shadow .25s;
  cursor: default;
}
.hcard:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.13);
  box-shadow: 0 0 0 1px rgba(96,165,250,.1), 0 16px 40px rgba(0,0,0,.3);
}
.hcard .card-icon-wrap { color: rgba(96,165,250,.8); margin-bottom: 4px; }

/* Technology Showcase horizontal cards */
.hsvc-card {
  flex: 0 0 252px;
  scroll-snap-align: start;
  padding: 32px 28px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; cursor: default;
  transition: background .25s, border-color .25s;
}
.hsvc-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(14,200,130,.2);
  box-shadow: 0 0 0 1px rgba(14,200,130,.1), 0 16px 40px rgba(0,0,0,.3);
}
.hsvc-card .svc-arrow {
  position: absolute; top: 24px; right: 22px;
  font-size: 16px; color: var(--dim);
  transition: color .2s, transform .2s;
}
.hsvc-card:hover .svc-arrow { color: rgba(14,200,130,.85); transform: translate(2px,-2px); }

/* Section logos (Capital / Foundation) */
.ds-section-logo { margin-bottom: 28px; }
.ds-logo-img {
  height: 52px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .88;
}

/* Metrics */
.metrics-row {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 16px;
}
.metric { flex:1; display:flex; flex-direction:column; gap:5px; align-items:center; padding:30px 16px; text-align:center; }
.m-val  { font-size: clamp(22px, 2.8vw, 34px); font-weight: 900; letter-spacing: -.03em; }
.m-lbl  { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); }
.metric-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ─── Two-col (Capital / Foundation) ─────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col--rev .col-left  { order: 2; }
.two-col--rev .col-right { order: 1; }
.col-left { display: flex; flex-direction: column; }
.col-left .sec-h2  { margin-bottom: 16px; }
.col-left .sec-desc { max-width: 440px; margin-bottom: 26px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--off); padding: 10px 0; border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: none; }
.fl-icon { color: var(--blue-l); font-size: 13px; flex-shrink: 0; }

/* Division card */
.div-card {
  position: relative;
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px 40px;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s ease;
  cursor: default;
  overflow: hidden;
}
.div-card:hover { box-shadow: 0 28px 80px rgba(0,0,0,.5), 0 0 60px rgba(37,99,235,.12), inset 0 0 0 1px rgba(96,165,250,.1); }

.div-card-logo { margin-bottom: 28px; min-height: 60px; display: flex; align-items: center; }
.div-card-logo img { height: 60px; max-width: 210px; width: auto; object-fit: contain; }
.div-logo-fb { flex-direction: column; gap: 3px; }
.fb-title { font-size: 52px; font-weight: 900; letter-spacing: -.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fb-sub   { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--dim); text-transform: uppercase; }

.div-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 30px; }
.tag {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-l); border: 1px solid rgba(96,165,250,.2);
  border-radius: 100px; padding: 5px 13px; background: rgba(96,165,250,.05);
}

.div-pillars { display: flex; flex-direction: column; gap: 18px; }
.dp-item { display: flex; align-items: center; gap: 16px; }
.dp-num  { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--blue); width: 22px; flex-shrink: 0; }
.dp-item > div { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.dp-name { font-size: 13px; font-weight: 500; color: var(--off); }
.dp-bar  { height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.dp-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-l)); border-radius: 2px; transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.dp-fill.go { width: var(--w); }

/* ─── Services grid ──────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.svc-card {
  padding: 36px 28px 32px; background: rgba(255,255,255,.02);
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; transition: background .3s; cursor: pointer;
}
.svc-card:hover { background: rgba(255,255,255,.065); box-shadow: inset 0 0 0 1px rgba(96,165,250,.14); }
.svc-card:nth-child(4n)      { border-right: none; }
.svc-card:nth-last-child(-n+4) { border-bottom: none; }
.svc-num  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.svc-h3   { font-size: 15px; font-weight: 700; letter-spacing: -.015em; color: var(--white); line-height: 1.3; }
.svc-p    { font-size: 13px; color: var(--off); line-height: 1.65; flex: 1; }
.svc-arrow { position: absolute; top: 28px; right: 24px; font-size: 16px; color: var(--dim); transition: color .2s, transform .2s; }
.svc-card:hover .svc-arrow { color: var(--blue-l); transform: translate(2px,-2px); }

/* ─── Footer ─────────────────────────────────── */
.footer { border-top: 1px solid var(--border); margin-top: 88px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 24px 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-left  { display: flex; align-items: center; gap: 20px; }
.footer-logo  { height: 24px; width: auto; object-fit: contain; }
.footer-logo-text { font-size: 15px; font-weight: 800; color: #fff; }
.footer-copy  { font-size: 12px; color: var(--dim); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; color: var(--dim); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-tag   { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); }


/* Slime cursor — structure fully built in JS (initWaterBall) */

/* ═══════════════════════════════════════════
   A. CAPITAL — SURREAL GOLD
═══════════════════════════════════════════ */
.s-capital { overflow: hidden; }
.s-capital::after {
  content: '';
  position: absolute; pointer-events: none; z-index: 0;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(210,170,50,.09) 0%, transparent 68%);
  top: 50%; left: -120px; transform: translateY(-50%);
}
.s-capital .container { position: relative; z-index: 1; }

/* Capital tagline — gold gradient statement */
.capital-tag {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 22px;
  background: linear-gradient(130deg,
    #c8960a 0%, #f5d060 30%, #e8b820 55%, #ffe080 78%, #c8960a 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(220,170,40,.35));
  animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer { 0%{background-position:100%} 100%{background-position:-100%} }

/* Capital card surreal */
.capital-card {
  background: linear-gradient(148deg,
    rgba(210,165,40,.09) 0%,
    rgba(14,14,20,.97) 38%,
    rgba(9,9,14,.98) 72%,
    rgba(190,140,25,.07) 100%
  ) !important;
  border-color: rgba(210,165,40,.2) !important;
  box-shadow:
    inset 0 0 90px rgba(210,165,40,.07),
    0 0 0 1px rgba(210,165,40,.09),
    0 32px 90px rgba(0,0,0,.65) !important;
}
.capital-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 20px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 15% 18%, rgba(240,190,50,.11) 0%, transparent 55%);
}
.capital-card > * { position: relative; z-index: 1; }

/* Card thesis footer */
.card-thesis {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(210,165,40,.14);
}
.thesis-line {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, rgba(210,165,40,.6), transparent);
  flex-shrink: 0;
}
.thesis-text {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(210,165,40,.65);
}

/* ═══════════════════════════════════════════
   A. FOUNDATION — SURREAL TEAL
═══════════════════════════════════════════ */
.s-foundation { overflow: hidden; }
.s-foundation::after {
  content: '';
  position: absolute; pointer-events: none; z-index: 0;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(18,200,125,.08) 0%, transparent 68%);
  top: 50%; right: -120px; transform: translateY(-50%);
}
.s-foundation .container { position: relative; z-index: 1; }

/* Foundation card surreal */
.foundation-card {
  background: linear-gradient(148deg,
    rgba(18,200,120,.08) 0%,
    rgba(12,14,20,.97) 38%,
    rgba(8,10,15,.98) 72%,
    rgba(10,170,100,.06) 100%
  ) !important;
  border-color: rgba(18,200,120,.18) !important;
  box-shadow:
    inset 0 0 90px rgba(18,200,120,.06),
    0 0 0 1px rgba(18,200,120,.08),
    0 32px 90px rgba(0,0,0,.65) !important;
}
.foundation-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 20px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(18,220,130,.10) 0%, transparent 55%);
}
.foundation-card > * { position: relative; z-index: 1; }

/* Impact stats grid */
.impact-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(18,200,120,.14);
}
.impact-item { display: flex; flex-direction: column; gap: 5px; }
.impact-num {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(130deg, #0ec882 0%, #a8ffd8 55%, #0ec882 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(18,200,120,.45));
  animation: tealPulse 3.5s ease-in-out infinite;
}
@keyframes tealPulse {
  0%,100% { filter: drop-shadow(0 0 12px rgba(18,200,120,.4)); }
  50%      { filter: drop-shadow(0 0 22px rgba(18,200,120,.7)); }
}
.impact-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  line-height: 1.4;
}

/* Foundation motto */
.foundation-motto {
  margin-top: 24px;
  font-size: 14px; font-weight: 500; font-style: italic;
  color: rgba(18,200,120,.6);
  letter-spacing: .02em;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   A. CAPITAL — EDITORIAL LAYOUT
   Inspired by editorial NFT/art marketplace designs:
   large headline left, featured visual right,
   stats strip, secondary pillars panel.
═══════════════════════════════════════════ */
.capital-editorial {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}
.capital-left {
  display: flex; flex-direction: column; gap: 30px;
}

/* Massive editorial headline */
.capital-hero-h2 {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .93;
  margin-bottom: 0;
}
.capital-gold {
  display: block;
  background: linear-gradient(130deg,
    #b87c08 0%, #f5d060 28%, #e8b820 55%, rgba(255,220,80,.7) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(220,170,40,.32));
  animation: goldShimmer 4s linear infinite;
}

/* Stats strip (27k+ / 25k+ / 12k+ reference) */
.capital-stats {
  display: flex; align-items: center;
}
.cstat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 28px;
}
.cstat:first-child { padding-left: 0; }
.cstat-num {
  font-size: clamp(22px, 2.7vw, 38px);
  font-weight: 900; letter-spacing: -.035em; color: #fff;
}
.cstat-lbl {
  font-size: 11px; font-weight: 500; letter-spacing: .09em;
  text-transform: uppercase; color: var(--dim);
}
.cstat-sep {
  width: 1px; height: 34px; background: var(--border); flex-shrink: 0;
}

/* Sector tags (colored avatar row reference) */
.capital-sectors {
  display: flex; flex-wrap: wrap; gap: 9px; align-items: center;
}
.csector {
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(210,165,40,.88);
  border: 1px solid rgba(210,165,40,.22);
  border-radius: 100px; padding: 7px 16px;
  background: rgba(210,165,40,.06);
  transition: background .22s, border-color .22s;
}
.csector:hover {
  background: rgba(210,165,40,.14); border-color: rgba(210,165,40,.45);
}

/* ─── Right column ─── */
.capital-right {
  display: flex; flex-direction: column; gap: 16px;
}

/* Featured card — the main "artwork" visual */
.capital-featured {
  position: relative; border-radius: 22px; overflow: hidden;
  background: rgba(10,9,14,.97);
  border: 1px solid rgba(210,165,40,.18);
  box-shadow:
    inset 0 0 80px rgba(210,165,40,.06),
    0 0 0 1px rgba(210,165,40,.07),
    0 44px 110px rgba(0,0,0,.78);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  cursor: default;
}
.capital-featured:hover {
  box-shadow:
    inset 0 0 110px rgba(210,165,40,.1),
    0 0 0 1px rgba(210,165,40,.2),
    0 54px 130px rgba(0,0,0,.85);
}

/* Floating gold dots (colored dot bubbles from reference) */
.cf-dots { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.cfdot {
  position: absolute; border-radius: 50%;
  background: rgba(210,165,40,.8);
  box-shadow: 0 0 10px rgba(210,165,40,.55);
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1);   box-shadow: 0 0 8px rgba(210,165,40,.4); }
  50%      { transform: scale(1.6); box-shadow: 0 0 20px rgba(210,165,40,.85); }
}

/* Tags overlay (top-left, like NFT card badges) */
.cf-tags {
  position: absolute; top: 16px; left: 16px;
  display: flex; gap: 8px; z-index: 4;
}
.cftag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 100px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1); color: var(--off);
}
.cftag--gold {
  border-color: rgba(210,165,40,.45);
  color: rgba(210,165,40,.95);
  background: rgba(40,28,4,.72);
}

/* Main visual area — large "A." gold mark (featured artwork equiv.) */
.cf-visual {
  position: relative; height: 272px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(148deg,
    rgba(38,26,8,.92) 0%, rgba(62,42,12,.68) 40%, rgba(20,15,5,.96) 100%
  );
  overflow: hidden;
}
.cf-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 28% 44%, rgba(210,165,40,.18) 0%, transparent 54%),
    radial-gradient(ellipse at 78% 68%, rgba(150,100,10,.12) 0%, transparent 44%);
}
.cf-logo-big {
  position: relative; z-index: 1;
  font-size: clamp(88px, 12vw, 150px);
  font-weight: 900; letter-spacing: -.06em; line-height: 1;
  background: linear-gradient(130deg,
    #b07206 0%, #f5d060 30%, #e6b618 56%, rgba(255,220,80,.6) 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 48px rgba(220,170,40,.65));
  user-select: none;
  animation: cfFloat 4.8s ease-in-out infinite;
}
@keyframes cfFloat {
  0%,100% { transform: translateY(0);    filter: drop-shadow(0 0 44px rgba(220,170,40,.6)); }
  50%      { transform: translateY(-11px); filter: drop-shadow(0 0 64px rgba(220,170,40,.95)); }
}

/* Info strip at bottom (title + thesis) */
.cf-info {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  background: rgba(16,12,4,.9);
  border-top: 1px solid rgba(210,165,40,.12);
}
.cf-name { display: flex; flex-direction: column; gap: 3px; }
.cf-title { font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: #fff; }
.cf-by    {
  font-size: 11px; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(210,165,40,.55);
}
.cf-right-info { display: flex; flex-direction: column; gap: 3px; text-align: right; }
.cf-bid-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim);
}
.cf-bid-val {
  font-size: 14px; font-weight: 700;
  background: linear-gradient(90deg, #c8960a, #f5d060);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Secondary panel — Investment Pillars ("Hot Trending" equivalent) */
.capital-secondary {
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(210,165,40,.1);
  border-radius: 16px; padding: 20px 22px;
}
.cap-sec-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(210,165,40,.62);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.cap-sec-label::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(210,165,40,.8);
  box-shadow: 0 0 8px rgba(210,165,40,.55);
}
.cpm-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.cpm-item:last-child { border-bottom: none; }
.cpm-name {
  font-size: 13px; font-weight: 500; color: var(--off); flex: 1;
}
.cpm-bar {
  width: 80px; height: 2px;
  background: var(--border); border-radius: 2px; overflow: hidden; flex-shrink: 0;
}
.cpm-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(200,150,10,.7), rgba(245,208,96,.95));
  border-radius: 2px; transition: width 1.4s cubic-bezier(.16,1,.3,1);
}
.cpm-fill.go { width: var(--w); }
.cpm-pct {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: rgba(210,165,40,.72); width: 32px; text-align: right; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   DIVISION SECTIONS — A. CAPITAL + A. FOUNDATION
   Full editorial rebuild matching reference design.
═══════════════════════════════════════════ */
.ds-section {
  padding: 80px 0 96px;
  position: relative; z-index: 1; overflow: hidden;
}
.ds-section + .ds-section { padding-top: 80px; }

/* ─── Branded mini-nav bar ─── */
.ds-minibar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 44px; margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.ds-brand {
  font-size: 13px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.78);
}
.ds-brand em {
  font-style: normal;
  background: linear-gradient(130deg, #c8960a, #f5d060);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-foundation .ds-brand em {
  background: linear-gradient(130deg, #0ab872, #a8ffd8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-nav { display: flex; align-items: center; gap: 28px; }
.ds-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  color: var(--off); text-decoration: none; transition: color .2s;
}
.ds-nav a:hover { color: var(--white); }
.ds-nav-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--bh) !important; background: transparent;
  color: var(--white) !important; transition: background .2s !important;
}
.ds-nav-btn:hover { background: rgba(255,255,255,.07) !important; }
.ds-teal-btn {
  border-color: rgba(18,200,120,.36) !important;
  color: rgba(18,200,120,.9) !important;
}
.ds-teal-btn:hover { background: rgba(18,200,120,.08) !important; }

/* ─── Two-column grid ─── */
.ds-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
}
.ds-layout--rev .ds-left  { order: 2; }
.ds-layout--rev .ds-right { order: 1; }

/* ─── Section tag (eyebrow) ─── */
.ds-section-tag {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--off); margin: 0;
}

/* ─── Text column ─── */
.ds-left { display: flex; flex-direction: column; gap: 28px; }
.ds-headline {
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 900; letter-spacing: -.04em; line-height: .92;
}
.ds-accent { display: inline; }
.ds-gold {
  background: linear-gradient(130deg, #c8960a 0%, #f5d060 35%, #e8b820 65%, rgba(255,220,80,.85) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(220,170,40,.32));
}
.ds-teal {
  background: linear-gradient(130deg, #0ab872 0%, #a8ffd8 50%, #0ec882 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(18,200,120,.32));
}
.ds-desc { font-size: 15px; color: var(--off); line-height: 1.72; max-width: 400px; }
.ds-ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ds-btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; border: none;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.ds-btn-solid:hover { transform: translateY(-2px); }
.ds-btn-solid.gold {
  background: rgba(210,165,40,.95); color: rgba(0,0,0,.88);
  box-shadow: 0 8px 30px rgba(210,165,40,.3);
}
.ds-btn-solid.gold:hover { box-shadow: 0 14px 44px rgba(210,165,40,.5); }
.ds-btn-solid.teal {
  background: rgba(14,200,130,.9); color: rgba(0,0,0,.88);
  box-shadow: 0 8px 30px rgba(14,200,130,.28);
}
.ds-btn-solid.teal:hover { box-shadow: 0 14px 44px rgba(14,200,130,.46); }
.ds-btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  transition: gap .3s;
}
.ds-btn-text:hover { gap: 14px; }

/* ─── Stats row (Capital) ─── */
.ds-stats-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 12px;
}
.ds-stats-row { display: flex; align-items: flex-start; }
.ds-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 28px; border-right: 1px solid var(--border);
}
.ds-stat:first-child { padding-left: 0; }
.ds-stat:last-child  { border-right: none; }
.ds-stat-n {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900; letter-spacing: -.04em; color: #fff;
}
.ds-stat-l { font-size: 12px; color: var(--off); }

/* ─── Foundation impact box ─── */
.found-impact-box {
  border: 1px solid rgba(18,200,120,.16); border-radius: 16px;
  padding: 22px 24px; background: rgba(18,200,120,.04);
}
.found-impact-box-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(18,200,120,.65); margin-bottom: 16px;
}
.found-impact-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.found-stat { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 80px; }
.found-num {
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 900; letter-spacing: -.04em; color: #fff;
}
.found-lbl { font-size: 11px; color: var(--off); line-height: 1.45; }

/* ─── Right visual column ─── */
.ds-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
}

/* ═══════════════════════════════════════════
   THE SPHERE
═══════════════════════════════════════════ */
.ds-sphere {
  width: 420px; height: 420px;
  border-radius: 50%;
  position: relative; flex-shrink: 0;
  overflow: hidden;
}
/* Specular highlights */
.ds-sphere::before {
  content: ''; position: absolute;
  top: 7%; left: 9%; width: 36%; height: 26%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.076) 0%, transparent 80%);
  transform: rotate(-22deg);
  pointer-events: none; z-index: 4;
}
.ds-sphere::after {
  content: ''; position: absolute;
  top: 19%; right: 15%; width: 14%; height: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.04) 0%, transparent 100%);
  pointer-events: none; z-index: 4;
}

/* Capital sphere — dark glass + gold glow */
.ds-cap-sphere {
  background: radial-gradient(
    circle at 38% 34%,
    rgba(62,44,14,.78) 0%, rgba(18,13,5,.97) 48%, rgba(4,3,1,.99) 100%
  );
  box-shadow:
    0 0 0 1px rgba(200,150,30,.12),
    0 0 55px rgba(200,150,30,.25),
    0 0 150px rgba(200,150,30,.12),
    0 0 320px rgba(200,150,30,.06),
    inset 0 0 100px rgba(0,0,0,.88),
    inset 16px -22px 80px rgba(180,130,16,.07);
}
.ds-cap-sphere .sphere-shimmer {
  background: radial-gradient(circle at 50% 62%, rgba(200,150,30,.22) 0%, transparent 58%);
}

/* Foundation sphere — dark glass + teal glow */
.ds-found-sphere {
  background: radial-gradient(
    circle at 38% 34%,
    rgba(8,46,30,.78) 0%, rgba(5,16,11,.97) 48%, rgba(2,5,3,.99) 100%
  );
  box-shadow:
    0 0 0 1px rgba(18,200,120,.12),
    0 0 55px rgba(18,200,120,.24),
    0 0 150px rgba(18,200,120,.1),
    0 0 320px rgba(18,200,120,.05),
    inset 0 0 100px rgba(0,0,0,.88),
    inset 16px -22px 80px rgba(14,180,100,.07);
}
.ds-found-sphere .sphere-shimmer {
  background: radial-gradient(circle at 50% 62%, rgba(18,200,120,.2) 0%, transparent 58%);
}

/* Shared inner glow layer */
.sphere-shimmer {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none; z-index: 1;
}

/* SVG logo mark inside sphere */
.sphere-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40%; z-index: 2;
  animation: sphFloat 5.2s ease-in-out infinite;
}
@keyframes sphFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-9px); }
}

/* ─── Capital: floating asteroid rocks ─── */
.cap-rock {
  position: absolute; z-index: 5;
  background: linear-gradient(145deg, rgba(42,30,10,.96), rgba(14,10,3,.99));
  border: 1px solid rgba(200,150,30,.22);
  box-shadow: 0 0 28px rgba(200,150,30,.13), 0 12px 32px rgba(0,0,0,.8);
}
.cap-rock-1 {
  width: 88px; height: 74px;
  border-radius: 35% 58% 44% 64% / 50% 36% 64% 50%;
  top: -3%; left: -7%; transform: rotate(18deg);
  animation: fRk1 6.2s ease-in-out infinite;
}
.cap-rock-2 {
  width: 118px; height: 96px;
  border-radius: 52% 36% 62% 30% / 40% 58% 42% 60%;
  bottom: 2%; left: 20%; transform: rotate(-13deg);
  animation: fRk2 7.8s ease-in-out infinite;
}
.cap-rock-3 {
  width: 66px; height: 52px;
  border-radius: 62% 28% 50% 50% / 60% 44% 36% 64%;
  top: 7%; right: -4%; transform: rotate(26deg);
  animation: fRk3 5.6s ease-in-out infinite;
}
@keyframes fRk1 { 0%,100%{transform:rotate(18deg) translateY(0)}  50%{transform:rotate(18deg) translateY(-13px)} }
@keyframes fRk2 { 0%,100%{transform:rotate(-13deg) translateY(0)} 50%{transform:rotate(-13deg) translateY(-10px)} }
@keyframes fRk3 { 0%,100%{transform:rotate(26deg) translateY(0)}  50%{transform:rotate(26deg) translateY(-16px)} }

/* ─── Capital: floating gold balls ─── */
.cap-ball {
  position: absolute; border-radius: 50%; z-index: 5;
  background: radial-gradient(circle at 33% 28%, #f5e070, #d4a030 45%, #8a5800 82%);
  box-shadow: 0 0 18px rgba(200,150,30,.44), 0 8px 22px rgba(0,0,0,.6);
}
.cap-ball-1 { width: 28px; height: 28px; top: 28%; left: -6%;  animation: fBl1 5.2s ease-in-out infinite; }
.cap-ball-2 { width: 22px; height: 22px; bottom: 22%; right: -4%; animation: fBl2 6.6s ease-in-out infinite; }
.cap-ball-3 { width: 16px; height: 16px; top: 63%; left: -3%;  animation: fBl3 4.8s ease-in-out infinite; }
.cap-ball-4 { width: 20px; height: 20px; top: 10%; right: 18%; animation: fBl4 7.2s ease-in-out infinite; }
@keyframes fBl1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }
@keyframes fBl2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
@keyframes fBl3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fBl4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Rotating "OUR STORY" text badge */
.cap-story-badge {
  position: absolute; bottom: 7%; right: -1%; z-index: 6;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.cap-story-badge svg { position: absolute; inset: 0; animation: spinBdg 12s linear infinite; }
@keyframes spinBdg { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.cap-play-icon {
  font-size: 13px; color: rgba(255,255,255,.6); position: relative; z-index: 1;
}

/* ─── Foundation: orbiting portrait circles ─── */
.found-portrait {
  position: absolute; border-radius: 50%; z-index: 5;
  border: 2px solid rgba(18,200,120,.36);
  box-shadow: 0 0 18px rgba(18,200,120,.24);
  background: linear-gradient(135deg, rgba(14,42,28,.88), rgba(6,18,12,.97));
  overflow: hidden;
}
/* Stylised person silhouette */
.found-portrait::before {
  content: ''; position: absolute;
  top: 17%; left: 50%; transform: translateX(-50%);
  width: 36%; height: 36%; border-radius: 50%;
  background: rgba(18,200,120,.3);
}
.found-portrait::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 58%; height: 52%; border-radius: 50% 50% 0 0;
  background: rgba(18,200,120,.2);
}
.fp-1 { width: 60px; height: 60px; top: 2%;  left: 14%; animation: fPo1 5.8s ease-in-out infinite; }
.fp-2 { width: 70px; height: 70px; top: 0%;  right: 16%; animation: fPo2 6.6s ease-in-out infinite; }
.fp-3 { width: 52px; height: 52px; top: 36%; right: -2%; animation: fPo3 5.2s ease-in-out infinite; }
.fp-4 { width: 64px; height: 64px; bottom: 20%; right: 5%; animation: fPo4 7.2s ease-in-out infinite; }
.fp-5 { width: 54px; height: 54px; bottom: 14%; left: 7%; animation: fPo5 6.2s ease-in-out infinite; }
@keyframes fPo1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }
@keyframes fPo2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
@keyframes fPo3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes fPo4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fPo5 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ─── Foundation landscape SVG ─── */
.found-landscape-wrap {
  position: absolute; bottom: 0; left: -5%; right: -5%; z-index: 3; pointer-events: none;
}
.found-landscape { width: 100%; display: block; }

/* ─── Section ambient glows ─── */
.ds-capital::after {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,150,30,.1) 0%, transparent 68%);
  top: 50%; right: -200px; transform: translateY(-50%);
}
.ds-foundation::after {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(18,200,120,.1) 0%, transparent 68%);
  top: 50%; left: -200px; transform: translateY(-50%);
}
.ds-capital .container,
.ds-foundation .container { position: relative; z-index: 1; }

/* ─── Capital sphere: stronger glow ─── */
.ds-cap-sphere {
  background: radial-gradient(
    circle at 35% 30%,
    rgba(90,65,12,.72) 0%,
    rgba(28,20,4,.96) 40%,
    rgba(5,4,1,.99) 100%
  ) !important;
  box-shadow:
    0 0 0 1px rgba(210,165,30,.16),
    0 0 70px rgba(200,150,30,.38),
    0 0 180px rgba(200,150,30,.18),
    0 0 380px rgba(200,150,30,.08),
    inset 0 0 120px rgba(0,0,0,.92),
    inset 18px -24px 90px rgba(190,140,18,.1) !important;
}

/* ─── Foundation sphere: stronger teal glow ─── */
.ds-found-sphere {
  background: radial-gradient(
    circle at 35% 30%,
    rgba(10,60,38,.72) 0%,
    rgba(4,20,12,.96) 40%,
    rgba(1,5,3,.99) 100%
  ) !important;
  box-shadow:
    0 0 0 1px rgba(14,200,130,.18),
    0 0 70px rgba(14,200,130,.38),
    0 0 180px rgba(14,200,130,.16),
    0 0 380px rgba(14,200,130,.07),
    inset 0 0 120px rgba(0,0,0,.92),
    inset 18px -24px 90px rgba(10,180,110,.1) !important;
}

/* ─── Orbital ring (Capital) ─── */
.cap-orbital {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,30,.18);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(72deg);
  box-shadow: 0 0 20px rgba(200,150,30,.08), inset 0 0 20px rgba(200,150,30,.04);
  animation: orbSpin 24s linear infinite;
  pointer-events: none; z-index: 2;
}
.cap-orbital::after {
  content: '';
  position: absolute; top: -3px; left: 40%;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,150,30,.7);
  box-shadow: 0 0 8px rgba(200,150,30,.8);
}
@keyframes orbSpin {
  from { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(0deg); }
  to   { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(360deg); }
}

/* ─── Capital rocks: irregular clip-path shapes ─── */
.cap-rock {
  position: absolute; z-index: 5;
  background: linear-gradient(145deg,
    rgba(32,24,8,.96) 0%,
    rgba(18,14,4,.98) 40%,
    rgba(6,5,2,.99) 80%,
    rgba(40,30,8,.96) 100%
  );
}
.cap-rock-1 {
  width: 200px; height: 166px;
  clip-path: polygon(22% 0%, 68% 4%, 92% 18%, 100% 48%, 94% 78%, 72% 100%, 32% 98%, 8% 82%, 0% 50%, 4% 22%);
  bottom: -6%; left: -12%;
  box-shadow:
    0 -6px 40px rgba(200,150,20,.28),
    0 0 80px rgba(200,150,20,.14),
    0 24px 50px rgba(0,0,0,.85);
  animation: fRk1 7.5s ease-in-out infinite;
}
.cap-rock-2 {
  width: 128px; height: 104px;
  clip-path: polygon(30% 0%, 78% 10%, 100% 40%, 88% 82%, 50% 100%, 10% 86%, 0% 46%, 12% 14%);
  top: 4%; left: -9%;
  box-shadow: 0 12px 30px rgba(0,0,0,.7), 0 0 24px rgba(200,150,20,.1);
  animation: fRk2 9s ease-in-out infinite;
}
.cap-rock-3 {
  width: 82px; height: 66px;
  clip-path: polygon(18% 0%, 72% 8%, 100% 36%, 92% 78%, 58% 100%, 12% 88%, 0% 52%, 6% 18%);
  top: 10%; right: -5%;
  box-shadow: 0 10px 22px rgba(0,0,0,.65);
  animation: fRk3 6s ease-in-out infinite;
}
@keyframes fRk1 { 0%,100%{transform:rotate(12deg) translateY(0)}   50%{transform:rotate(12deg) translateY(-14px)} }
@keyframes fRk2 { 0%,100%{transform:rotate(-18deg) translateY(0)}  50%{transform:rotate(-18deg) translateY(-11px)} }
@keyframes fRk3 { 0%,100%{transform:rotate(30deg) translateY(0)}   50%{transform:rotate(30deg) translateY(-18px)} }

/* ─── Capital balls: extra balls (5 & 6) ─── */
.cap-ball-5 { width: 18px; height: 18px; bottom: 38%; left: -5%;  animation: fBl1 6.1s 1.3s ease-in-out infinite; }
.cap-ball-6 { width: 12px; height: 12px; top: 48%;   right: -2%; animation: fBl3 5.4s 0.7s ease-in-out infinite; }

/* ─── Trusted by visionaries strip ─── */
.trusted-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: var(--max); margin: 0 auto;
  padding-left: 56px; padding-right: 56px;
  gap: 32px; flex-wrap: wrap;
}
.trusted-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim); white-space: nowrap; flex-shrink: 0;
}
.trusted-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.tlogo {
  color: rgba(255,255,255,.38); display: flex; align-items: center;
  transition: color .25s; cursor: default;
  font-size: 17px; font-weight: 700; letter-spacing: -.02em;
}
.tlogo:hover { color: rgba(255,255,255,.7); }
.tlogo svg { display: block; }
.tlogo-klarna  { font-style: italic; font-size: 18px; letter-spacing: -.03em; }
.tlogo-openai  { font-size: 14px; font-weight: 600; letter-spacing: .04em; align-items: center; }
.tlogo-nvidia  { font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.tlogo-airbnb  { font-family: 'Georgia', serif; font-size: 18px; font-weight: 400; letter-spacing: -.01em; font-style: italic; }

/* ─── Foundation bottom: quote + pillars ─── */
.found-bottom {
  margin-top: 64px; padding-top: 52px;
  border-top: 1px solid rgba(18,200,120,.12);
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 56px; align-items: start;
}
.found-quote-block { display: flex; flex-direction: column; gap: 16px; }
.fq-mark {
  font-size: 72px; line-height: .7; color: rgba(14,200,130,.3);
  font-family: Georgia, serif; font-weight: 900; display: block;
}
.fq-text {
  font-size: clamp(14px, 1.5vw, 17px); font-weight: 400; line-height: 1.68;
  color: rgba(255,255,255,.68); font-style: italic; margin: 0;
}
.fq-attr {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: rgba(14,200,130,.6); margin: 0;
}
.found-pillars {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.fpillar { display: flex; flex-direction: column; gap: 10px; }
.fpillar-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(18,200,120,.08); border: 1px solid rgba(18,200,120,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(14,200,130,.7);
}
.fpillar-title {
  font-size: 13px; font-weight: 700; color: var(--white); margin: 0;
}
.fpillar-desc {
  font-size: 12px; color: var(--off); line-height: 1.55; margin: 0;
}

/* ─── AI Division cards: improved depth ─── */
.card {
  background: linear-gradient(148deg,
    rgba(255,255,255,.032) 0%,
    rgba(255,255,255,.018) 60%,
    rgba(255,255,255,.028) 100%
  ) !important;
  border-color: rgba(255,255,255,.07) !important;
  transition: background .3s, box-shadow .3s, border-color .3s !important;
}
.card:hover {
  background: linear-gradient(148deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.035) 60%,
    rgba(255,255,255,.055) 100%
  ) !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 40px rgba(20,200,140,.06) !important;
}

/* ─── Technology Showcase cards: improved ─── */
.svc-card {
  background: rgba(255,255,255,.022) !important;
  border-right-color: rgba(255,255,255,.065) !important;
  border-bottom-color: rgba(255,255,255,.065) !important;
}
.svc-card:hover {
  background: rgba(255,255,255,.058) !important;
  box-shadow: inset 0 0 0 1px rgba(14,200,130,.16) !important;
}
.svc-card:hover .svc-arrow { color: rgba(14,200,130,.85) !important; }
.services-grid {
  border-color: rgba(255,255,255,.065) !important;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .ds-sphere { width: 360px; height: 360px; }
  .cap-orbital { width: 460px; height: 460px; }
}
@media (max-width: 900px) {
  .ds-layout { grid-template-columns: 1fr; gap: 52px; }
  .ds-layout--rev .ds-left  { order: 1; }
  .ds-layout--rev .ds-right { order: 2; }
  .ds-sphere { width: 320px; height: 320px; }
  .ds-right { min-height: 380px; }
  .ds-minibar { flex-wrap: wrap; gap: 16px; }
  .found-bottom { grid-template-columns: 1fr; gap: 36px; }
  .found-pillars { grid-template-columns: repeat(2,1fr); }
  .trusted-strip { padding-left: 32px; padding-right: 32px; }
  .cap-orbital { width: 380px; height: 380px; }
}
@media (max-width: 640px) {
  .ds-headline { font-size: clamp(36px, 9vw, 60px) !important; }
  .ds-sphere { width: 280px; height: 280px; }
  .ds-stats-row { flex-wrap: wrap; gap: 16px; }
  .ds-stat { padding: 0 16px; }
  .ds-nav { flex-wrap: wrap; gap: 12px; }
  .found-impact-stats { flex-direction: column; }
  .found-pillars { grid-template-columns: repeat(2,1fr); }
  .trusted-logos { gap: 24px; }
  .cap-rock-1 { width: 130px; height: 108px; }
  .cap-orbital { display: none; }
}

/* ═══════════════════════════════════════════
   3D FLOATING CAROUSEL
═══════════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  overflow: hidden;
  padding: 20px 0 32px;
}
.carousel-viewport {
  flex: 1; position: relative; height: 300px; overflow: hidden;
}
.carousel-track { position: absolute; inset: 0; }

.ccard {
  position: absolute; left: 50%; top: 50%;
  width: 280px;
  transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s cubic-bezier(.4,0,.2,1);
  cursor: pointer; user-select: none;
}
.ccard-inner {
  padding: 32px 28px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
}

/* Center card — active */
.ccard[data-pos="0"] {
  transform: translateX(-50%) translateY(-50%) scale(1);
  opacity: 1; z-index: 10;
}
.ccard[data-pos="0"] .ccard-inner {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: cardLevitate 4s ease-in-out infinite;
}
@keyframes cardLevitate {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Adjacent cards */
.ccard[data-pos="1"]  { transform: translateX(calc(-50% + 300px)) translateY(-50%) scale(0.78); opacity: .55; z-index: 7; }
.ccard[data-pos="-1"] { transform: translateX(calc(-50% - 300px)) translateY(-50%) scale(0.78); opacity: .55; z-index: 7; }

/* Far cards */
.ccard[data-pos="2"]  { transform: translateX(calc(-50% + 500px)) translateY(-50%) scale(0.58); opacity: .2; z-index: 4; pointer-events: none; }
.ccard[data-pos="-2"] { transform: translateX(calc(-50% - 500px)) translateY(-50%) scale(0.58); opacity: .2; z-index: 4; pointer-events: none; }

/* Hidden positions */
.ccard[data-pos="3"],.ccard[data-pos="-3"],
.ccard[data-pos="4"],.ccard[data-pos="-4"],
.ccard[data-pos="5"],.ccard[data-pos="-5"],
.ccard[data-pos="6"],.ccard[data-pos="-6"],
.ccard[data-pos="7"],.ccard[data-pos="-7"] {
  opacity: 0; z-index: 1; pointer-events: none;
  transform: translateX(-50%) translateY(-50%) scale(0.4);
}

/* Arrow buttons */
.carousel-btn {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; z-index: 20;
}
.carousel-btn:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #fff;
}

/* Dots */
.carousel-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 20px;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: background .3s, transform .3s;
}
.carousel-dot.active { background: rgba(255,255,255,.8); transform: scale(1.3); }

/* AI card style */
.ai-ccard .card-icon-wrap { color: rgba(96,165,250,.8); margin-bottom: 4px; }
.ai-ccard .card-num { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.ai-ccard .card-h3  { font-size: 15px; font-weight: 700; letter-spacing: -.015em; color: var(--white); line-height: 1.3; }
.ai-ccard .card-p   { font-size: 13px; color: var(--off); line-height: 1.68; }

/* Service card style */
.svc-ccard { position: relative; }
.svc-ccard .svc-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.svc-ccard .svc-h3  { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--white); line-height: 1.3; }
.svc-ccard .svc-p   { font-size: 13px; color: var(--off); line-height: 1.65; flex: 1; }
.svc-ccard .svc-arr { position: absolute; top: 24px; right: 24px; font-size: 16px; color: var(--dim); transition: color .2s; }
.ccard[data-pos="0"] .svc-ccard .svc-arr { color: rgba(14,200,130,.8); }

/* Active card accent borders */
.s-tech .ccard[data-pos="0"] .ccard-inner  { border-color: rgba(14,200,130,.2); }
.s-ai   .ccard[data-pos="0"] .ccard-inner  { border-color: rgba(96,165,250,.2); }

/* Responsive */
@media (max-width: 900px) {
  .carousel-viewport { height: 260px; }
  .ccard { width: 240px; }
  .ccard[data-pos="1"]  { transform: translateX(calc(-50% + 250px)) translateY(-50%) scale(0.75); }
  .ccard[data-pos="-1"] { transform: translateX(calc(-50% - 250px)) translateY(-50%) scale(0.75); }
}
@media (max-width: 640px) {
  .carousel-wrap { gap: 6px; }
  .carousel-viewport { height: 240px; }
  .ccard { width: 220px; }
  .ccard[data-pos="1"]  { transform: translateX(calc(-50% + 224px)) translateY(-50%) scale(0.72); opacity: .4; }
  .ccard[data-pos="-1"] { transform: translateX(calc(-50% - 224px)) translateY(-50%) scale(0.72); opacity: .4; }
}

/* ─── Loader ─────────────────────────────────── */
.loader { position:fixed; inset:0; z-index:9999; background:var(--bg); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px; transition:opacity .8s ease; }
.loader.hidden { opacity:0; pointer-events:none; }
.loader-logo  { font-size:19px; font-weight:900; letter-spacing:-.01em; }
.loader-bar   { width:130px; height:1px; background:var(--border); overflow:hidden; border-radius:1px; }
.loader-fill  { height:100%; width:0; background:var(--blue); border-radius:1px; transition:width .1s linear; box-shadow:0 0 8px var(--blue); }
.loader-pct   { font-size:11px; font-weight:500; letter-spacing:.12em; color:var(--dim); }

/* ─── Responsive ─────────────────────────────── */
@media (max-width:1100px) {
  :root { --pad:64px; }
  .hcard    { flex: 0 0 240px; }
  .hsvc-card { flex: 0 0 220px; }
}
@media (max-width:900px) {
  .two-col { grid-template-columns:1fr; gap:52px; }
  .two-col--rev .col-left  { order:1; }
  .two-col--rev .col-right { order:2; }
  .capital-editorial { grid-template-columns:1fr; gap:44px; }
  .hero-content { left:40px; max-width:62%; }
  .hero-bottom  { left:40px; }
}
@media (max-width:768px) {
  :root { --nav-h:62px; --pad:52px; }
  .container  { padding:0 28px; }
  .nav-inner  { padding:0 28px; }
  .nav-links  { display:none; }
  .hamburger  { display:flex; }
  .logo-img   { height:52px; max-width:180px; }
  .hero-content { left:28px; max-width:80%; }
  .hero-bottom { left:28px; }
  .metrics-row { flex-wrap:wrap; }
  .sec-desc { max-width:100%; }
  .ds-left  { gap: 20px; }
  .footer-inner { padding:20px 28px; flex-direction:column; gap:14px; text-align:center; }
  .footer-left  { flex-direction:column; gap:8px; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
}
@media (max-width:520px) {
  .hcard    { flex: 0 0 220px; }
  .hsvc-card { flex: 0 0 200px; }
}

/* ═══════════════════════════════════════════
   MOBILE — COMPREHENSIVE  (≤480px / ≤360px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --pad: 36px; }
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }

  /* ─── Nav ─── */
  .logo-img { height: 44px; max-width: 150px; }

  /* ─── Hero ─── */
  .hero-eyebrow { font-size: clamp(30px, 9vw, 46px); }
  .hero-content { left: 20px; right: 20px; max-width: 100%; }
  .hero-bottom  { left: 20px; gap: 18px; bottom: 28px; }
  .scroll-label { font-size: 9px; letter-spacing: .09em; }
  .scroll-icon  { width: 22px; height: 36px; }

  /* ─── Sections ─── */
  .cinema-section { padding: calc(var(--pad) * 0.9) 0; }
  .sec-h2    { font-size: clamp(24px, 7vw, 34px); }
  .sec-intro { margin-bottom: 28px; }
  .sec-desc  { font-size: 14px; max-width: 100%; margin-bottom: 18px; }
  .btn-arrow { font-size: 12px; }

  /* ─── Carousel ─── */
  .carousel-wrap     { gap: 6px; padding: 10px 0 18px; }
  .carousel-viewport { height: 200px; }
  .ccard             { width: calc(100vw - 128px); }
  .ccard-inner       { padding: 20px 16px; min-height: 140px; gap: 7px; }
  .ccard[data-pos="1"]  { transform: translateX(calc(-50% + 190px)) translateY(-50%) scale(0.70); opacity: .2; }
  .ccard[data-pos="-1"] { transform: translateX(calc(-50% - 190px)) translateY(-50%) scale(0.70); opacity: .2; }
  .carousel-btn { width: 34px; height: 34px; }
  .carousel-btn svg { width: 13px; height: 13px; }
  .ai-ccard .card-h3,  .svc-ccard .svc-h3 { font-size: 14px; }
  .ai-ccard .card-p,   .svc-ccard .svc-p  { font-size: 12px; line-height: 1.5; }
  .svc-ccard .svc-arr  { top: 16px; right: 16px; font-size: 14px; }
  .carousel-dots { margin-top: 12px; }

  /* ─── DS sections ─── */
  .ds-section  { padding: 44px 0 56px; }
  .ds-layout   { gap: 36px; }
  .ds-minibar  { flex-direction: column; align-items: flex-start; gap: 12px;
                  padding-bottom: 20px; margin-bottom: 28px; }
  .ds-brand    { font-size: 11px; letter-spacing: .14em; }
  .ds-nav-btn  { display: none; }
  .ds-section-logo { margin-bottom: 18px; }
  .ds-logo-img { height: 38px; }
  .ds-headline { font-size: clamp(28px, 8.5vw, 46px) !important; }
  .ds-desc     { font-size: 14px; }
  .ds-ctas     { flex-direction: column; align-items: stretch; gap: 12px; }
  .ds-btn-solid, .ds-btn-text { justify-content: center; }
  .ds-stats-row   { flex-direction: column; gap: 0; }
  .ds-stat        { padding: 10px 0; border-right: none !important;
                    border-bottom: 1px solid var(--border); }
  .ds-stat:last-child { border-bottom: none; }
  .ds-stat-n      { font-size: clamp(20px, 6vw, 32px); }

  /* ─── DS visual column ─── */
  .ds-right   { min-height: 260px; }
  .ds-sphere  { width: 205px !important; height: 205px !important; }
  .cap-rock-1 { width: 82px  !important; height: 68px  !important; }
  .cap-rock-2 { width: 60px  !important; height: 50px  !important; }
  .cap-rock-3 { width: 40px  !important; height: 32px  !important; }
  .cap-ball-1 { width: 18px  !important; height: 18px  !important; }
  .cap-ball-2 { width: 14px  !important; height: 14px  !important; }
  .cap-ball-3 { width: 10px  !important; height: 10px  !important; }
  .cap-ball-4 { width: 12px  !important; height: 12px  !important; }
  .cap-ball-5 { width:  9px  !important; height:  9px  !important; }
  .cap-ball-6 { width:  7px  !important; height:  7px  !important; }
  .cap-story-badge { width: 58px; height: 58px; }
  .cap-badge-ring  { animation-duration: 18s; }
  .fp-1 { width: 44px !important; height: 44px !important; }
  .fp-2 { width: 50px !important; height: 50px !important; }
  .fp-3 { width: 38px !important; height: 38px !important; }
  .fp-4 { width: 44px !important; height: 44px !important; }
  .fp-5 { width: 40px !important; height: 40px !important; }

  /* ─── Foundation impact box ─── */
  .found-impact-box   { padding: 16px; }
  .found-impact-stats { flex-direction: column; gap: 10px; }
  .found-num  { font-size: clamp(18px, 5vw, 26px); }
  .found-lbl  { font-size: 11px; }

  /* ─── Foundation bottom ─── */
  .found-bottom  { margin-top: 32px; padding-top: 26px; gap: 24px; }
  .fq-mark  { font-size: 50px; }
  .fq-text  { font-size: 13px; }
  .fq-attr  { font-size: 11px; }
  .found-pillars  { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fpillar-icon   { width: 34px; height: 34px; border-radius: 8px; }
  .fpillar-title  { font-size: 12px; }
  .fpillar-desc   { font-size: 11px; }

  /* ─── Metrics 2×2 grid ─── */
  /* Children order: metric(1) sep(2) metric(3) sep(4) metric(5) sep(6) metric(7) */
  .metrics-row { flex-wrap: wrap; align-items: stretch; }
  .metric-sep  { display: none; }
  .metric      { flex: 0 0 50%; padding: 18px 10px; }
  .metrics-row .metric:nth-child(1) { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .metrics-row .metric:nth-child(3) { border-bottom: 1px solid var(--border); }
  .metrics-row .metric:nth-child(5) { border-right: 1px solid var(--border); }
  .m-val { font-size: clamp(17px, 5vw, 26px); }
  .m-lbl { font-size: 10px; }

  /* ─── Footer ─── */
  .footer       { margin-top: 44px; }
  .footer-inner { padding: 18px 20px; }
  .footer-logo  { height: 20px; }
  .footer-copy  { font-size: 11px; }
  .footer-tag   { display: none; }
}

/* ─── Very small phones (≤360px) ─── */
@media (max-width: 360px) {
  :root { --pad: 28px; }
  .container { padding: 0 16px; }
  .nav-inner  { padding: 0 16px; }
  .hero-eyebrow { font-size: 26px; }
  .ds-headline  { font-size: 24px !important; }
  .sec-h2       { font-size: 22px; }
  .ccard        { width: calc(100vw - 108px); }
  .carousel-viewport { height: 190px; }
  .ccard-inner  { padding: 16px 14px; min-height: 124px; }
  .ccard[data-pos="1"]  { transform: translateX(calc(-50% + 155px)) translateY(-50%) scale(0.66); opacity: .15; }
  .ccard[data-pos="-1"] { transform: translateX(calc(-50% - 155px)) translateY(-50%) scale(0.66); opacity: .15; }
  .ds-sphere    { width: 178px !important; height: 178px !important; }
  .ds-right     { min-height: 230px; }
  .found-pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fpillar-desc  { display: none; }
}
