/* ============ RARMS — Greenhouse-inspired dark landing ============ */

:root {
  --bg-0: #0B0E1F;              /* deepest navy */
  --bg-1: #10142D;              /* section navy */
  --bg-2: #171C3A;              /* card navy */
  --bg-3: #1E2447;              /* card highlight */
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);

  --text: #F4F6FF;
  --text-mute: #A9AFCC;
  --text-faint: #6E749A;

  --teal: #24C7C4;
  --teal-2: #4AD7D4;
  --green: #6BE384;
  --green-2: #34D26A;
  --coral: #FF7A5C;
  --coral-2: #FF6248;
  --purple: #7B5CFF;
  --amber: #F5C24D;

  --gradient-teal-green: linear-gradient(135deg, #24C7C4 0%, #6BE384 100%);
  --gradient-purple-teal: linear-gradient(135deg, #7B5CFF 0%, #24C7C4 100%);
  --gradient-coral: linear-gradient(135deg, #FF7A5C 0%, #F5C24D 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 20px 40px -20px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-lift: 0 30px 60px -30px rgba(36,199,196,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;

  --font-sans: 'Manrope', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

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

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ Promo strip ============ */
.promo-strip {
  background: #05071A;
  color: var(--text-mute);
  font-size: 12px;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.promo-strip a { color: var(--text-mute); }
.promo-strip a:hover { color: var(--teal); }
.promo-right a { margin-left: 18px; }

/* ============ Top nav ============ */
.top {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,14,31,0.85);
}
.top-inner {
  max-width: 1240px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; line-height: 1.1; }
.logo em { font-style: normal; color: var(--teal); font-weight: 600; }
.top nav { display: flex; gap: 28px; margin-left: auto; }
.top nav a { color: var(--text-mute); font-weight: 500; font-size: 15px; }
.top nav a:hover { color: var(--text); }
.top-cta { padding: 10px 20px; }

/* ============ Buttons ============ */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-teal-green);
  color: #0B0E1F;
  box-shadow: 0 8px 24px -8px rgba(36,199,196,0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -8px rgba(36,199,196,0.6); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-tertiary {
  background: rgba(245,194,77,0.14);
  color: var(--amber);
  border: 1px solid rgba(245,194,77,0.3);
}
.btn-tertiary:hover { background: rgba(245,194,77,0.22); }
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }

/* ============ Chips + eyebrows ============ */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,227,132,0.12);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(107,227,132,0.25);
}
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
.chip-dot.teal { background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.chip-dot.coral { background: var(--coral); box-shadow: 0 0 12px var(--coral); }
.chip-dot.green { background: var(--green); box-shadow: 0 0 12px var(--green); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.eyebrow.warn { color: var(--coral); }

/* ============ Type ============ */
h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
.hi-teal { color: var(--teal); }
.hi-green { color: var(--green); }
.hi-coral { color: var(--coral); }
.serif-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.section-head { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-lede { color: var(--text-mute); font-size: 1.05rem; margin-top: 16px; }

/* ============ Hero ============ */
.hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(123,92,255,0.14), transparent 55%),
    radial-gradient(circle at 85% 60%, rgba(36,199,196,0.15), transparent 55%),
    var(--bg-0);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; pointer-events: none; }
.glow-1 { width: 500px; height: 500px; background: var(--teal); top: -100px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: var(--purple); bottom: -100px; left: -100px; opacity: 0.3; }

.hero .lede {
  color: var(--text-mute);
  font-size: 1.15rem;
  max-width: 720px;
  margin-bottom: 40px;
}

.rarms-expansion {
  color: var(--text-mute);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin: 0 0 18px 0;
  max-width: 720px;
}
.rarms-expansion strong { color: var(--text); font-weight: 700; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.stat {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}
.stat-icon {
  width: 44px; height: 44px;
  background: var(--gradient-teal-green);
  color: #0B0E1F;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-v { font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 12px; color: var(--text-mute); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ Maths band ============ */
.maths-band {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.maths-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.maths-quote .huge {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.maths-quote .sub { color: var(--text-mute); font-size: 1.05rem; }

.bar-row { margin-bottom: 20px; }
.bar-label { font-size: 13px; color: var(--text-mute); margin-bottom: 8px; font-weight: 600; }
.bar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  height: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar-fill.grey { background: linear-gradient(90deg, #3B4067, #52578A); }
.bar-fill.green { background: var(--gradient-teal-green); }
.bar-fill.teal { background: var(--gradient-purple-teal); }
.bar-tag {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-weight: 700; font-size: 14px;
}

/* ============ How it works ============ */
.how {
  padding: 112px 0;
  background: var(--bg-1);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease;
  position: relative;
}
.pillar:hover { transform: translateY(-3px); border-color: rgba(36,199,196,0.4); }
.pillar-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.pillar p { color: var(--text-mute); }

/* ============ Calculator ============ */
.calc-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(107,227,132,0.06), transparent 45%),
    var(--bg-0);
}
.calc-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
}
.calc-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.calc-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.calc-card label {
  display: block;
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.calc-card label .opt { color: var(--text-faint); font-weight: 400; margin-left: 8px; font-size: 12px; }
.calc-card input[type="number"],
.calc-card input[type="text"] {
  width: 100%;
  background: var(--bg-1);
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
  transition: border-color .15s ease;
}
.calc-card input:focus { outline: none; border-color: var(--teal); }
.calc-card input[type="range"] { width: 100%; margin-top: 6px; }
.range-out {
  display: inline-block;
  margin-left: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}
.checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ck {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px !important;
  color: var(--text) !important;
  cursor: pointer;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
}
.ck input { accent-color: var(--teal); }
.fine { color: var(--text-faint); font-size: 12px; margin-top: 16px; }

/* results */
.calc-results { background: var(--bg-2); }
.headline-answer {
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 20px;
  background: var(--bg-1);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  margin-bottom: 24px;
}
.mini-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.mini-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}
.mini-card.highlight-green { border-color: rgba(107,227,132,0.4); background: linear-gradient(180deg, rgba(107,227,132,0.06), var(--bg-1) 60%); }
.mini-card.highlight-teal { border-color: rgba(36,199,196,0.4); background: linear-gradient(180deg, rgba(36,199,196,0.06), var(--bg-1) 60%); }
.mini-label {
  color: var(--text-mute);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.mini-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--line);
}
.mini-row:last-of-type { border-bottom: none; }
.mini-row strong { color: var(--text); font-size: 14px; }
.mini-tag {
  margin-top: 10px; font-size: 12px; color: var(--text-mute);
  padding-top: 10px; border-top: 1px solid var(--line);
}
.mini-tag span { color: var(--green); font-weight: 700; }

.fee-defence {
  background: rgba(245,194,77,0.08);
  border: 1px solid rgba(245,194,77,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.fd-title {
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.fee-defence p { color: var(--text-mute); font-size: 0.95rem; }
.fee-defence strong { color: var(--text); }

.results-ctas { display: flex; gap: 12px; margin-bottom: 8px; }

/* ============ Survey ============ */
.survey {
  padding: 112px 0;
  background: var(--bg-1);
}
.survey-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.survey-progress {
  height: 6px;
  background: var(--bg-1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.survey-progress-fill {
  height: 100%;
  background: var(--gradient-teal-green);
  width: 12.5%;
  transition: width .35s ease;
}
.survey-progress-txt {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 32px;
  font-weight: 600;
}
.q { display: none; }
.q.q-active { display: block; animation: slideIn .3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.q-num {
  display: inline-block;
  background: rgba(36,199,196,0.15);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 12px;
}
.q label {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.4;
}
.q input[type="number"], .q input[type="text"], .q input[type="email"] {
  width: 100%;
  background: var(--bg-1);
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  margin-bottom: 14px;
}
.q input:focus { outline: none; border-color: var(--teal); }
.q .opt { color: var(--text-faint); font-weight: 400; font-size: 13px; }
.radios { display: flex; flex-direction: column; gap: 10px; }
.rd {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  font-weight: 500 !important;
  font-size: 15px !important;
  margin-bottom: 0 !important;
}
.rd:hover { border-color: var(--teal); }
.rd input { accent-color: var(--teal); }
.rd:has(input:checked) { border-color: var(--teal); background: rgba(36,199,196,0.06); }
.q-nav { display: flex; justify-content: space-between; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.q-nav .btn-secondary:disabled { opacity: 0.4; cursor: not-allowed; }

.survey-done { display: none; text-align: center; padding: 40px 0; }
.survey-done.on { display: block; }
.tick {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-teal-green);
  color: #0B0E1F;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.survey-done h3 { font-size: 1.8rem; margin-bottom: 16px; }
.survey-done p { color: var(--text-mute); margin-bottom: 16px; }

/* ============ Methodology ============ */
.methodology { padding: 112px 0; background: var(--bg-0); }
.weights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.weight {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.w-bar {
  background: rgba(255,255,255,0.06);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.w-fill { height: 100%; background: var(--gradient-teal-green); border-radius: 999px; }
.w-info { display: flex; align-items: baseline; margin-bottom: 12px; }
.w-name { font-weight: 700; font-size: 1.15rem; color: var(--teal); }
.w-pct { font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.weight p { color: var(--text-mute); font-size: 0.9rem; line-height: 1.55; }
.method-footnote {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-2);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  color: var(--text-mute);
  font-size: 0.95rem;
}
.method-footnote strong { color: var(--text); }

/* ============ What we don't do ============ */
.not-do { padding: 112px 0; background: var(--bg-1); }
.not-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.not-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.not-card h3 {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.not-icon {
  width: 32px; height: 32px;
  background: rgba(255,122,92,0.14);
  color: var(--coral);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  flex-shrink: 0;
}
.not-card p { color: var(--text-mute); }

/* ============ FAQ ============ */
.faq { padding: 112px 0; background: var(--bg-0); }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: rgba(36,199,196,0.4); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--text-mute); margin-top: 14px; }

/* ============ Closing CTA ============ */
.closing {
  padding: 96px 0 112px;
  background: var(--bg-1);
}
.closing-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(107,227,132,0.14), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(36,199,196,0.14), transparent 55%),
    var(--bg-2);
  border: 1px solid rgba(36,199,196,0.25);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lift);
}
.closing-ctas { display: flex; flex-direction: column; gap: 12px; }

/* ============ Footer ============ */
.foot {
  background: #05071A;
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.foot-brand { display: flex; gap: 14px; align-items: center; }
.foot-brand strong { display: block; margin-bottom: 4px; }
.foot-sub { color: var(--text-mute); font-size: 13px; }
.foot-links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--text-mute); }
.foot-links a:hover { color: var(--teal); }
.foot-partners { color: var(--text-faint); font-size: 13px; text-align: right; }
.foot-partners strong { color: var(--text-mute); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .top nav { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .maths-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .weights { grid-template-columns: repeat(2, 1fr); }
  .not-do-grid { grid-template-columns: 1fr; }
  .closing-card { grid-template-columns: 1fr; text-align: center; }
  .closing-ctas { align-items: center; }
  .foot-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .foot-brand, .foot-links { justify-content: center; }
  .foot-partners { text-align: center; }
}
@media (max-width: 640px) {
  .promo-strip { flex-direction: column; gap: 4px; text-align: center; }
  .promo-right a { margin-left: 8px; }
  .top-cta { display: none; }
  .hero { padding: 64px 0 72px; }
  .stats { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .cta-row a { justify-content: center; }
  .pillars { grid-template-columns: 1fr; }
  .weights { grid-template-columns: 1fr; }
  .calc-card, .survey-card { padding: 28px 22px; }
  .results-ctas { flex-direction: column; }
  .closing-card { padding: 32px 24px; }
}

/* ============ Founding Six Section ============ */
.founding {
  background: linear-gradient(180deg, var(--bg) 0%, #0E1332 50%, var(--bg) 100%);
  padding: 96px 0;
  position: relative;
}
.founding::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(255,122,92,0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(107,227,132,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.founding > .container { position: relative; z-index: 1; }
.founding-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}
.founding-lead h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 24px;
}
.founding-lead .section-lede {
  font-size: 1.08rem;
  color: var(--text-mute);
  margin-bottom: 18px;
  max-width: 640px;
  text-align: left;
}
.eyebrow.coral { color: var(--coral); }
.chip-dot.coral { background: var(--coral); box-shadow: 0 0 12px var(--coral); }

.founding-terms {
  background: linear-gradient(180deg, rgba(107,227,132,0.06) 0%, rgba(36,199,196,0.04) 100%);
  border: 1px solid rgba(107,227,132,0.28);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 60px -30px rgba(107,227,132,0.35);
}
.terms-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.terms-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}
.terms-value {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--green);
}
.terms-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.terms-list li {
  display: flex; gap: 12px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(107,227,132,0.14);
  border-radius: 50%;
  font-size: 0.75rem;
  margin-top: 2px;
}

.founding-terms-band {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 56px;
}
.founding-terms-band h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.bar-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.bar-card:hover {
  border-color: rgba(255,122,92,0.35);
  transform: translateY(-2px);
}
.bar-num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--coral);
  margin-bottom: 10px;
}
.bar-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bar-card p {
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.55;
}
.founding-cta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 16px 32px !important;
  font-size: 1.05rem !important;
}
.founding-note {
  color: var(--text-mute);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .founding-grid { grid-template-columns: 1fr; gap: 36px; }
  .bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .founding { padding: 64px 0; }
  .bar-grid { grid-template-columns: 1fr; }
  .founding-cta { flex-direction: column; align-items: stretch; }
  .founding-cta .btn-primary { justify-content: center; }
  .founding-note { text-align: center; }
}
