/* ============================================================
   AIgenteur JV — dark, high-contrast, electric cyan/magenta
   ============================================================ */

:root {
  --bg: #06070d;
  --bg-2: #0c0e18;
  --bg-3: #11142080;
  --surface: #0f111d;
  --surface-2: #161929;
  --surface-3: #1d2237;
  --border: #232847;
  --border-strong: #353c66;

  --text: #e8eaf5;
  --text-mute: #8b91b3;
  --text-dim: #5e648a;

  --cyan: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  --magenta: #ff1f8f;
  --magenta-glow: rgba(255, 31, 143, 0.4);
  --gold: #ffd84d;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  --shadow-glow: 0 0 30px var(--cyan-glow);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--cyan); text-decoration: none; transition: color 120ms; }
a:hover { color: var(--magenta); }

/* layout helpers */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin-inline: auto; padding: 0 24px; }
.center { text-align: center; }

/* ============================================================
   Topbar
   ============================================================ */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 900; font-size: 20px; letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.logo-mark {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 900;
}
.logo-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 2px 7px; border-radius: 4px;
  margin-left: 4px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--text-mute); font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--text); }

@media (max-width: 820px) {
  .nav a:not(.btn) { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms, box-shadow 120ms, background 120ms;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #06070d;
  box-shadow: 0 8px 30px var(--cyan-glow), 0 0 0 1px var(--cyan) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--magenta-glow), 0 0 0 1px var(--magenta) inset;
  color: #06070d;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0, 240, 255, 0.05);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0, 240, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 31, 143, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(35, 40, 71, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 40, 71, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
  opacity: 0.5;
}
.hero-inner { position: relative; }
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--cyan);
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.grad-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 20px; color: var(--text-mute);
  max-width: 760px;
  margin: 0 0 36px;
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stats li {
  background: var(--surface);
  padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-mono);
  font-size: 32px; font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.hero-stats span {
  font-size: 13px; color: var(--text-mute);
}

/* ============================================================
   Countdown
   ============================================================ */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 540px;
  gap: 12px;
  margin: 0 0 36px;
}
.cd-block {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cd-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.cd-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 40px; font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 20px var(--cyan-glow);
}
.cd-lbl {
  display: block;
  font-size: 11px; font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: 90px 0;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 800;
}
h3 {
  font-size: 20px; font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.h-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 20px;
  font-weight: 700;
}
.h-eyebrow + p, .section-lead {
  font-size: 18px; color: var(--text-mute);
  max-width: 760px;
  margin: 0 0 48px;
}
.lead {
  font-size: 18px; color: var(--text-mute);
}
.lead strong, .lead em { color: var(--text); font-style: normal; }
.lead em { font-style: italic; }

/* ============================================================
   Grids
   ============================================================ */

.grid {
  display: grid; gap: 20px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 200ms, transform 200ms;
}
.card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}
.card-mark {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700;
  color: var(--magenta);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.card p {
  color: var(--text-mute);
  margin: 0;
}

/* product feat grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-feat {
  background: var(--surface);
  padding: 24px;
}
.product-feat p {
  color: var(--text-mute); margin: 0;
  font-size: 14px;
}

/* ============================================================
   Funnel
   ============================================================ */

.funnel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.funnel-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.funnel-row:last-child { border-bottom: none; }
.funnel-row:hover { background: var(--surface-2); }
.funnel-tier {
  font-family: var(--font-mono);
  font-weight: 700; font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.1em;
}
.funnel-name {
  font-size: 16px; color: var(--text);
}
.funnel-price {
  font-family: var(--font-mono);
  font-weight: 700; font-size: 18px;
  color: var(--magenta);
}
.funnel-comm {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--cyan);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.funnel-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 15px;
  color: var(--text-mute);
}
.funnel-note strong { color: var(--text); }
.funnel-disclaimer {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

/* funnel as table — header row */
.funnel-table .funnel-head {
  display: grid;
  grid-template-columns: 180px 1fr 180px 200px;
  gap: 24px;
  padding: 14px 28px;
  background: var(--surface-2);
  border-bottom: 2px solid var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.funnel-table .funnel-row {
  grid-template-columns: 180px 1fr 180px 200px;
  gap: 24px;
}
.funnel-table .funnel-tier {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0;
  text-transform: none;
}
.funnel-table .funnel-price {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}
.funnel-comm-cell {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--magenta);
}
.funnel-row-bundle {
  background: linear-gradient(90deg, rgba(0,240,255,0.08), rgba(255,31,143,0.08)) !important;
  border-top: 1px solid var(--cyan);
}
.funnel-row-bundle .funnel-tier { color: var(--gold); }

@media (max-width: 760px) {
  .funnel-table .funnel-head { display: none; }
  .funnel-table .funnel-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .funnel-table .funnel-tier {
    font-size: 16px; font-weight: 800;
  }
}

@media (max-width: 700px) {
  .funnel-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "tier price"
      "name name"
      "comm comm";
    gap: 8px;
  }
  .funnel-tier { grid-area: tier; }
  .funnel-name { grid-area: name; }
  .funnel-price { grid-area: price; text-align: right; }
  .funnel-comm { grid-area: comm; justify-self: start; }
}

/* ============================================================
   Contest
   ============================================================ */

.prize-grid { gap: 12px; }
.prize {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
}
.prize-rank {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.prize-amt {
  font-family: var(--font-mono);
  font-size: 26px; font-weight: 700;
  color: var(--text);
}
.prize-1 {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 216, 77, 0.2);
}
.prize-1 .prize-rank, .prize-1 .prize-amt { color: var(--gold); }
.prize-2 { border-color: #c9d4e3; }
.prize-2 .prize-rank, .prize-2 .prize-amt { color: #c9d4e3; }
.prize-3 { border-color: #d59b6d; }
.prize-3 .prize-rank, .prize-3 .prize-amt { color: #d59b6d; }

.contest-fine {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
}

/* contest section additions */
.contest-title {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0 0 12px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contest-subtitle {
  font-size: 28px;
  margin: 56px 0 12px;
  text-align: center;
  font-weight: 800;
  color: var(--magenta);
}
.prize-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.prize {
  padding: 32px 20px;
}
.prize-icon {
  font-size: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px var(--cyan-glow));
}
.prize-1 .prize-icon { filter: drop-shadow(0 0 16px rgba(255, 216, 77, 0.5)); }
.prize-rank {
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.prize-amt {
  font-size: 36px;
  margin-bottom: 16px;
}
.prize-extras {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
}

/* growing prize table */
.growing-table {
  margin: 40px 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gt-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(90deg, rgba(0,240,255,0.1), rgba(255,31,143,0.1));
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border-bottom: 1px solid var(--border-strong);
}
.gt-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.gt-row:last-child { border-bottom: none; }
.gt-row:hover { background: var(--surface-2); }
.gt-tier {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.gt-prize {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--magenta);
}
.gt-row-uncapped {
  background: linear-gradient(90deg, rgba(255,216,77,0.1), rgba(255,31,143,0.1));
  border-top: 2px solid var(--gold);
}
.gt-row-uncapped .gt-tier { color: var(--gold); font-size: 16px; }
.gt-uncapped {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-mute);
  font-size: 14px;
}

.contest-terms {
  margin-top: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.7;
}
.contest-terms strong { color: var(--text); }

@media (max-width: 700px) {
  .gt-head, .gt-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 18px; }
  .gt-head > div:first-child,
  .gt-row > div:first-child { grid-column: 1 / -1; padding-bottom: 4px; }
  .prize-amt { font-size: 32px; }
}

/* ============================================================
   Timeline
   ============================================================ */

.timeline {
  list-style: none; padding: 0; margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
}
.timeline li {
  position: relative;
  padding: 0 0 28px 56px;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 9px; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--cyan);
}
.timeline li.t-highlight::before {
  background: var(--magenta);
  border-color: var(--magenta);
  box-shadow: 0 0 12px var(--magenta-glow);
  width: 18px; height: 18px;
  left: 8px;
}
.t-when {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.t-highlight .t-when { color: var(--magenta); }
.t-what {
  font-size: 16px; color: var(--text-mute);
}
.t-what strong { color: var(--text); }

/* ============================================================
   Andrew bio
   ============================================================ */

.bio {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.bio-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #06070d;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}
.bio-body p {
  margin: 0 0 12px;
  color: var(--text-mute);
}
.bio-body strong { color: var(--text); }
.bio-body p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .bio { grid-template-columns: 1fr; text-align: center; }
  .bio-photo { margin: 0 auto; }
}

/* vendor stats + reciprocation */
.vendor-name {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0 0 16px;
  font-weight: 800;
}
.vendor-lead { max-width: 760px; margin-bottom: 36px; }
.vendor-stats {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.vendor-stats li {
  background: var(--surface);
  padding: 32px 20px;
  text-align: center;
}
.vendor-stats strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.vendor-stats span {
  font-size: 13px;
  color: var(--text-mute);
}
.vendor-meaning {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--magenta);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.7;
}
.vendor-meaning strong { color: var(--text); }

.recip-list, .check-list {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.recip-list li, .check-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
}
.recip-list li:last-child, .check-list li:last-child { border-bottom: none; }
.recip-list li::before, .check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #06070d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

/* dual-CTA layout */
.dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

/* vendor portrait — Andrew's photo + intro */
.vendor-portrait {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.vendor-portrait img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 30px var(--cyan-glow);
}
.vendor-portrait p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
@media (max-width: 640px) {
  .vendor-portrait { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .vendor-portrait img { margin: 0 auto; width: 180px; height: 180px; }
}

/* leaderboard proof figure */
.leaderboard-proof {
  margin: 32px 0 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.leaderboard-proof img {
  width: 100%;
  height: auto;
  display: block;
}
.leaderboard-proof figcaption {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-mute);
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* partnership grid — magazine award + checklist side-by-side */
.partnership-title { font-size: clamp(24px, 3.5vw, 36px); margin: 0 0 8px; font-weight: 800; }
.partnership-lead { margin-bottom: 36px; }
.partnership-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}
.motm-figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.motm-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}
@media (max-width: 820px) {
  .partnership-grid { grid-template-columns: 1fr; }
  .motm-figure { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   Signup CTA
   ============================================================ */

.section-cta {
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(255, 31, 143, 0.2), transparent 70%),
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(0, 240, 255, 0.15), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}
.section-cta .lead {
  font-size: 18px; margin-bottom: 36px;
}
.contact {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-dim);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 18px 22px;
  cursor: pointer;
}
.faq[open] {
  border-color: var(--cyan);
}
.faq summary {
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--cyan);
  font-weight: 400;
  transition: transform 200ms;
}
.faq[open] summary::after { content: '−'; }
.faq p {
  margin: 14px 0 0;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--cyan); }

/* ============================================================
   Print fallback
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
