/* GENERATED by build-founding-bundle.sh - DO NOT EDIT BY HAND.
   Sources (cascade order): _figtree-fontface.css waitlist.css join.css founding.css
   Edit a source then re-run the script. */

/* ==================== _figtree-fontface.css ==================== */
/* Self-hosted Figtree (variable, weights 300-700). Replaces the render-blocking
   fonts.googleapis.com request on the founding pages. woff2 files in assets/fonts/figtree/.
   Two subsets mirror Google's split; one variable file each covers the whole weight axis. */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/figtree/figtree-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/figtree/figtree-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==================== waitlist.css ==================== */
:root {
  --color-bg: #0A0A0A;
  --color-card: #141414;
  --color-border: #262626;
  --color-text: #FFFFFF;
  --color-text-dim: #A3A3A3;
  --color-text-faded: #737373;
  --color-accent: #7C3AED;
  --color-accent-soft: rgba(124, 58, 237, 0.1);
  --font-family: 'Figtree', system-ui, -apple-system, sans-serif;
}

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

html {
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--color-text);
}

.logo-tm {
  font-size: 8px;
  color: #404040;
  font-weight: 300;
  margin-left: 1px;
  vertical-align: super;
}

.logo .ai-highlighter {
  background: linear-gradient(to right, #4DF6FF, #7E7BFF, #FF64F9, #7E7BFF, #4DF6FF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  display: inline-block;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.eyebrow-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text-faded);
}

/* Hero Section */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 100px 0;
  }
}

.sticky-side {
  position: relative;
}

@media (min-width: 1024px) {
  .sticky-side {
    position: sticky;
    top: 40px;
  }
}

.batch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  background-color: #1A1A1A;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pulse {
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.7;
}

.hero-desc {
  font-size: 18px;
  color: var(--color-text-dim);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .feature-list.feature-list--single {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 12px;
  color: var(--color-accent);
  margin-top: 4px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
}

.feature-text {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-top: 2px;
}

/* Proof */
.social-proof {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.avatar-stack {
  display: flex;
  margin-bottom: 12px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  background-color: var(--color-accent);
  margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.proof-text {
  font-size: 14px;
  font-weight: 600;
}

.proof-subtext {
  font-size: 12px;
  color: var(--color-text-faded);
  margin-top: 4px;
}

/* Form Card */
.form-card {
  background-color: #181818;
  border: 1px solid rgba(126, 123, 255, 0.28);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 0 0 1px rgba(126, 123, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 100px -30px rgba(126, 123, 255, 0.45);
  position: relative;
}

.step-header {
  margin-bottom: 24px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--color-text-dim);
}

/* Inputs */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-dim);
}

label span {
  color: #EF4444;
}

input, textarea, select {
  width: 100%;
  background-color: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent-soft);
}

::placeholder {
  color: #525252;
}

/* Chips */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-dim);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover {
  border-color: var(--color-text-dim);
}

.chip.active {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
  font-weight: 600;
}

/* Button */
.btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background-color: var(--color-text);
  color: var(--color-bg);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:hover:not(:disabled) {
  opacity: 0.9;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-faded);
  text-decoration: underline;
  font-size: 12px;
  margin-top: 12px;
}

/* Success State */
.success-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: #10B981;
}

.referral-box {
  background-color: #1A1A1A;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
  text-align: left;
}

.referral-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-text-faded);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.referral-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  word-break: break-all;
  margin-bottom: 12px;
}

/* Progress Bar */
.progress-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-border);
  color: var(--color-text-faded);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle.active {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.step-circle.done {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.progress-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-border);
}

/* Countdown + Leaderboard row */
.countdown-leaderboard-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .countdown-leaderboard-row {
    flex-direction: row;
    align-items: stretch;
  }

  .countdown-leaderboard-row .countdown-box {
    flex-shrink: 0;
  }

  .countdown-leaderboard-row .leaderboard-box {
    flex: 1;
    min-width: 0;
  }
}

/* Countdown — compact, stacked */
.countdown-box {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 12px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.countdown-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.countdown-val {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}

.countdown-unit {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--color-text-faded);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.countdown-sep {
  color: var(--color-text-faded);
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
}

/* Leaderboard */
.leaderboard-box {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--color-border);
}

.leaderboard-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--color-accent);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.leaderboard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leaderboard-text {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.leaderboard-text strong {
  font-weight: 600;
}

.leaderboard-text span {
  color: var(--color-text-faded);
}

.leaderboard-footer {
  padding: 6px 12px;
  text-align: center;
  font-size: 11px;
  color: var(--color-text-faded);
  position: relative;
}

.leaderboard-footer::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--color-card));
  pointer-events: none;
}

.error-banner {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.hidden { display: none !important; }

/* ==================== join.css ==================== */
/* ─── join.css ─────────────────────────────────────────────────────────────────
   Page-specific styles for join.html landing page.
   Loaded AFTER style.css and waitlist.css to reconcile variables and add
   section-specific components.
   ──────────────────────────────────────────────────────────────────────────── */

/* ── Button width fix ────────────────────────────────────────────────────────
   waitlist.css sets .btn { width: 100% } which bleeds to ALL buttons on the
   page. Override to auto everywhere except inside the actual form card.
   ──────────────────────────────────────────────────────────────────────────── */
.btn {
  width: auto;
}

/* Form submit buttons should stay full-width */
.form-card .btn,
.form-card .oauth-btn {
  width: 100%;
}

/* Restore .btn-primary / .btn-secondary colors — waitlist.css .btn { background-color: var(--color-text) }
   overrides both (equal specificity, later file wins). Fix: re-assert here in join.css (loads last). */
.btn-primary {
  background-color: var(--cta-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(126, 123, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 123, 255, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--cta-primary);
  color: var(--cta-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: rgba(126, 123, 255, 0.1);
  color: var(--cta-primary);
  transform: translateY(-2px);
}

/* ── Variable reconciliation ─────────────────────────────────────────────────
   waitlist.css defines its own :root variables that conflict with style.css.
   Override them so the embedded waitlist form uses the main site palette.
   ──────────────────────────────────────────────────────────────────────────── */
:root {
  --color-bg: #080B0E;
  --color-card: #131415;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #FCFCFC;
  --color-text-dim: rgba(252, 252, 252, 0.7);
  --color-text-faded: rgba(252, 252, 252, 0.5);
  --color-accent: #7E7BFF;
  --color-accent-soft: rgba(126, 123, 255, 0.1);
}

/* Reset waitlist.css body/h1 bleed — main site values win */
body {
  background-color: var(--bg-ink);
  color: var(--text-snow);
  font-family: var(--font-body);
}

/* Prevent orphan words in all headings on this page */
h1, h2, h3 {
  text-wrap: balance;
}

/* Scope waitlist h1 override so it doesn't affect the page's other h1s */
.waitlist-embed h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.waitlist-embed h1 em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.7;
}

/* ── Step number circles (Section 3: How to Join) ────────────────────────── */
.step-number-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-snow);
  margin: 0 auto 28px;
}

.step-connector {
  flex: 0 0 48px;        /* fixed narrow width, not flex: 1 */
  height: 1px;
  background-color: rgba(255, 255, 255, 0.10);
  margin-top: 56px;      /* vertically aligns with centre of the step circle */
  align-self: flex-start;
}

.steps-row {
  display: flex;
  align-items: stretch;  /* equal-height cards */
  gap: 0;
}

.steps-row .step-card {
  flex: 1;
  text-align: center;
  padding: 52px 40px;
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector {
    display: none;
  }
  .steps-row .step-card {
    padding: 32px 24px;
  }
}

/* ── Static chips (Section 4: Industries) ────────────────────────────────── */
.chip--static {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--text-faded);
  font-size: 13px;
  cursor: default;
  pointer-events: none;
  font-family: var(--font-body);
}

/* ── Product card images (Section 7) ─────────────────────────────────────── */
.product-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

.product-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: var(--bg-off-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-card-body {
  padding: 24px;
}

.product-card-body .sol-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cta-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 14px;
  color: var(--text-faded);
  line-height: 1.6;
}

/* ── Waitlist embed section ──────────────────────────────────────────────── */
.waitlist-embed-section {
  background: radial-gradient(circle at center, #1a1d26 0%, #080B0E 70%);
  padding: var(--space-4xl) 0;
}

/* Make the waitlist's hero-grid work inside the embed wrapper */
.waitlist-embed .hero-grid {
  padding: 0;
}

/* ── Inline CTA banner ───────────────────────────────────────────────────── */
.inline-cta {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.inline-cta .btn-primary {
  display: inline-flex;
  width: auto;
  padding: 14px 32px;
}

/* ── Role cards (Section 4) ──────────────────────────────────────────────── */
.role-card {
  padding: 24px;
  background-color: var(--bg-off-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  transition: border-color 0.3s;
}

.role-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.role-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.role-card p {
  font-size: 14px;
  color: var(--text-faded);
  line-height: 1.5;
}

/* ── Use case cards (Section 5) ──────────────────────────────────────────── */
.use-case-card {
  padding: 32px;
  background-color: var(--bg-off-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  transition: border-color 0.3s;
}

.use-case-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.use-case-stat {
  font-size: 28px;
  font-weight: 700;
  color: var(--cta-primary);
  margin-bottom: 12px;
  font-family: var(--font-head);
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 14px;
  color: var(--text-faded);
  line-height: 1.6;
}

/* ── Guarantee callout (Section 9) ───────────────────────────────────────── */
.guarantee-callout {
  text-align: center;
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.guarantee-callout h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.guarantee-callout p {
  font-size: 16px;
  color: var(--text-faded);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Toast notification ──────────────────────────────────────────────────── */
.signup-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  background-color: var(--bg-off-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 40px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 360px;
  pointer-events: auto;
  animation: toast-in 0.4s ease-out forwards;
}

.signup-toast.hiding {
  animation: toast-out 0.3s ease-in forwards;
}

.signup-toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--cta-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.signup-toast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signup-toast-text {
  font-size: 13px;
  color: var(--text-snow);
  line-height: 1.4;
}

.signup-toast-text strong {
  font-weight: 600;
}

.signup-toast-time {
  font-size: 11px;
  color: var(--text-faded);
  margin-top: 2px;
}

.signup-toast-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-faded);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
}

.signup-toast-close:hover {
  color: var(--text-snow);
}

@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes toast-out {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 480px) {
  .signup-toast {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 12px;
  }
}

/* ── FAQ width constraint ─────────────────────────────────────────────────── */
#faq .container {
  max-width: 720px;
}

/* ── Waitlist embed h1 — smaller so no orphan words ─────────────────────── */
.waitlist-embed .sticky-side h1 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ── Dave card (frosted-apple) fixes ─────────────────────────────────────── */
.join-dave-section .frosted-apple {
  max-width: 780px;
  align-items: flex-start;
  gap: 28px;
  margin-top: 0;
}

.join-dave-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.join-dave-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.join-dave-content {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.join-dave-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.join-dave-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.join-dave-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.join-dave-btns .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.join-dave-btns .btn-ghost-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.join-dave-btns .btn-ghost-link:hover {
  color: rgba(255,255,255,0.8);
}

/* ── Step cards — better text sizing ─────────────────────────────────────── */
.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-faded);
}

/* ── Section 9 stats — 4-column on desktop, 2-column on mobile ──────────── */
.stats-4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 640px) {
  .stats-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  /* Let the gradient span wrap on small screens to prevent overflow */
  .ai-highlighter {
    white-space: normal !important;
  }
}

/* ── Section spacing overrides ───────────────────────────────────────────── */
.join-section {
  padding: var(--space-4xl) 0;
}

.join-section--alt {
  background: var(--bg-off-black);
}

/* ==================== founding.css ==================== */
/* ─── Founding-access funnel ──────────────────────────────────────────────────
   Live price-ladder widget + 2-step (sign up → checkout) funnel.
   Reuses style.css tokens + waitlist.css form/card styles; only adds what's new. */

/* ── Live ladder widget ─────────────────────────────────────────────────────── */

.ladder-widget {
  background: var(--bg-off-black);
  border: 1px solid rgba(126, 123, 255, 0.28);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-xl);
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(126, 123, 255, 0.06), 0 18px 60px -28px rgba(126, 123, 255, 0.5);
}

.ladder-widget.is-loading { opacity: 0.55; }
.ladder-widget.is-soldout { border-color: rgba(255, 79, 79, 0.4); }

.ladder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta-primary);
  margin-bottom: var(--space-md);
}
.ladder-eyebrow .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(0, 255, 155, 0.6);
  animation: ladder-pulse 2s infinite;
}
@keyframes ladder-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 255, 155, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(0, 255, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 155, 0); }
}

.ladder-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.ladder-price {
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-snow);
  letter-spacing: -1.5px;
}
.ladder-price .ccy { font-size: 18px; font-weight: 600; color: var(--text-faded); margin-left: 6px; letter-spacing: 0; }
.ladder-tagline { font-size: 14px; color: var(--text-faded); margin: 0 0 var(--space-md); line-height: 1.5; }

.ladder-bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(252, 252, 252, 0.08);
  overflow: hidden;
  margin-bottom: 10px;
}
.ladder-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--grad-ai-highlighter);
  background-size: 200% 100%;
  width: 0%;
  transition: width 0.6s ease;
}

.ladder-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-faded);
}
.ladder-meta strong { color: var(--text-snow); font-weight: 700; }
.ladder-spots strong { color: var(--cta-primary); }

/* compact variant inside the form column */
.ladder-widget--compact { padding: var(--space-md) var(--space-lg); max-width: none; }
.ladder-widget--compact .ladder-price { font-size: 40px; }

/* ── Promo video slot ───────────────────────────────────────────────────────── */

.founding-video {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--grad-purple-surface);
  border: 1px solid var(--color-border, rgba(252, 252, 252, 0.1));
}
.founding-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Per-entity (operator) intro: a circular portrait the video fills (object-fit: cover). */
.founding-video--circle {
  aspect-ratio: 1 / 1;
  max-width: 380px;
  border-radius: 50%;
}
.founding-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-faded); text-align: center; padding: 24px;
}
.founding-video-placeholder .play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(126, 123, 255, 0.18);
  border: 1px solid var(--cta-primary);
  display: flex; align-items: center; justify-content: center;
}

/* ── OAuth buttons (step 1) ─────────────────────────────────────────────────── */

.oauth-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-md); }
.btn-oauth {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 16px;
  background: #fff; color: #1a1a1a;
  border: 1px solid rgba(252, 252, 252, 0.15);
  border-radius: var(--radius-btn);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn-oauth:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-oauth svg { width: 18px; height: 18px; }

.funnel-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-faded); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  margin: var(--space-md) 0;
}
.funnel-divider::before, .funnel-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(252, 252, 252, 0.12);
}

/* ── Checkout (step 2) ──────────────────────────────────────────────────────── */

.order-summary {
  background: var(--bg-off-black);
  border: 1px solid rgba(126, 123, 255, 0.28);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.order-summary-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.order-summary-row + .order-summary-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(252, 252, 252, 0.08); }
.order-summary-label { color: var(--text-faded); font-size: 14px; }
.order-summary-value { color: var(--text-snow); font-weight: 600; }
.order-summary-total { font-size: 28px; font-weight: 700; color: var(--text-snow); letter-spacing: -0.5px; }
.order-locked { font-size: 12px; color: var(--success); margin-top: 8px; display: inline-flex; gap: 6px; align-items: center; }

.btn-back {
  background: none; border: none; color: var(--text-faded);
  font-family: var(--font-body); font-size: 13px; cursor: pointer; margin-top: 14px; width: 100%;
}
.btn-back:hover { color: var(--text-snow); }

.btn-block { width: 100%; }

/* ── Thank-you ──────────────────────────────────────────────────────────────── */

.thanks-card { max-width: 520px; margin: 0 auto; text-align: center; }
.founder-number {
  font-size: 72px; font-weight: 700; line-height: 1; color: var(--cta-primary);
  letter-spacing: -2px; margin: var(--space-md) 0;
}
