:root {
  --magenta: #83004a;
  --void: #160028;
  --purple: #60009f;
  --pink: #df00ba;
  --paper: #fff8f3;
  --ink: #1a0a14;
  --gray: #6b5a64;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--paper);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

.display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.eyebrow::before { content: '['; }
.eyebrow::after { content: ']'; }

img, svg { display: block; max-width: 100%; }

/* ============ AMBIENT BACKGROUND ============ */
.glow-wrap {
  position: relative;
  background: var(--void);
  overflow: hidden;
}

.glow-wrap::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(223,0,186,0.35) 0%, rgba(96,0,159,0.15) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.glow-wrap::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(131,0,74,0.4) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

/* ============ NAV ============ */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
}

.nav-pill {
  background: var(--paper);
  color: var(--ink);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pill .ring {
  width: 18px; height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 108px);
  color: var(--paper);
  margin: 0;
  text-align: center;
}

.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}

.hero-cta-row {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-solid {
  background: var(--paper);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.btn-solid .ring {
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,248,243,0.3);
  border-radius: 100px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============ STAT STRIP ============ */
.stat-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,248,243,0.1);
  border-bottom: 1px solid rgba(255,248,243,0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,248,243,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  color: var(--pink);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,248,243,0.5);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ============ SECTION SCAFFOLDING ============ */
.section {
  position: relative;
  padding: 110px 48px;
}

.section-dark { background: var(--void); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-grad {
  background: linear-gradient(150deg, var(--magenta) 0%, var(--purple) 55%, var(--void) 100%);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-dark .eyebrow, .section-grad .eyebrow { color: var(--pink); }
.section-paper .eyebrow { color: var(--magenta); }

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin-top: 18px;
}

.section-dark h2, .section-grad h2 { color: var(--paper); }
.section-paper h2 { color: var(--ink); }

.section .lede {
  margin-top: 22px;
  font-size: 16px;
  max-width: 560px;
}

.section-dark .lede, .section-grad .lede { color: rgba(255,248,243,0.6); }
.section-paper .lede { color: var(--gray); }

/* ============ 01 — FOUNDATIONS: stacked numbered cards ============ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stack-card {
  background: var(--ink);
  border-radius: 18px;
  padding: 26px 22px;
  position: relative;
  border: 1px solid rgba(255,248,243,0.08);
}

.stack-card .n {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: var(--pink);
  width: 30px; height: 30px;
  border: 1.5px solid var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.stack-card h4 {
  font-size: 15px;
  color: var(--paper);
  margin-bottom: 8px;
  font-weight: 700;
}

.stack-card p {
  font-size: 12.5px;
  color: rgba(255,248,243,0.5);
  line-height: 1.6;
}

/* ============ 02 — FOUNDATION SETUP: tilted feature cards ============ */
.tilt-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0 10px;
}

.tilt-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  padding: 26px;
  width: 220px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.tilt-card:nth-child(1) { transform: rotate(-6deg); }
.tilt-card:nth-child(2) { transform: rotate(3deg) translateY(20px); }
.tilt-card:nth-child(3) { transform: rotate(-3deg); }
.tilt-card:nth-child(4) { transform: rotate(6deg) translateY(16px); }

.tilt-card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--paper);
}

.tilt-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tilt-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============ 03 — POST FORMULA: flow chain ============ */
.flow-chain {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 20px;
  flex-wrap: wrap;
}

.flow-step {
  background: rgba(255,248,243,0.04);
  border: 1px solid rgba(255,248,243,0.1);
  border-radius: 16px;
  padding: 26px 22px;
  flex: 1;
  min-width: 200px;
  position: relative;
}

.flow-step + .flow-step { margin-left: 18px; }

.flow-step .tag {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  color: var(--pink);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.flow-step h4 {
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 10px;
  font-weight: 700;
}

.flow-step p {
  font-size: 12.5px;
  color: rgba(255,248,243,0.5);
  line-height: 1.6;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--pink);
  font-size: 22px;
  padding: 0 6px;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.rule-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,248,243,0.03);
  border-radius: 14px;
}

.rule-item .num {
  font-family: 'Anton', sans-serif;
  color: var(--pink);
  font-size: 20px;
  flex-shrink: 0;
}

.rule-item p {
  font-size: 13px;
  color: rgba(255,248,243,0.6);
  line-height: 1.6;
}

.rule-item strong { color: var(--paper); }

/* ============ 04 — FUNNEL: TOFU/MOFU/BOFU ============ */
.funnel-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.funnel-row {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,248,243,0.08);
}

.funnel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  flex-wrap: wrap;
  gap: 14px;
}

.funnel-tag-group { display: flex; align-items: center; gap: 16px; }

.funnel-tag {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--ink);
}

.tofu-tag { background: var(--pink); }
.mofu-tag { background: #ffb84d; }
.bofu-tag { background: #4ddbb5; }

.funnel-head h3 {
  font-size: 19px;
  color: var(--paper);
  font-weight: 700;
}

.funnel-head .goal {
  font-size: 12.5px;
  color: rgba(255,248,243,0.45);
  margin-top: 4px;
}

.funnel-pct {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--paper);
}

.funnel-body {
  padding: 0 30px 30px;
}

.funnel-body > p {
  font-size: 13.5px;
  color: rgba(255,248,243,0.55);
  line-height: 1.7;
  max-width: 680px;
  border-top: 1px solid rgba(255,248,243,0.08);
  padding-top: 22px;
}

.funnel-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ex-card {
  background: rgba(255,248,243,0.04);
  border-radius: 12px;
  padding: 16px 18px;
}

.ex-card .ex-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.ex-card .ex-quote {
  font-size: 13px;
  color: var(--paper);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}

.ex-card .ex-why {
  font-size: 11.5px;
  color: rgba(255,248,243,0.4);
  line-height: 1.5;
}

.funnel-volume {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,248,243,0.4);
}

.vol-track {
  flex: 1;
  height: 4px;
  background: rgba(255,248,243,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.vol-fill { height: 100%; border-radius: 4px; }

/* ============ 05 — AMPLIFICATION: split asset comparison ============ */
.amp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.amp-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.amp-card.mathias { transform: rotate(-2deg); }
.amp-card.archer { transform: rotate(2deg); opacity: 0.6; }

.amp-card .eyebrow { color: var(--magenta); margin-bottom: 16px; }

.amp-num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 1;
}

.amp-card .unit { font-size: 14px; color: var(--gray); font-weight: 400; }

.amp-desc {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray);
}

.multiplier-box {
  text-align: center;
  margin-top: 50px;
}

.multiplier-box .big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(60px, 10vw, 140px);
  color: var(--pink);
  line-height: 0.9;
}

.multiplier-box p {
  font-size: 14px;
  color: rgba(255,248,243,0.5);
  margin-top: 12px;
}

/* ============ TACTIC CAROUSEL ============ */
.tactic-carousel-section {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  width: 90vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tactic-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.tactic-carousel-labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tactic-carousel-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--paper);
  line-height: 1;
  letter-spacing: 0.01em;
}

.tactic-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.tactic-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,248,243,0.25);
  background: rgba(255,248,243,0.06);
  color: var(--paper);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.tactic-nav:hover {
  background: rgba(255,248,243,0.16);
  border-color: rgba(255,248,243,0.55);
}

.tactic-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.tactic-track::-webkit-scrollbar { display: none; }

.tactic-card {
  flex-shrink: 0;
  width: 620px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 32px;
  scroll-snap-align: start;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tactic-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.tactic-card-meta {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.tactic-num {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: var(--magenta);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 3px;
}

.tactic-title {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 7px;
}

.tactic-subtitle {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.tactic-badge {
  flex-shrink: 0;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}

.badge-high {
  background: #cef5e1;
  color: #1a4a2e;
}

.badge-mid {
  background: #fde3cc;
  color: #6b2e00;
}

.badge-base {
  background: #e8e0ff;
  color: #2d006b;
}

.tactic-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tactic-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.tactic-col-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

.tactic-archer-block {
  border-left: 3px solid var(--pink);
  background: rgba(223,0,186,0.05);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
}

.tactic-archer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}

.tactic-archer-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 900px) {
  .tactic-card { width: calc(100vw - 48px - 20px); }
  .tactic-cols { grid-template-columns: 1fr; gap: 16px; }
  .tactic-carousel-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tactic-nav-btns { align-self: flex-end; }
}

/* ============ 06 — NETWORK STRATEGY ============ */
.network-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.network-visual {
  position: relative;
  height: 320px;
}

.net-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  color: var(--ink);
}

.net-center {
  width: 90px; height: 90px;
  background: var(--paper);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(223,0,186,0.15);
}

.net-orbit {
  width: 52px; height: 52px;
  background: rgba(255,248,243,0.9);
  font-size: 9px;
  z-index: 2;
}

.no1 { top: 8%; left: 18%; }
.no2 { top: 12%; right: 12%; }
.no3 { bottom: 10%; left: 8%; }
.no4 { bottom: 16%; right: 20%; }
.no5 { top: 50%; left: 0%; }
.no6 { top: 48%; right: 2%; }

.net-line {
  position: absolute;
  top: 50%; left: 50%;
  height: 1px;
  background: rgba(223,0,186,0.3);
  transform-origin: left center;
}

.net-q {
  margin-top: 30px;
  background: rgba(255,248,243,0.05);
  border-left: 3px solid var(--pink);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--paper);
  font-style: italic;
}

.network-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.net-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.net-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--ink);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.net-item h4 {
  font-size: 14.5px;
  color: var(--paper);
  margin-bottom: 4px;
  font-weight: 700;
}

.net-item p {
  font-size: 12.5px;
  color: rgba(255,248,243,0.5);
  line-height: 1.6;
}

/* ============ 07/08 — MOMENTUM + CONVERSION: paper cards ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ghost-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 30px;
}

.ghost-card .eyebrow { color: var(--magenta); margin-bottom: 14px; }

.ghost-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}

.ghost-list { display: flex; flex-direction: column; gap: 12px; }

.ghost-list li {
  list-style: none;
  font-size: 13.5px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.ghost-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--magenta);
}

/* ============ 09 — MEASUREMENT: stat tiles ============ */
.measure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.measure-tile {
  background: var(--ink);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(255,248,243,0.08);
}

.measure-tile .q {
  font-size: 13px;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 10px;
}

.measure-tile p {
  font-size: 12.5px;
  color: rgba(255,248,243,0.5);
  line-height: 1.6;
}

/* ============ 10 — ROADMAP: priority timeline ============ */
.roadmap-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.road-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,248,243,0.1);
  align-items: start;
}

.road-row:first-child { padding-top: 0; }
.road-row:last-child { border-bottom: none; }

.road-when {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.road-pill {
  background: var(--pink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  width: fit-content;
}

.road-row:nth-child(2) .road-pill { background: #ffb84d; }
.road-row:nth-child(3) .road-pill { background: #4ddbb5; }
.road-row:nth-child(4) .road-pill { background: #9d8cff; }
.road-row:nth-child(5) .road-pill { background: rgba(255,248,243,0.7); }

.road-when .when-label {
  font-size: 13px;
  color: rgba(255,248,243,0.4);
}

.road-tactics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.road-tactic {
  background: rgba(255,248,243,0.05);
  border: 1px solid rgba(255,248,243,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--paper);
  font-weight: 500;
}

/* ============ CTA ============ */
.cta-section {
  position: relative;
  text-align: center;
  padding: 130px 48px;
  overflow: hidden;
}

.cta-section .display {
  position: relative;
  z-index: 2;
  font-size: clamp(40px, 7vw, 80px);
  color: var(--paper);
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-section .sub {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: rgba(255,248,243,0.6);
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--void);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,248,243,0.08);
  font-size: 12px;
  color: rgba(255,248,243,0.3);
  flex-wrap: wrap;
  gap: 14px;
}

/* ============ ICP INTERLUDE ============ */
.icp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.icp-body-text {
  margin-top: 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 100px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 32px;
}

.btn-dark .ring {
  width: 22px; height: 22px;
  background: var(--pink);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.icp-callout {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(26,10,20,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icp-callout-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icp-callout-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(26,10,20,0.06);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}

.icp-callout-mark-good {
  background: rgba(223,0,186,0.1);
  color: var(--magenta);
}

.icp-callout-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.icp-callout-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}

.icp-callout-divider {
  height: 1px;
  background: rgba(26,10,20,0.07);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav, .section, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .tilt-row { flex-direction: column; align-items: center; }
  .tilt-card { transform: none !important; width: 100%; max-width: 320px; }
  .flow-chain { flex-direction: column; }
  .flow-step + .flow-step { margin-left: 0; margin-top: 18px; }
  .flow-arrow { display: none; }
  .rule-grid { grid-template-columns: 1fr; }
  .amp-wrap { grid-template-columns: 1fr; }
  .amp-card.archer { opacity: 1; }
  .network-grid { grid-template-columns: 1fr; }
  .network-visual { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .measure-grid { grid-template-columns: 1fr; }
  .road-row { grid-template-columns: 1fr; gap: 14px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .funnel-head { flex-direction: column; align-items: flex-start; }
  .icp-split { grid-template-columns: 1fr; gap: 32px; }
}
