:root {
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-raised:   #f1f5f9;
  --fg:          #0f172a;
  --fg-2:        #1e293b;
  --muted:       #64748b;
  --muted-2:     #94a3b8;
  --cyan:        #0ea5c9;
  --cyan-mid:    #18b9d9;
  --violet:      #7c3aed;
  --violet-mid:  #8b5cf6;
  --magenta:     #c026d3;
  --border:      rgba(15,23,42,0.08);
  --border-soft: rgba(15,23,42,0.05);
  --shadow-sm:   0 1px 4px rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.06);
  --shadow-md:   0 2px 8px rgba(15,23,42,0.07), 0 12px 40px rgba(15,23,42,0.09);
  --shadow-lg:   0 4px 16px rgba(15,23,42,0.08), 0 24px 64px rgba(15,23,42,0.12);
  --radius:      20px;
  --radius-sm:   10px;
  --pad:         clamp(24px,4vw,64px);
  --gap:         clamp(16px,2vw,28px);
  --nav-h:       68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01','cv11';
}

/* ── Utilities ─────────────────────────────────── */
.grad {
  background: linear-gradient(135deg, var(--cyan-mid) 0%, var(--violet-mid) 55%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
  padding-right: 0.05em;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.accent-bar { height: 3px; width: 52px; background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid)); border-radius: 2px; }
.accent-bar--center { margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan); }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-label span:first-child { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); white-space: nowrap; }
.section-label span:last-child { flex: 1; height: 1px; background: var(--border); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
.d1{animation-delay:.1s} .d2{animation-delay:.2s} .d3{animation-delay:.3s}
.d4{animation-delay:.4s} .d5{animation-delay:.5s} .d6{animation-delay:.6s}

/* ── Badges ────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 4px;
}
.badge--live    { background: rgba(16,185,129,0.1);  color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.badge--dev     { background: rgba(245,158,11,0.1);  color: #D97706; border: 1px solid rgba(245,158,11,0.2); }
.badge--coming  { background: rgba(124,58,237,0.08); color: var(--violet); border: 1px solid rgba(124,58,237,0.18); }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg);
  font-size: 16px; font-weight: 800; letter-spacing: -0.02em;
  flex-shrink: 0; margin-right: 32px;
}

.nav__links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--fg-2);
  text-decoration: none; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer; white-space: nowrap;
  background: none; border: none; font-family: inherit;
}
.nav__link:hover { background: var(--bg-raised); color: var(--fg); }
.nav__link--active { color: var(--cyan); font-weight: 600; }
.nav__link--soon::after {
  content: 'soon'; font-size: 8px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--violet); background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.18); border-radius: 4px; padding: 1px 5px;
  margin-left: 2px;
}
.nav__link svg { transition: transform 0.2s; flex-shrink: 0; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 230px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 14px 6px 6px;
  list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}

.nav__drop-link {
  display: block; padding: 9px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--fg-2); text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.nav__drop-link:hover { background: var(--bg-raised); color: var(--fg); }
.nav__drop-link small { display: block; font-size: 11px; font-weight: 400; color: var(--muted); margin-top: 1px; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
  padding: 9px 20px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff; font-size: 13.5px; font-weight: 700;
  border-radius: 100px; text-decoration: none;
  box-shadow: 0 2px 16px rgba(24,185,217,0.28);
  transition: box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { box-shadow: 0 4px 24px rgba(24,185,217,0.42); transform: translateY(-1px); }

.nav__burger {
  display: none; margin-left: auto;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.2s; }

.nav__mobile {
  display: none;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px var(--pad);
}
.nav__mobile a { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; color: var(--fg-2); text-decoration: none; border-bottom: 1px solid var(--border-soft); }
.nav__mobile a:last-child { border: none; }
.nav__mobile .mob-section { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); padding: 14px 0 4px; }

@media (max-width: 800px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 30px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: 100px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(24,185,217,0.32);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(24,185,217,0.48); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 28px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg-2); font-size: 15px; font-weight: 600;
  border-radius: 100px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(14,165,201,0.04); }

.btn-sec {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); border: 1.5px solid var(--border);
  border-radius: 100px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; white-space: nowrap;
}
.btn-sec:hover { border-color: var(--cyan); color: var(--cyan); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + clamp(56px,8vw,96px));
  padding-bottom: clamp(56px,7vw,88px);
  text-align: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 20% 0%,   rgba(24,185,217,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 80% 100%, rgba(139,92,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--cyan);
  background: rgba(14,165,201,0.08);
  border: 1px solid rgba(14,165,201,0.2);
  border-radius: 100px; padding: 5px 16px;
  margin-bottom: 24px;
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

.hero__headline {
  font-size: clamp(38px,6.5vw,80px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.06;
  margin-bottom: 22px;
}

.hero__sub {
  font-size: clamp(16px,2vw,20px);
  color: var(--muted); max-width: 580px; margin: 0 auto 36px; line-height: 1.65;
}

.hero__actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; }

.hero__pipeline {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 700px; margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pipeline-pill {
  flex: 1; padding: 18px 12px; text-align: center;
  position: relative;
}
.pipeline-pill + .pipeline-pill::before {
  content: '→';
  position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: var(--muted-2); font-weight: 600;
}
.pipeline-pill__num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--muted-2); margin-bottom: 4px;
  font-family: 'Courier New', monospace;
}
.pipeline-pill__label { font-size: 13px; font-weight: 700; color: var(--fg-2); }
.pipeline-pill--verify .pipeline-pill__label { color: var(--cyan); }

/* ══════════════════════════════════════════════════
   PROBLEM / SHIFT - Three Camps
══════════════════════════════════════════════════ */
.shift { padding: clamp(64px,8vw,96px) 0; background: var(--bg-soft); }

.shift__headline {
  font-size: clamp(26px,4vw,44px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.14;
  margin-bottom: 8px;
}
.shift__sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; }

.camp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); margin-bottom: 18px; }

.camp-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 28px; position: relative; overflow: hidden;
}
.camp-card--active {
  border-color: rgba(14,165,201,0.3);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(14,165,201,0.12);
}
.camp-card--active::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
}

.camp-card__num {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.camp-card__idx {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--muted-2); font-family: 'Courier New', monospace;
}
.camp-card__status {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted);
}
.camp-card--active .camp-card__status { color: var(--cyan); }

.camp-card__title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.camp-card__body  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.shift__footer {
  text-align: center; font-size: 14px; color: var(--muted); font-style: italic;
}

/* ══════════════════════════════════════════════════
   PILLARS - Platform Overview
══════════════════════════════════════════════════ */
.pillars { padding: clamp(64px,8vw,96px) 0; background: var(--bg); }

.pillars__headline {
  font-size: clamp(26px,4vw,44px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.14; margin-bottom: 8px;
}
.pillars__sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; }

.pillars__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap); }

.pillar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 30px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pillar-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.pillar-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.18);
  display: flex; align-items: center; justify-content: center;
}
.pillar-card__icon--violet { background: rgba(124,58,237,0.07); border-color: rgba(124,58,237,0.18); }

.pillar-card__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
}
.pillar-card__stripe--violet {
  background: linear-gradient(90deg, var(--violet-mid), var(--magenta));
}

.pillar-card__title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.pillar-card__body  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--fg-2); line-height: 1.5;
}
.pillar-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
  background: var(--cyan-mid);
}
.pillar-card--dev .pillar-list li::before { background: var(--violet-mid); }

/* ══════════════════════════════════════════════════
   PIPELINE - Five Stages
══════════════════════════════════════════════════ */
.pipeline { padding: clamp(64px,8vw,96px) 0; background: var(--bg-soft); }

.pipeline__headline {
  font-size: clamp(26px,4vw,44px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.14; margin-bottom: 8px;
}
.pipeline__sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; }

.pipeline__stages {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 6px; margin-bottom: 20px;
}

.stage-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  padding: 22px 16px; text-align: center;
  position: relative; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stage-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--border);
}
.stage-card--verify::after {
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
}

.stage-card__num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted-2); margin-bottom: 10px;
  font-family: 'Courier New', monospace;
}
.stage-card__title { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 9px; }
.stage-card__body  { font-size: 12px; color: var(--muted); line-height: 1.6; }

.pipeline__connector {
  display: flex; align-items: center; gap: 0;
  height: 3px; background: var(--border); border-radius: 3px;
  overflow: hidden; margin-top: 4px;
}
.pipeline__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  border-radius: 3px; width: 40%;
}

/* ══════════════════════════════════════════════════
   AGENTS - Forward-Looking
══════════════════════════════════════════════════ */
.agents { padding: clamp(64px,8vw,96px) 0; background: var(--bg); }

.agents__inner {
  background: linear-gradient(135deg, rgba(24,185,217,0.04) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid rgba(24,185,217,0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(36px,5vw,60px);
}

.agents__split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px,5vw,64px); align-items: start;
}

.agents__headline {
  font-size: clamp(24px,3.5vw,38px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin: 14px 0 16px;
}
.agents__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.agents__pull {
  font-size: 14px; font-style: italic; font-weight: 600;
  color: var(--violet); padding: 12px 18px;
  background: rgba(124,58,237,0.06);
  border-left: 3px solid var(--violet-mid);
  border-radius: 0 8px 8px 0; margin-top: 14px;
}

.agent-col-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.agent-col-label::before {
  content: ''; display: block;
  width: 14px; height: 2px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  border-radius: 1px;
}

.agent-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }

.agent-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 9px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.agent-row:hover { border-color: rgba(14,165,201,0.2); box-shadow: var(--shadow-sm); }

.agent-row__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-mid), var(--violet-mid));
  flex-shrink: 0; margin-top: 5px;
}
.agent-row__name { font-size: 13px; font-weight: 600; }
.agent-row__desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin-top: 2px; }

/* ══════════════════════════════════════════════════
   ALONGSIDE - No Rip-and-Replace
══════════════════════════════════════════════════ */
.alongside { padding: clamp(64px,8vw,96px) 0; background: var(--bg-soft); }

.alongside__inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px,5vw,64px); align-items: start;
}

.alongside__headline {
  font-size: clamp(24px,3.5vw,38px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin: 14px 0 18px;
}
.alongside__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.alongside__steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.along-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.along-step__num {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--cyan);
  font-family: 'Courier New', monospace;
}
.along-step__text { font-size: 13.5px; color: var(--fg-2); line-height: 1.6; }
.along-step__text strong { color: var(--fg); font-weight: 600; }

.stack-panel { display: flex; flex-direction: column; gap: 8px; }

.stack-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.stack-card--lf {
  background: rgba(14,165,201,0.04);
  border-color: rgba(14,165,201,0.2);
}

.stack-card__icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-raised); border: 1px solid var(--border);
}
.stack-card__icon--lf { background: rgba(14,165,201,0.08); border-color: rgba(14,165,201,0.2); }

.stack-card__label { font-size: 13px; font-weight: 600; }
.stack-card__sub   { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

.stack-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
  padding: 4px 0;
}
.stack-divider::before, .stack-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ══════════════════════════════════════════════════
   CG360 CALLOUT
══════════════════════════════════════════════════ */
.cg360-strip { padding: clamp(64px,8vw,96px) 0; background: var(--bg); }

.cg360-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,72px); align-items: center;
}

.cg360-split__title {
  font-size: clamp(24px,3.5vw,38px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin: 14px 0 14px;
}
.cg360-split__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }

.cg360-visual {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 28px; display: flex; flex-direction: column; gap: 9px;
}
.cg360-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 9px;
}
.cg360-row__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan-mid), var(--violet-mid));
}
.cg360-row__label { font-size: 13px; font-weight: 600; flex: 1; }
.cg360-row__tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 8px; border-radius: 4px;
  background: rgba(14,165,201,0.08); color: var(--cyan);
}

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner { padding: clamp(64px,8vw,96px) 0; background: var(--bg-soft); }

.cta-banner__inner {
  background: var(--bg); border: 1px solid rgba(24,185,217,0.2);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: clamp(36px,5vw,60px);
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.cta-banner__title { font-size: clamp(20px,3vw,30px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.cta-banner__body  { font-size: 15px; color: var(--muted); line-height: 1.65; }
.cta-banner__note  { font-size: 12px; color: var(--muted-2); margin-top: 10px; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--fg);
  padding: clamp(48px,6vw,72px) 0 0;
  color: #cbd5e1;
}

.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px,4vw,56px);
  padding-bottom: clamp(40px,5vw,56px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand { margin-bottom: 14px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: #f8fafc; margin-bottom: 12px; }
.footer__tagline { font-size: 13px; color: #64748b; line-height: 1.6; max-width: 240px; }
.footer__ecosystem { margin-top: 18px; }
.footer__eco-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #475569; margin-bottom: 6px; }
.footer__eco-links { font-size: 12.5px; color: #64748b; }
.footer__eco-links a { color: #94a3b8; text-decoration: none; transition: color 0.15s; }
.footer__eco-links a:hover { color: var(--cyan-mid); }
.footer__eco-links span { margin: 0 6px; opacity: 0.4; }

.footer__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #475569; margin-bottom: 16px; }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13.5px; color: #94a3b8; text-decoration: none; transition: color 0.15s; }
.footer__links a:hover { color: var(--cyan-mid); }

.footer__contact { margin-top: 20px; font-size: 13px; color: #64748b; line-height: 1.7; }

.footer__bottom {
  padding: 20px 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #475569;
}
.footer__bottom a { color: #475569; text-decoration: none; }
.footer__bottom a:hover { color: var(--cyan-mid); }

/* ══════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
══════════════════════════════════════════════════ */
.legal-page {
  padding-top: calc(var(--nav-h) + clamp(40px,5vw,72px));
  padding-bottom: clamp(64px,8vw,96px);
  background: var(--bg);
}
.legal-inner { max-width: 760px; }

.legal-header { margin-bottom: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.legal-header h1 { font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.legal-header__meta { font-size: 13px; color: var(--muted); }

.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 14px;
  border-top: 2px solid var(--border);
  padding-top: 20px;
}
.legal-section p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section strong { color: var(--fg-2); }
.legal-section a { color: var(--cyan); }

/* ══════════════════════════════════════════════════
   PAGE HERO (subpages)
══════════════════════════════════════════════════ */
.pg-hero {
  padding-top: calc(var(--nav-h) + clamp(48px,6vw,72px));
  padding-bottom: clamp(48px,6vw,72px);
  text-align: center;
  position: relative; overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 20% 0%,   rgba(24,185,217,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 80% 100%, rgba(139,92,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.pg-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--cyan); background: rgba(14,165,201,0.08);
  border: 1px solid rgba(14,165,201,0.2); border-radius: 100px;
  padding: 5px 16px; margin-bottom: 24px;
}
.pg-hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.pg-hero__h1 {
  font-size: clamp(30px,5vw,58px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 20px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.pg-hero__sub {
  font-size: clamp(15px,1.8vw,18px); color: var(--muted);
  max-width: 620px; margin: 0 auto; line-height: 1.7;
}

.pg-hero--violet::before {
  background:
    radial-gradient(ellipse 700px 400px at 30% 0%,  rgba(124,58,237,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 600px 350px at 70% 80%, rgba(14,165,201,0.06) 0%, transparent 65%);
}
.pg-hero--violet .pg-hero__eyebrow {
  color: var(--violet); background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.18);
}
.pg-hero--violet .pg-hero__eyebrow::before { background: var(--violet); }

/* ══════════════════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════════════════ */
.thank-you-page {
  padding-top: calc(var(--nav-h) + clamp(48px,6vw,80px));
  padding-bottom: clamp(64px,8vw,96px);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  text-align: center;
  max-width: 500px;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  display: block;
}

.thank-you-headline {
  font-size: clamp(28px,4vw,48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.thank-you-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.thank-you-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(24,185,217,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.thank-you-btn:hover {
  box-shadow: 0 6px 28px rgba(24,185,217,0.44);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .camp-grid        { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 18px; }
  .pillars__grid    { grid-template-columns: 1fr; }
  .pipeline__stages { grid-template-columns: repeat(3,1fr); }
  .agents__split    { grid-template-columns: 1fr; }
  .alongside__inner { grid-template-columns: 1fr; }
  .cg360-split      { grid-template-columns: 1fr; }
  .cta-banner__inner{ grid-template-columns: 1fr; }
  .cta-banner__actions { align-items: flex-start; }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .pipeline__stages { grid-template-columns: 1fr 1fr; }
  .hero__pipeline   { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .pipeline__stages { grid-template-columns: 1fr; }
  .hero__actions    { flex-direction: column; align-items: center; }
  .footer__grid     { grid-template-columns: 1fr; }
}
