html {
  margin: 0;
  background: #f8faff;
  scroll-behavior: smooth;
}

body.marketing-page {
  margin: 0;
}

img,
svg {
  max-width: 100%;
}

.marketing-page {
  --marketing-bg: #f8faff;
  --marketing-surface: #ffffff;
  --marketing-text: #07111f;
  --marketing-muted: #697386;
  --marketing-line: #e8edf6;
  --marketing-primary: #2563eb;
  --marketing-primary-strong: #315cf6;
  --marketing-accent: #6d3df2;
  --marketing-success: #17b886;
  --marketing-danger: #ef4c5a;
  --marketing-warning: #f5b83d;
  --marketing-preview-sidebar-bg: #09101f;
  --marketing-shadow: 0 24px 70px rgba(20, 35, 70, 0.14);
  --marketing-soft-shadow: 0 14px 44px rgba(20, 35, 70, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

.marketing-page {
  margin: 0;
  background:
    radial-gradient(circle at 4% 92%, rgba(37, 99, 235, 0.08), transparent 20%),
    radial-gradient(circle at 88% 90%, rgba(124, 58, 237, 0.06), transparent 22%),
    var(--marketing-bg);
  color: var(--marketing-text);
}

.marketing-page a {
  color: inherit;
  text-decoration: none;
}

.marketing-page button {
  font: inherit;
}

.marketing-page .page-shell {
  min-height: 100vh;
  padding: 48px 42px 64px;
  overflow: hidden;
}

.marketing-page .site-header {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 28px;
  max-width: 1510px;
  margin: 0 auto;
}

.marketing-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.marketing-page .brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.marketing-page .desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  color: #0e1726;
  font-size: 15px;
  font-weight: 650;
}

.marketing-page .desktop-nav a,
.marketing-page .login-link {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.marketing-page .desktop-nav a:hover,
.marketing-page .login-link:hover {
  color: var(--marketing-primary);
  transform: translateY(-1px);
}

.marketing-page .chevron {
  margin-left: 7px;
  font-size: 14px;
}

.marketing-page .header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
}

.marketing-page .primary-button,
.marketing-page .secondary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.marketing-page .primary-button {
  padding: 0 25px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #7442f3 100%);
  box-shadow: 0 14px 28px rgba(50, 88, 238, 0.28);
}

.marketing-page .primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(50, 88, 238, 0.34);
}

.marketing-page .primary-button.small {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
}

.marketing-page .secondary-button {
  min-width: 228px;
  padding: 0 24px;
  color: #111827;
  background: #fff;
  border: 1px solid #dce3ef;
  box-shadow: 0 10px 24px rgba(20, 35, 70, 0.04);
}

.marketing-page .secondary-button:hover {
  transform: translateY(-2px);
  border-color: #c9d4e5;
}

.marketing-page .play-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--marketing-primary);
  color: #fff;
  font-size: 9px;
  padding-left: 1px;
}

.marketing-page .hero-section {
  max-width: 1510px;
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(680px, 1.35fr);
  align-items: center;
  gap: 78px;
}

.marketing-page .hero-copy {
  padding-top: 18px;
}

.marketing-page .eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border-radius: 14px;
  border: 1px solid #dfe6f4;
  background: rgba(255, 255, 255, 0.82);
  color: #405276;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(20, 35, 70, 0.05);
}

.marketing-page .mini-chart {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--marketing-primary);
  font-weight: 900;
}

.marketing-page .hero-copy h1 {
  margin: 32px 0 22px;
  max-width: 560px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.marketing-page .hero-copy h1 span {
  display: block;
  color: var(--marketing-primary);
}

.marketing-page .hero-description {
  max-width: 565px;
  margin: 0;
  color: #626b7d;
  font-size: 21px;
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.marketing-page .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 44px;
  margin: 42px 0 34px;
  max-width: 610px;
}

.marketing-page .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1d2737;
  font-size: 16px;
  font-weight: 650;
}

.marketing-page .benefit-item span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--marketing-primary);
  border-radius: 999px;
  color: var(--marketing-primary);
  font-size: 11px;
  font-weight: 900;
}

.marketing-page .hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.marketing-page .trial-note {
  margin: 23px 0 0;
  color: #7b8495;
  font-size: 14px;
}

/* Dashboard preview */

.marketing-page .marketing-preview-frame {
  min-height: 650px;
  display: grid;
  grid-template-columns: 138px 1fr;
  border: 1px solid #dfe6f2;
  border-radius: 14px;
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow);
  overflow: hidden;
}

.marketing-page .marketing-preview-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 14px;
  background:
    radial-gradient(circle at 45% 4%, rgba(72, 85, 240, 0.2), transparent 22%),
    var(--marketing-preview-sidebar-bg);
  color: #cbd5e1;
}

.marketing-page .marketing-preview-sidebar-logo {
  width: 34px;
  height: 34px;
  margin: 0 0 22px 10px;
  border-radius: 10px;
}

.marketing-page .marketing-preview-nav {
  display: grid;
  gap: 7px;
}

.marketing-page .marketing-preview-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  color: #b8c2d6;
  font-size: 11px;
  font-weight: 700;
}

.marketing-page .marketing-preview-nav-item span {
  width: 15px;
  color: #94a3b8;
}

.marketing-page .marketing-preview-nav-item.active {
  background: rgba(55, 89, 236, 0.24);
  color: #8fb1ff;
}

.marketing-page .marketing-preview-profile {
  margin-top: auto;
  display: grid;
  grid-template-columns: 24px 1fr 10px;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
  color: #e5e7eb;
}

.marketing-page .marketing-preview-profile img {
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.marketing-page .marketing-preview-profile b {
  font-size: 11px;
  color: #94a3b8;
}

.marketing-page .marketing-preview-main {
  padding: 24px 24px 12px;
  background: #fff;
}

.marketing-page .marketing-preview-topbar,
.marketing-page .marketing-preview-rule-heading,
.marketing-page .marketing-preview-trades-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketing-page .marketing-preview-topbar h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.045em;
}

.marketing-page .marketing-preview-topbar p {
  margin: 5px 0 0;
  color: #7a8497;
  font-size: 11px;
  font-weight: 600;
}

.marketing-page .marketing-preview-filters {
  display: flex;
  gap: 13px;
}

.marketing-page .marketing-preview-filters button {
  height: 33px;
  border: 1px solid #e3e8f1;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font-size: 10px;
  font-weight: 650;
  padding: 0 13px;
}

.marketing-page .marketing-preview-rule-heading {
  margin-top: 28px;
  font-size: 12px;
}

.marketing-page .marketing-preview-link {
  color: #315cf6;
  font-size: 10px;
  font-weight: 800;
}

.marketing-page .marketing-preview-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 11px;
}

.marketing-page .marketing-preview-stat-card {
  padding: 18px 16px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 35, 70, 0.04);
}

.marketing-page .marketing-preview-stat-card p {
  margin: 0 0 10px;
  color: #111827;
  font-size: 10px;
  font-weight: 800;
}

.marketing-page .marketing-preview-stat-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.marketing-page .marketing-preview-stat-card h3 span {
  font-size: 10px;
}

.marketing-page .marketing-preview-stat-card small {
  display: block;
  margin-bottom: 5px;
  color: #7a8497;
  font-size: 9px;
  font-weight: 650;
}

.marketing-page .marketing-preview-stat-card strong {
  display: block;
  color: #111827;
  font-size: 12px;
  margin-bottom: 12px;
}

.marketing-page .progress-track {
  height: 5px;
  border-radius: 999px;
  background: #edf1f6;
  overflow: hidden;
}

.marketing-page .progress-fill {
  height: 100%;
  border-radius: inherit;
}

.marketing-page .progress-fill.amber {
  width: 70%;
}

.marketing-page .progress-fill.green {
  width: 62%;
}

.marketing-page .progress-fill.dailydd {
  width: 1%;
}

.marketing-page .progress-fill.drawdown {
  width: 100%;
}

.marketing-page .progress-fill.purple {
  width: 60%;
}

.marketing-page .marketing-preview-stat-card em {
  display: block;
  margin-top: 13px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.marketing-page .drawdown {
  color: var(--marketing-danger);
}

.marketing-page .dailydd {
  color: var(--marketing-danger);
}

.marketing-page .red {
  color: var(--marketing-danger);
}

.marketing-page .amber {
  color: var(--marketing-warning);
}

.marketing-page .green {
  color: var(--marketing-success);
}

.marketing-page .purple {
  color: var(--marketing-accent);
}

.marketing-page .progress-fill.dailydd {
  background: #ff9ea4;
}

.marketing-page .progress-fill.drawdown {
  background: #17B886;
}

.marketing-page .progress-fill.amber {
  background: #ffd36d;
}

.marketing-page .progress-fill.green {
  background: var(--marketing-success);
}

.marketing-page .progress-fill.purple {
  background: var(--marketing-accent);
}

.marketing-page .marketing-preview-analytics-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1.35fr;
  gap: 14px;
  margin-top: 18px;
}

.marketing-page .marketing-preview-panel {
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 35, 70, 0.035);
}

.marketing-page .marketing-preview-panel h3 {
  margin: 0;
  color: #172033;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.marketing-page .marketing-preview-equity-panel {
  padding: 18px 16px 14px;
}

.marketing-page .marketing-preview-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 4px;
  color: #4b5563;
  font-size: 9px;
  font-weight: 650;
}

.marketing-page .marketing-preview-line {
  width: 18px;
  height: 2px;
  display: inline-block;
  background: var(--marketing-primary);
}

.marketing-page .marketing-preview-line.dotted {
  border-top: 2px dashed #9db5ff;
  background: transparent;
}

.marketing-page .marketing-preview-equity-panel svg {
  width: 100%;
  height: 150px;
}

.marketing-page .marketing-preview-grid-lines line {
  stroke: #eff3f8;
  stroke-width: 1;
}

.marketing-page .marketing-preview-chart-fill {
  fill: rgba(37, 99, 235, 0.08);
}

.marketing-page .marketing-preview-chart-line {
  fill: none;
  stroke: #315cf6;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marketing-page .marketing-preview-chart-dotted {
  fill: none;
  stroke: #a3b7ff;
  stroke-width: 3;
  stroke-dasharray: 7 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marketing-page .marketing-preview-chart-dates {
  display: flex;
  justify-content: space-between;
  color: #667085;
  font-size: 8px;
  font-weight: 700;
}

.marketing-page .marketing-preview-performance-panel {
  padding: 18px 14px;
}

.marketing-page .marketing-preview-metric-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: #64748b;
  font-size: 10px;
  font-weight: 650;
}

.marketing-page .marketing-preview-metric-row strong {
  color: #111827;
}

.marketing-page .marketing-positive {
  color: var(--marketing-success) !important;
}

.marketing-page .marketing-negative {
  color: var(--marketing-danger) !important;
}

.marketing-page .marketing-preview-outcome-panel {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 8px 17px;
  padding: 18px 15px;
}

.marketing-page .marketing-preview-outcome-panel h3 {
  grid-column: 1 / -1;
}

.marketing-page .marketing-preview-donut {
  align-self: center;
  justify-self: center;
  width: 95px;
  height: 95px;
  border-radius: 999px;
  background: conic-gradient(
    var(--marketing-success) 0 62.5%,
    var(--marketing-danger) 62.5% 91.7%,
    #94a3b8 91.7% 100%
  );
  position: relative;
}

.marketing-page .marketing-preview-donut::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  background: #fff;
}

.marketing-page .marketing-preview-outcome-list {
  align-self: center;
  display: grid;
  gap: 13px;
}

.marketing-page .marketing-preview-outcome-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
}

.marketing-page .marketing-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.marketing-page .marketing-preview-dot.green {
  background: var(--marketing-success);
}

.marketing-page .marketing-preview-dot.red {
  background: var(--marketing-danger);
}

.marketing-page .marketing-preview-dot.gray {
  background: #94a3b8;
}

.marketing-page .marketing-preview-outcome-row strong {
  color: #172033;
}

.marketing-page .marketing-preview-outcome-total {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 10px;
}

.marketing-page .marketing-preview-outcome-total strong {
  color: #111827;
}

.marketing-page .marketing-preview-trades-panel {
  margin-top: 14px;
  padding: 16px 16px 5px;
}

.marketing-page .marketing-preview-trades-header {
  margin-bottom: 11px;
}

.marketing-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9px;
}

.marketing-page th,
.marketing-page td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f7;
  white-space: nowrap;
}

.marketing-page th {
  color: #64748b;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.marketing-page td {
  color: #111827;
  font-weight: 650;
}

.marketing-page .marketing-preview-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.marketing-page .marketing-preview-review-pill.reviewed {
  color: var(--marketing-success);
}

.marketing-page .marketing-preview-review-pill.pending {
  color: #d99118;
}

/* Feature strip */

.marketing-page .feature-strip {
  max-width: 1510px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.marketing-page .feature-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.marketing-page .feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 28px;
  font-weight: 900;
}

.marketing-page .feature-icon.blue {
  color: var(--marketing-primary);
  background: #edf2ff;
}

.marketing-page .feature-icon.green {
  color: var(--marketing-success);
  background: #eafaf4;
}

.marketing-page .feature-icon.purple {
  color: var(--marketing-accent);
  background: #f4efff;
}

.marketing-page .feature-icon.amber {
  color: #f59e0b;
  background: #fff5e6;
}

.marketing-page .feature-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.035em;
}

.marketing-page .feature-item p {
  margin: 0;
  color: #5f6b7d;
  font-size: 14px;
  line-height: 1.45;
}

/* Testimonial */

.marketing-page .testimonial-section {
  max-width: 930px;
  margin: 70px auto 0;
  text-align: center;
}

.marketing-page .community-heading {
  margin: 0 0 20px;
  color: #315cf6;
  font-size: 18px;
  font-weight: 850;
}

.marketing-page blockquote {
  margin: 0;
  padding: 22px 32px;
  border: 1px solid #e7ecf6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #2c3342;
  font-size: 21px;
  font-style: italic;
  line-height: 1.45;
  box-shadow: var(--marketing-soft-shadow);
}

.marketing-page .verified-row {
  margin-top: -17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: var(--marketing-bg);
  color: #687385;
  font-size: 13px;
  font-weight: 700;
}

.marketing-page .verified-row span {
  width: 28px;
  height: 1px;
  background: #9aa5b5;
}

.marketing-page .verified-row strong {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--marketing-primary);
  color: #fff;
  font-size: 10px;
}

/* Blank pages */

.marketing-page .blank-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
  background: var(--marketing-bg);
}

.marketing-page .blank-page h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  letter-spacing: -0.07em;
}

.marketing-page .blank-page p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 18px;
}

.marketing-page .back-link {
  width: fit-content;
  margin: 0 auto 12px;
  color: var(--marketing-primary);
  font-weight: 800;
}

/* Responsive */

@media (max-width: 1180px) {
  .marketing-page .page-shell {
    padding: 36px 24px 52px;
  }

  .marketing-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .marketing-page .desktop-nav {
    display: none;
  }

  .marketing-page .hero-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .marketing-page .hero-copy {
    max-width: 720px;
  }

  .marketing-page .marketing-preview-frame {
    min-height: auto;
  }

  .marketing-page .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .marketing-page .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .marketing-page .header-actions {
    justify-content: flex-start;
  }

  .marketing-page .hero-copy h1 {
    font-size: 52px;
  }

  .marketing-page .benefits-grid,
  .marketing-page .hero-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .marketing-page .marketing-preview-frame {
    grid-template-columns: 1fr;
  }

  .marketing-page .marketing-preview-sidebar {
    display: none;
  }

  .marketing-page .marketing-preview-stat-grid,
  .marketing-page .marketing-preview-analytics-grid,
  .marketing-page .feature-strip {
    grid-template-columns: 1fr;
  }

  .marketing-page .marketing-preview-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .marketing-page .marketing-preview-filters {
    width: 100%;
    flex-direction: column;
  }

  .marketing-page .marketing-preview-filters button {
    width: 100%;
  }

  .marketing-page .marketing-preview-outcome-panel {
    grid-template-columns: 1fr;
  }

  .marketing-page .marketing-preview-outcome-total {
    grid-column: 1;
  }

  .marketing-page table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .marketing-page .page-shell {
    padding: 28px 16px 40px;
  }

  .marketing-page .brand {
    font-size: 22px;
  }

  .marketing-page .header-actions {
    gap: 14px;
    flex-wrap: wrap;
  }

  .marketing-page .hero-section {
    margin-top: 44px;
  }

  .marketing-page .hero-copy h1 {
    font-size: 44px;
  }

  .marketing-page .hero-description {
    font-size: 18px;
  }

  .marketing-page .marketing-preview-main {
    padding: 18px 14px;
  }

  .marketing-page blockquote {
    font-size: 18px;
  }
}

.marketing-page.marketing-placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 4% 92%, rgba(37, 99, 235, 0.08), transparent 20%),
    radial-gradient(circle at 88% 90%, rgba(124, 58, 237, 0.06), transparent 22%),
    var(--marketing-bg);
  color: var(--marketing-text);
}

.marketing-page .marketing-placeholder-card {
  width: min(680px, 100%);
  display: grid;
  gap: 18px;
  padding: 42px;
  border: 1px solid var(--marketing-line);
  border-radius: 18px;
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow);
}

.marketing-page .marketing-placeholder-brand {
  color: var(--marketing-primary);
  font-weight: 800;
}

.marketing-page .marketing-placeholder-card h1 {
  margin: 0;
  color: var(--marketing-text);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.06em;
}

.marketing-page .marketing-placeholder-card p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 1.1rem;
}

.marketing-page .marketing-placeholder-card .primary-button {
  width: fit-content;
}


/* Marketing subpages */
.marketing-page .marketing-subpage {
  overflow: visible;
}

.marketing-page .subpage-hero {
  max-width: 980px;
  margin: 92px auto 0;
  text-align: center;
}

.marketing-page .subpage-hero .eyebrow {
  margin: 0 auto;
}

.marketing-page .subpage-hero h1 {
  margin: 30px auto 22px;
  max-width: 920px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.marketing-page .subpage-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #626b7d;
  font-size: 21px;
  line-height: 1.52;
  letter-spacing: -0.025em;
}

.marketing-page .subpage-hero .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.marketing-page .marketing-detail-grid,
.marketing-page .about-story-grid {
  max-width: 1180px;
  margin: 74px auto 0;
  display: grid;
  gap: 24px;
}

.marketing-page .marketing-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-page .about-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-page .marketing-detail-card,
.marketing-page .marketing-story-card,
.marketing-page .marketing-callout {
  border: 1px solid var(--marketing-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--marketing-soft-shadow);
}

.marketing-page .marketing-detail-card,
.marketing-page .marketing-story-card {
  padding: 30px;
}

.marketing-page .marketing-detail-card h2,
.marketing-page .marketing-story-card h2,
.marketing-page .marketing-callout h2 {
  margin: 18px 0 12px;
  color: var(--marketing-text);
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.marketing-page .marketing-detail-card p,
.marketing-page .marketing-story-card p,
.marketing-page .marketing-callout p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 16px;
  line-height: 1.55;
}

.marketing-page .marketing-detail-card ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: #1d2737;
  font-weight: 700;
}

.marketing-page .marketing-detail-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--marketing-primary);
  font-weight: 900;
}

.marketing-page .marketing-callout {
  max-width: 980px;
  margin: 74px auto 0;
  padding: 42px;
  text-align: center;
}

.marketing-page .marketing-callout h2 {
  max-width: 720px;
  margin: 10px auto 24px;
}

.marketing-page .marketing-callout .primary-button {
  width: fit-content;
  margin: 0 auto;
}

.marketing-page .holder-note {
  max-width: 680px;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .marketing-page .marketing-detail-grid,
  .marketing-page .about-story-grid {
    grid-template-columns: 1fr;
  }

  .marketing-page .subpage-hero {
    margin-top: 58px;
    text-align: left;
  }

  .marketing-page .subpage-hero .eyebrow,
  .marketing-page .subpage-hero p,
  .marketing-page .subpage-hero h1 {
    margin-left: 0;
    margin-right: 0;
  }

  .marketing-page .subpage-hero .hero-actions {
    justify-content: flex-start;
  }
}


/* Pricing */
.marketing-page .pricing-card-section {
  max-width: 760px;
  margin: 58px auto 0;
}

.marketing-page .pricing-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid var(--marketing-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--marketing-shadow);
  text-align: center;
}

.marketing-page .pricing-card h2 {
  margin: 0;
  color: var(--marketing-text);
  font-size: clamp(32px, 8vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.marketing-page .pricing-card h2 span {
  font-size: clamp(64px, 14vw, 112px);
  color: var(--marketing-primary);
}

.marketing-page .pricing-summary {
  max-width: 560px;
  margin: 0;
  color: var(--marketing-muted);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

@media (max-width: 520px) {
  .marketing-page .pricing-card {
    justify-items: stretch;
    text-align: left;
  }

  .marketing-page .pricing-card .primary-button {
    width: 100%;
  }
}

/* Waitlist */

.marketing-page .waitlist-return-card {
  max-width: 700px;
  margin: 28px auto 0;
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--marketing-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--marketing-soft-shadow);
  text-align: center;
}


.marketing-page [data-waitlist-form-panel][hidden],
.marketing-page .waitlist-form[hidden],
.marketing-page .waitlist-return-card[hidden] {
  display: none !important;
}

.marketing-page .waitlist-return-card h3 {
  margin: 0;
  color: var(--marketing-text);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.marketing-page .waitlist-return-card p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--marketing-muted);
  font-size: 16px;
  line-height: 1.55;
}

.marketing-page .waitlist-form {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--marketing-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--marketing-soft-shadow);
  text-align: left;
}

.marketing-page .waitlist-form.compact {
  max-width: 700px;
  box-shadow: none;
}

.marketing-page .waitlist-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.marketing-page .waitlist-fields.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-page .waitlist-form label,
.marketing-page .waitlist-field {
  display: grid;
  gap: 8px;
  color: #1d2737;
  font-size: 13px;
  font-weight: 800;
}

.marketing-page .waitlist-form input,
.marketing-page .waitlist-form select,
.marketing-page .waitlist-form textarea,
.marketing-page .waitlist-checkbox-dropdown summary {
  width: 100%;
  border: 1px solid #dce3ef;
  border-radius: 12px;
  background: #fff;
  color: var(--marketing-text);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.marketing-page .waitlist-form input:focus,
.marketing-page .waitlist-form select:focus,
.marketing-page .waitlist-form textarea:focus,
.marketing-page .waitlist-checkbox-dropdown details[open] summary {
  border-color: var(--marketing-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.marketing-page .waitlist-checkbox-dropdown details {
  position: relative;
}

.marketing-page .waitlist-checkbox-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.marketing-page .waitlist-checkbox-dropdown summary::-webkit-details-marker {
  display: none;
}

.marketing-page .waitlist-checkbox-dropdown summary::after {
  content: "⌄";
  float: right;
  color: var(--marketing-muted);
}

.marketing-page .waitlist-checkbox-options {
  position: absolute;
  z-index: 5;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #dce3ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--marketing-soft-shadow);
}

.marketing-page .waitlist-checkbox-options label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  font-size: 14px;
  font-weight: 700;
}

.marketing-page .waitlist-checkbox-options input {
  width: auto;
}

.marketing-page .waitlist-message {
  grid-column: 1 / -1;
}


.marketing-page .turnstile-field {
  min-height: 65px;
}

.marketing-page .turnstile-field:empty {
  display: none;
}

.marketing-page .waitlist-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.marketing-page .waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.marketing-page .waitlist-status {
  min-height: 20px;
  margin: 0;
  color: var(--marketing-muted);
  font-size: 14px;
  font-weight: 700;
}

.marketing-page .waitlist-status[data-tone="success"] {
  color: var(--marketing-success);
}

.marketing-page .waitlist-status[data-tone="error"] {
  color: var(--marketing-danger);
}

.marketing-page .waitlist-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 820px) {
  .marketing-page .waitlist-fields,
  .marketing-page .waitlist-fields.two-column {
    grid-template-columns: 1fr;
  }

  .marketing-page .waitlist-form button {
    width: 100%;
  }
}
