:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-alt: #eef2f8;
  --panel: rgba(255, 255, 255, 0.9);
  --border: rgba(38, 92, 168, 0.18);
  --blue: #2a6cff;
  --navy: #0e3b7a;
  --red: #ff3b4d;
  --white: #ffffff;
  --text: #0e1b2e;
  --muted: rgba(18, 32, 52, 0.6);
  --glow: rgba(54, 120, 255, 0.18);
  --shadow: 0 24px 48px rgba(15, 30, 52, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
}

button,
input,
select,
textarea {
  font-family: "Space Grotesk", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(15, 30, 52, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 30, 52, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  inset: -40% 0 0;
  background: radial-gradient(circle at 25% 20%, rgba(56, 125, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 90, 105, 0.16), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(24, 88, 168, 0.18), transparent 65%);
  pointer-events: none;
  z-index: -3;
}

.compliance-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(14, 30, 52, 0.1);
  color: var(--navy);
}

.compliance-bar span {
  white-space: nowrap;
}

.compliance-bar .muted {
  text-transform: none;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-logo {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(26, 105, 255, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
}

.nav-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--blue), var(--red));
  color: #fff;
  box-shadow: 0 12px 26px rgba(42, 108, 255, 0.28);
}

.btn.ghost {
  border-color: rgba(14, 30, 52, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 30, 52, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 40px 0 20px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 12px 0 16px;
}

.text-gradient {
  background: linear-gradient(120deg, #0f2f63, #2a6cff 45%, #ff3b4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-focus {
  max-width: 100%;
  width: 100%;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-shell {
  width: min(420px, 90vw);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(232, 238, 249, 0.9));
  border: 1px solid rgba(14, 30, 52, 0.12);
  box-shadow: 0 24px 50px rgba(15, 30, 52, 0.18);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.bullet {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 8px;
  align-content: start;
}

.bullet-icon {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
}

.bullet h4 {
  margin: 0 0 6px;
}

.bullet p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-cards,
.hero-media {
  width: 100%;
}

.bullet-product {
  border-color: rgba(42, 108, 255, 0.3);
  background: linear-gradient(135deg, rgba(226, 235, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.bullet-revenue {
  border-color: rgba(255, 59, 77, 0.25);
  background: linear-gradient(135deg, rgba(255, 230, 234, 0.9), rgba(255, 255, 255, 0.95));
}

.bullet-raise {
  border-color: rgba(14, 30, 52, 0.18);
  background: linear-gradient(135deg, rgba(240, 244, 252, 0.95), rgba(255, 255, 255, 0.95));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.microcopy {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.deck-preview-shell {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.95));
  padding: 14px;
  box-shadow: 0 20px 40px rgba(15, 30, 52, 0.12);
}

.deck-preview-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(14, 30, 52, 0.08);
}

.lead-magnet {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(42, 108, 255, 0.22);
  background: linear-gradient(135deg, rgba(232, 238, 249, 0.95), rgba(255, 255, 255, 0.95));
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 36px rgba(15, 30, 52, 0.14);
}

.lead-magnet h3 {
  margin: 6px 0 10px;
}

.lead-magnet p {
  margin: 0;
  color: var(--muted);
}

.lead-magnet-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--navy);
}

.lead-magnet-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vsl-card,
.hero-card,
.feature-card,
.deal-card,
.engine-card,
.raise-card,
.metric-card,
.split-card,
.how-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.vsl-card {
  padding: 20px;
}

.vsl-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vsl-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.vsl-frame {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 10, 24, 0.6);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-video {
  width: 100%;
  height: auto;
  display: block;
}

.vsl-video-shell {
  width: 100%;
  position: relative;
}

.vsl-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vsl-audio-toggle,
.vsl-play-toggle {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 12, 20, 0.8);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.vsl-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.vsl-video-shell:hover .vsl-controls,
.vsl-video-shell.is-active .vsl-controls,
.vsl-video-shell.needs-interaction .vsl-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-2px);
}

.hero-card {
  padding: 20px;
}

.engine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.engine-list span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mockup-carousel {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.mockup-viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: default;
}

.mockup-track {
  display: flex;
  gap: 0;
  transition: transform 0.35s ease;
  touch-action: pan-y;
}

.mockup-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  height: auto;
  object-fit: contain;
  display: block;
  background: #0b1220;
}

.mockup-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.mockup-tab {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  pointer-events: auto;
}

.mockup-tab.is-active {
  background: linear-gradient(120deg, var(--blue), var(--red));
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(42, 108, 255, 0.35);
}

.mockup-caption {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.promo {
  padding: 30px 0 10px;
}

.promo-tabs {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.section {
  padding: 50px 0 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 10px;
}

.section-header p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 720px;
}

.feature-grid,
.deal-grid,
.engine-grid,
.raise-grid,
.metric-grid,
.split-grid,
.how-steps {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.deal-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.listing-carousel {
  display: grid;
  gap: 16px;
}

.listing-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.listing-nav {
  padding: 8px 16px;
}

.listing-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.listing-viewport::-webkit-scrollbar {
  display: none;
}

.listing-viewport:active {
  cursor: grabbing;
}

.listing-track {
  display: flex;
  gap: 16px;
  padding-bottom: 6px;
}

.listing-card {
  flex: 0 0 clamp(260px, 70vw, 360px);
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(15, 30, 52, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.listing-image {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  color: #0e1b2e;
  font-weight: 600;
}

.listing-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}

.listing-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.listing-body h3 {
  margin: 0;
}

.listing-body p {
  margin: 0;
  color: var(--muted);
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--navy);
}

.listing-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(14, 30, 52, 0.06);
}

.listing-image span {
  position: relative;
  z-index: 1;
  margin: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0e1b2e;
  font-size: 12px;
  border: 1px solid rgba(14, 30, 52, 0.12);
}

.investing-section .section-header {
  margin-bottom: 18px;
}

.investing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.investing-stack {
  display: grid;
  gap: 16px;
}

.investing-card {
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(15, 30, 52, 0.12);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.investing-card h3 {
  margin: 0;
}

.investing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.investing-graphic {
  display: grid;
  gap: 12px;
}

.deal-flow {
  border-radius: 18px;
  border: 1px dashed rgba(14, 30, 52, 0.2);
  background: linear-gradient(135deg, rgba(80, 120, 200, 0.12), rgba(255, 160, 120, 0.18));
  padding: 18px;
  display: grid;
  gap: 16px;
  --deal-accent: var(--blue);
}

.deal-flow-steps {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 6px;
}

.deal-flow-rail,
.deal-flow-progress {
  position: absolute;
  left: 8px;
  top: 10px;
  width: 2px;
  border-radius: 999px;
  z-index: 0;
}

.deal-flow-rail {
  bottom: 10px;
  background: rgba(14, 30, 52, 0.14);
}

.deal-flow-progress {
  background: linear-gradient(180deg, var(--deal-accent), rgba(255, 59, 77, 0.5));
  height: 0;
  transition: height 0.4s ease;
  z-index: 1;
}

.deal-flow-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.deal-flow-step:focus-visible {
  outline: 2px solid rgba(42, 108, 255, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}

.deal-flow-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(14, 30, 52, 0.3);
  background: #fff;
  margin-top: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.deal-flow-title {
  font-weight: 600;
  display: block;
}

.deal-flow-caption {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.deal-flow-step.is-active .deal-flow-node {
  background: var(--deal-accent);
  border-color: var(--deal-accent);
  box-shadow: 0 0 0 6px rgba(42, 108, 255, 0.18);
  transform: scale(1.1);
}

.deal-flow-step.is-active .deal-flow-title {
  color: var(--navy);
}

.deal-flow-detail {
  border-radius: 14px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  display: grid;
  gap: 6px;
  min-height: 130px;
}

.deal-flow-detail-eyebrow {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .investing-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 20px;
}

.engine-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.engine-card,
.deal-card,
.raise-card,
.metric-card,
.split-card,
.how-card {
  padding: 22px;
}

.flywheel-section .section-header {
  margin-bottom: 22px;
}

.flywheel-visual {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(42, 108, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 48px rgba(15, 30, 52, 0.16);
  color: var(--text);
}

.flywheel-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  margin-bottom: 18px;
}

.flywheel-image-inline {
  display: none;
  margin: 12px 0;
}

.flywheel-visual .engine-grid {
  margin-bottom: 18px;
}

.flywheel-visual .engine-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 30, 52, 0.12);
  backdrop-filter: none;
}

.flywheel-visual .callout {
  background: rgba(240, 244, 252, 0.9);
  border-color: rgba(14, 30, 52, 0.12);
  color: var(--text);
}

.flywheel-visual .flywheel-callout {
  margin-top: -6px;
  margin-bottom: 18px;
}

.engine-card ul,
.deal-card ul,
.raise-card ul,
.split-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.deal-card p {
  color: var(--muted);
}

.deal-callout {
  background: rgba(42, 108, 255, 0.08);
  border: 1px solid rgba(42, 108, 255, 0.2);
}

.deal-tag-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deal-tag-row span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 30, 54, 0.08);
  font-size: 12px;
  color: var(--navy);
  border: 1px solid rgba(14, 30, 54, 0.12);
}

.engine-visual {
  width: 100%;
  height: auto;
  display: block;
  margin: 12px 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 20, 0.6);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.callout {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--muted);
}

.raise-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.seed-raise .section-header {
  margin-bottom: 26px;
}

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

.seed-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 30, 52, 0.12);
  color: var(--text);
}

.seed-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.seed-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.seed-terms ul {
  font-size: 16px;
}

.seed-terms li {
  color: var(--text);
}

.seed-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  margin-right: 10px;
}

.seed-note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-left: 20px;
}

.seed-funds-header p {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 18px;
}

.seed-funds-body {
  display: grid;
  gap: 18px;
}

.seed-bar-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--muted);
}

.seed-label-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seed-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.seed-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.seed-icon-teal {
  color: #38b2ac;
}

.seed-icon-purple {
  color: #9f7aea;
}

.seed-icon-gold {
  color: #ecc94b;
}

.seed-icon-blue {
  color: #4299e1;
}

.seed-pill {
  display: grid;
  grid-template-columns: 30% 25% 34% 11%;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 18, 0.8);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.35);
}

.seed-pill-segment {
  padding: 16px 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0c1220;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.seed-teal {
  background: rgba(56, 178, 172, 0.9);
}

.seed-purple {
  background: rgba(159, 122, 234, 0.9);
}

.seed-gold {
  background: rgba(236, 201, 75, 0.9);
}

.seed-blue {
  background: rgba(66, 153, 225, 0.9);
}

.seed-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.seed-detail {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.65);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 6px;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.seed-detail-value {
  font-size: 22px;
  font-weight: 700;
}

.seed-detail-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seed-detail-note {
  font-size: 12px;
  color: var(--muted);
}

.seed-pill-segment.is-active {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.seed-detail.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.seed-detail.seed-teal.is-active {
  border-color: rgba(56, 178, 172, 0.6);
  box-shadow: 0 20px 40px rgba(56, 178, 172, 0.25);
}

.seed-detail.seed-purple.is-active {
  border-color: rgba(159, 122, 234, 0.6);
  box-shadow: 0 20px 40px rgba(159, 122, 234, 0.25);
}

.seed-detail.seed-gold.is-active {
  border-color: rgba(236, 201, 75, 0.65);
  box-shadow: 0 20px 40px rgba(236, 201, 75, 0.25);
}

.seed-detail.seed-blue.is-active {
  border-color: rgba(66, 153, 225, 0.65);
  box-shadow: 0 20px 40px rgba(66, 153, 225, 0.25);
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric-card h4 {
  margin: 0 0 6px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.faq-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(15, 30, 52, 0.12);
  color: var(--text);
  min-height: 100%;
}

.faq-card h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 1200px) {
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.measure {
  display: grid;
  gap: 18px;
}

.measure-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.measure-tab {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(14, 30, 52, 0.28);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(14, 30, 52, 0.8);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.measure-tab.is-active,
.measure-tab:hover {
  background: linear-gradient(120deg, rgba(42, 108, 255, 0.9), rgba(255, 59, 77, 0.85));
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(42, 108, 255, 0.3);
  transform: translateY(-2px);
}

.measure-panels {
  display: grid;
}

.measure-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.measure-panel.is-active {
  display: grid;
}

.measure-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(15, 30, 52, 0.12);
  color: var(--text);
}

.measure-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.measure-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.measure-kpi {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(42, 108, 255, 0.2);
  background: linear-gradient(135deg, rgba(228, 236, 252, 0.95), rgba(255, 245, 247, 0.95));
  box-shadow: 0 18px 40px rgba(15, 30, 52, 0.14);
  color: var(--text);
  display: grid;
  gap: 10px;
}

.measure-kpi-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.measure-kpi-value {
  font-size: 22px;
  font-weight: 700;
}

.measure-kpi-note {
  font-size: 13px;
  color: var(--muted);
}

.proof {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

.split-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.how-steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}

.cta-center {
  margin-top: 26px;
  text-align: center;
}

.footer {
  margin-top: 60px;
  padding: 40px 0 60px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  max-width: 820px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 30, 52, 0.22);
  opacity: 0;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
  transition: opacity 0.2s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}

.modal {
  width: min(880px, 94vw);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(14, 30, 52, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  color: var(--text);
}

.modal-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(14, 30, 52, 0.08);
}

.modal-subtitle {
  color: var(--muted);
  margin: 8px 0 0;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.iframe-shell {
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  padding: 18px;
  position: relative;
}

.iframe-placeholder {
  position: absolute;
  inset: 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  pointer-events: none;
}

.beta-form-frame {
  width: 100%;
  min-height: 520px;
  border: none;
  background: transparent;
  pointer-events: none;
}

.modal-overlay.is-open .beta-form-frame {
  pointer-events: auto;
}

.deck-carousel {
  display: grid;
  gap: 12px;
}

.deck-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 30, 52, 0.12);
  box-shadow: 0 16px 30px rgba(15, 30, 52, 0.14);
}

.deck-viewport:active {
  cursor: grabbing;
}

.deck-track {
  display: flex;
  gap: 0;
  transition: transform 0.35s ease;
  touch-action: pan-y;
}

.deck-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: #ffffff;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions,
  .footer-actions {
    justify-content: flex-start;
  }
  .brand-logo {
    width: 35px;
  }
  .nav-actions {
    width: 100%;
    flex-direction: column;
  }
  .nav-actions .btn {
    width: 100%;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .cta-row {
    flex-direction: column;
  }
  .cta-row .btn {
    width: 100%;
  }
  .lead-magnet {
    flex-direction: column;
    align-items: flex-start;
  }
  .lead-magnet-actions {
    width: 100%;
  }
  .lead-magnet-actions .btn {
    width: 100%;
  }
  .flywheel-image {
    display: none;
  }
  .flywheel-image-inline {
    display: block;
  }
  .investing-image {
    display: none;
  }
  .investing-image-mobile {
    display: block;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
  .hero-cards,
  .hero-media,
  .lead-magnet {
    grid-column: 1 / -1;
  }
  .mockup-carousel {
    max-width: 600px;
    margin-inline: auto;
  }
}
