:root {
  --bg: #07111b;
  --bg-deep: #04090f;
  --panel: rgba(10, 18, 28, 0.9);
  --panel-strong: rgba(14, 24, 36, 0.98);
  --line: rgba(172, 193, 216, 0.14);
  --line-strong: rgba(172, 193, 216, 0.26);
  --text: #f3f8fd;
  --muted: #9fb2c7;
  --cyan: #7bc7ff;
  --teal: #63f0cf;
  --gold: #f7c66c;
  --warn: #ffcf77;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(123, 199, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(247, 198, 108, 0.16), transparent 21%),
    radial-gradient(circle at 55% 94%, rgba(99, 240, 207, 0.1), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #09121b 46%, var(--bg-deep) 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, rgba(0, 0, 0, 0.18));
  z-index: -4;
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -3;
}

.ambient-left {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -8rem;
  background: rgba(123, 199, 255, 0.2);
}

.ambient-right {
  width: 30rem;
  height: 30rem;
  right: -10rem;
  top: 18rem;
  background: rgba(247, 198, 108, 0.16);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
}

main,
.topbar,
.footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  margin-top: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(6, 12, 20, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #08111a;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 18px 30px rgba(247, 198, 108, 0.18);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
}

.topbar nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text) !important;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

main {
  padding: 34px 0 42px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 20, 31, 0.96), rgba(9, 15, 24, 0.98));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.hero-copy,
.hero-side,
.chart-panel,
.price-card,
.logic-card,
.proof-card,
.table-panel,
.faq-item,
.cta,
.disclaimer {
  padding: 28px;
}

.eyebrow,
.card-kicker,
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  max-width: 12ch;
}

.hero-side h2,
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.lead,
.section-copy,
.price-copy,
.logic-card p,
.proof-card p,
.faq-item p,
.disclaimer p,
.chart-note,
.metric-card p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #08111a;
  background: linear-gradient(135deg, var(--gold), #ffd79a 45%, var(--teal));
  box-shadow: 0 18px 34px rgba(247, 198, 108, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
}

.button-wide {
  width: 100%;
}

.stats-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-chip,
.metric-card,
.proof-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-label,
.metric-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-chip strong,
.metric-card strong,
.proof-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.hero-side {
  background:
    linear-gradient(180deg, rgba(14, 24, 37, 0.98), rgba(8, 15, 24, 0.98)),
    radial-gradient(circle at top right, rgba(123, 199, 255, 0.12), transparent 34%);
}

.hero-side-head {
  display: grid;
  gap: 8px;
}

.metric-rail {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.metric-hero strong {
  font-size: clamp(28px, 4vw, 38px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.status-strip {
  margin-top: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 16px;
  border: 1px dashed rgba(99, 240, 207, 0.24);
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #44ff8f;
  box-shadow: 0 0 0 0 rgba(68, 255, 143, 0.45);
  animation: pulse 1.5s infinite;
}

#time-ticker {
  margin-left: auto;
  color: var(--warn);
  font-weight: 700;
}

.section {
  margin-top: 24px;
}

.section-head {
  max-width: 760px;
}

.section-copy {
  margin-top: 14px;
}

.proof-grid,
.pricing-grid,
.logic-grid {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

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

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chart-panel h3 {
  font-size: 24px;
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.chart-note {
  max-width: 220px;
  text-align: right;
  font-size: 13px;
}

.bars-chart {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 320px;
}

.chart-stage {
  position: relative;
  margin-top: 18px;
}

.chart-tooltip {
  position: absolute;
  z-index: 5;
  min-width: 240px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(247, 198, 108, 0.34);
  background: rgba(4, 10, 16, 0.96);
  color: var(--text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
  font-size: 13px;
  line-height: 1.55;
}

.chart-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, -14px);
}

.bar-cell {
  display: grid;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 8px;
  min-height: 100%;
}

.bar-track {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bar {
  width: 100%;
  max-width: 42px;
  min-height: 8px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(247, 198, 108, 0.94), rgba(99, 240, 207, 0.94));
  box-shadow: 0 12px 28px rgba(99, 240, 207, 0.16);
}

.bar-label {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.equity-wrap {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top left, rgba(123, 199, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

#equity-chart {
  display: block;
  width: 100%;
  height: 320px;
}

.svg-grid {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.svg-label,
.svg-month {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.svg-month {
  fill: rgba(243, 248, 253, 0.82);
}

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

.proof-card {
  min-height: 170px;
}

.proof-card strong {
  font-size: 24px;
}

.pricing-grid .price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  border-color: rgba(247, 198, 108, 0.32);
  background:
    linear-gradient(180deg, rgba(16, 26, 38, 0.98), rgba(10, 17, 27, 0.98)),
    radial-gradient(circle at top right, rgba(247, 198, 108, 0.1), transparent 34%);
  transform: translateY(-4px);
}

.price-top h3 {
  margin-top: 10px;
  font-size: 42px;
  line-height: 1;
}

.price-top h3 span {
  font-size: 20px;
  color: var(--muted);
  font-weight: 700;
}

.price-top span {
  color: var(--muted);
}

.price-copy {
  min-height: 96px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.table-panel {
  padding: 22px 22px 8px;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

thead th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}

tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
}

tbody td:first-child {
  color: var(--muted);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.logic-card h3 {
  margin-top: 10px;
  font-size: 23px;
}

.logic-card p {
  margin: 12px 0 0;
}

.faq-section .faq-item {
  margin-top: 12px;
}

.faq-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card h3 {
  font-size: 22px;
  margin-top: 10px;
}

.faq-card p {
  margin: 12px 0 0;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10, 21, 31, 0.96), rgba(6, 12, 19, 0.96)),
    radial-gradient(circle at top right, rgba(247, 198, 108, 0.12), transparent 34%);
}

.disclaimer {
  margin-top: 20px;
}

.disclaimer p {
  margin: 0;
}

.footer {
  padding: 0 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 255, 143, 0.5);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(68, 255, 143, 0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .proof-grid,
  .pricing-grid,
  .logic-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .proof-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  main,
  .topbar,
  .footer {
    width: calc(100% - 20px);
  }

  .topbar {
    position: static;
    margin-top: 10px;
    flex-direction: column;
  }

  .topbar nav {
    gap: 12px;
  }

  .hero-copy,
  .hero-side,
  .chart-panel,
  .price-card,
  .logic-card,
  .proof-card,
  .table-panel,
  .faq-item,
  .cta,
  .disclaimer {
    padding: 18px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
    max-width: none;
  }

  .lead {
    font-size: 16px;
  }

  .stats-row,
  .metric-grid,
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .chart-head {
    flex-direction: column;
  }

  .chart-note {
    text-align: left;
    max-width: none;
  }

  .bars-chart {
    gap: 6px;
    min-height: 250px;
    overflow-x: auto;
    grid-template-columns: repeat(13, minmax(54px, 1fr));
  }

  .cta-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-wide {
    width: 100%;
  }

  .status-strip {
    align-items: flex-start;
  }

  #time-ticker {
    margin-left: 0;
    width: 100%;
  }
}
