:root {
  color-scheme: dark;
  --bg: #090d14;
  --bg-alt: #0f1724;
  --panel: rgba(14, 23, 36, 0.75);
  --border: rgba(74, 120, 198, 0.25);
  --blue: #2a6cff;
  --navy: #0c2e63;
  --red: #ff3b4d;
  --white: #f6f8ff;
  --text: #e5ebff;
  --muted: rgba(214, 224, 255, 0.7);
  --glow: rgba(48, 113, 255, 0.35);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* {
  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(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  inset: -40% 0 0;
  background: radial-gradient(circle at 25% 20%, rgba(46, 112, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 59, 77, 0.18), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(13, 57, 122, 0.35), 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(7, 10, 18, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.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 30px rgba(42, 108, 255, 0.35);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

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

.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, #ffffff, #6ea1ff 40%, #ff6672);
  -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: radial-gradient(circle at 30% 20%, rgba(47, 114, 255, 0.35), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255, 59, 77, 0.28), transparent 60%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

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

.bullet {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.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(50, 111, 255, 0.4);
  background: linear-gradient(135deg, rgba(14, 32, 70, 0.9), rgba(18, 28, 44, 0.7));
}

.bullet-revenue {
  border-color: rgba(255, 59, 77, 0.4);
  background: linear-gradient(135deg, rgba(60, 18, 32, 0.9), rgba(24, 18, 28, 0.7));
}

.bullet-raise {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(26, 34, 54, 0.9), rgba(14, 20, 32, 0.7));
}

.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;
}

.lead-magnet {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(66, 153, 225, 0.35);
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.88), rgba(16, 26, 46, 0.7));
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.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(--white);
}

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

.vsl-card,
.hero-card,
.feature-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,
.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));
}

.investing-visual {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 12, 22, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.investing-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.investing-image-mobile {
  display: none;
}

.feature-card {
  padding: 20px;
}

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

.engine-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(90, 140, 255, 0.28);
  background: linear-gradient(135deg, rgba(6, 10, 18, 0.78), rgba(10, 16, 28, 0.6));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.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(10, 16, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.flywheel-visual .callout {
  background: rgba(8, 14, 24, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

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

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

.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(255, 255, 255, 0.12);
  background: rgba(10, 16, 28, 0.75);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.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(--white);
}

.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));
}

.faq-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 14, 24, 0.7);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

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

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

.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(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  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(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.7);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.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(90, 140, 255, 0.35);
  background: linear-gradient(135deg, rgba(10, 16, 28, 0.85), rgba(16, 24, 40, 0.65));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  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(5, 8, 14, 0.75);
  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: #0c1220;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 0.1);
  background: rgba(9, 13, 23, 0.8);
  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;
}

.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;
  }
}
