:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #141414;
  --green: #00c97a;
  --red: #e8333a;
  --amber: #f0a500;
  --white: #ece8df;
  --muted: #5a5550;
  --border: #1e1e1e;
  --border2: #2a2a2a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Crimson Pro", serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span {
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-block;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #c0272d;
}
.btn-amber {
  background: var(--amber);
  color: #000;
}
.btn-amber:hover {
  background: #d48f00;
}
.btn-green {
  background: var(--green);
  color: #000;
}
.btn-green:hover {
  background: #00a862;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 65% 50%,
      rgba(232, 51, 58, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(240, 165, 0, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero-headline .line-red {
  color: var(--red);
}
.hero-headline .line-dim {
  color: #333;
}

.hero-subline {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #8a8075;
  max-width: 620px;
  margin-bottom: 40px;
  font-style: italic;
}
.hero-subline strong {
  color: var(--white);
  font-style: normal;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--amber);
}
.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── MOCKUP ── */
.mockup-section {
  padding: 0 5% 100px;
  position: relative;
}

.mockup-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow:
    0 0 0 1px #1a1a1a,
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(232, 51, 58, 0.06);
}

.mockup-wrapper img {
  width: 100%;
  display: block;
}

.mockup-placeholder {
  background: var(--bg3);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── SECTION COMMON ── */
section {
  position: relative;
}

.section-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.section-body {
  font-size: 1.1rem;
  color: #7a7570;
  line-height: 1.8;
  max-width: 560px;
}

/* ── PAIN SECTION ── */
.pain-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pain-quote {
  font-family: "Crimson Pro", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  border-left: 2px solid var(--red);
  padding-left: 28px;
  margin: 32px 0;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.pain-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: #7a7570;
  line-height: 1.6;
}
.pain-list li::before {
  content: "✗";
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── SIGNAL CARDS ── */
.signal-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}

.signal-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.risk-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.risk-tier {
  padding: 32px 24px;
  background: var(--bg3);
  border-top: 3px solid transparent;
  position: relative;
}
.risk-tier.bull {
  border-top-color: var(--green);
}
.risk-tier.bear {
  border-top-color: var(--red);
}
.risk-tier.mix {
  border-top-color: var(--amber);
}

.tier-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tier-label.green {
  color: var(--green);
}
.tier-label.red {
  color: var(--red);
}
.tier-label.amber {
  color: var(--amber);
}

.tier-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.tier-desc {
  font-size: 0.95rem;
  color: #6a6560;
  line-height: 1.7;
}

.tier-pct {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── FEATURE MODULES ── */
.modules-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}

.modules-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.module-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
  align-items: stretch;
}

.module-feature.reverse {
  direction: rtl;
}
.module-feature.reverse > * {
  direction: ltr;
}

.module-screen {
  background: var(--bg3);
  border: 1px solid var(--border2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.module-screen img {
  width: 85%;
  height: auto;
  display: block;
}

.dash-mockup {
  display: none;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  padding: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  overflow: hidden;
}
.dm-header {
  color: var(--amber);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border2);
}
.dm-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #111;
  color: #999;
  font-size: 0.6rem;
}
.dm-tag {
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.dm-tag.green {
  background: rgba(0, 201, 122, 0.15);
  color: var(--green);
}
.dm-tag.red {
  background: rgba(232, 51, 58, 0.15);
  color: var(--red);
}
.dm-tag.amber {
  background: rgba(240, 165, 0, 0.15);
  color: var(--amber);
}

.module-copy {
  background: var(--bg2);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
}

.module-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.module-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 18px;
}

.module-body {
  font-size: 1rem;
  color: #6a6560;
  line-height: 1.75;
  margin-bottom: 24px;
}

.module-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-bullets li {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #6a6560;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.module-bullets li::before {
  content: "→";
  color: var(--amber);
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.pricing-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-top: 16px;
  font-style: normal;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 820px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg3);
  padding: 48px 40px;
  position: relative;
  border: 1px solid var(--border2);
}

.plan-card.featured {
  border-color: var(--amber);
  background: #0f0e0a;
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--amber);
  color: #000;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
}

.plan-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.plan-currency {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 12px;
}
.plan-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.plan-period {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.08em;
}

.plan-compare {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.plan-compare strong {
  color: var(--red);
  font-style: normal;
}

.plan-divider {
  height: 1px;
  background: var(--border2);
  margin: 28px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: #7a7570;
  line-height: 1.5;
}
.plan-features li::before {
  content: "✓";
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 48px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.trust-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--green);
  line-height: 1;
}
.trust-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HOW IT WORKS ── */
.hiw-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}

.hiw-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--bg3);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: #1a1a1a;
  position: absolute;
  right: 16px;
  top: 12px;
  pointer-events: none;
}

.step-icon {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  border: 1px solid rgba(240, 165, 0, 0.3);
  display: inline-block;
  padding: 4px 10px;
}

.step-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: var(--white);
}

.step-body {
  font-size: 0.95rem;
  color: #6a6560;
  line-height: 1.7;
}

/* ── OBJECTIONS ── */
.objections-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.obj-item {
  padding: 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
}

.obj-q {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
}

.obj-a {
  font-size: 0.95rem;
  color: #6a6560;
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.cta-section {
  padding: 100px 5%;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(232, 51, 58, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  position: relative;
}

.cta-sub {
  font-size: 1.1rem;
  color: #6a6560;
  max-width: 500px;
  margin: 0 auto 40px;
  font-style: italic;
}

.cta-disclaimer {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 20px;
}

/* ── FOOTER ── */
footer {
  padding: 40px 5%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}

/* ── DASHBOARD PAN ── */
.dashboard-pan-container {
  height: 90vh;
  overflow: hidden;
  position: relative;
  cursor: grab;
}
.dashboard-pan-container.dragging {
  cursor: grabbing;
}
.dashboard-pan-img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.d1 {
  animation-delay: 0.1s;
}
.fade-up.d2 {
  animation-delay: 0.25s;
}
.fade-up.d3 {
  animation-delay: 0.4s;
}
.fade-up.d4 {
  animation-delay: 0.55s;
}
.fade-up.d5 {
  animation-delay: 0.7s;
}

/* ── TICKER ── */
.ticker {
  margin-top: 72px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  background: var(--bg2);
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0 24px;
}
.ticker-item span {
  color: var(--green);
}
.ticker-item span.neg {
  color: var(--red);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── HERO TRUST TAGLINE ── */
.hero-trust {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ── MOCKUP LABEL ROW ── */
.mockup-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mockup-caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── FEATURE CARDS ── */
.features-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}
.features-intro {
  margin-bottom: 56px;
}
.features-intro .section-body {
  margin-top: 16px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--amber);
  padding: 32px 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(240, 165, 0, 0.08);
}
.feature-card-icon {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.feature-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.feature-card-body {
  font-family: "Crimson Pro", serif;
  font-size: 0.98rem;
  color: #8a8580;
  line-height: 1.7;
}

/* ── WHO IT'S FOR ── */
.who-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}
.who-intro {
  margin-bottom: 56px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.who-col-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.who-col-title.green {
  color: var(--green);
}
.who-col-title.red {
  color: var(--red);
}
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-list li {
  font-size: 1.05rem;
  color: #8a8580;
  line-height: 1.6;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.who-list.built-for li::before {
  content: "✓";
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.who-list.not-for li::before {
  content: "✗";
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── PLAN DESCRIPTION ── */
.plan-description {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ── PRICING OBJECTION ── */
.pricing-objection {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 48px auto 0;
  line-height: 1.7;
}

/* ── RISK DISCLAIMER ── */
.risk-disclaimer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 5%;
  text-align: center;
}
.risk-disclaimer p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── TYPOGRAPHY FIXES ── */
.section-body {
  color: #8a8580;
}

/* ── CARD HOVER STATES ── */
.step-card {
  transition: background 0.2s;
}
.step-card:hover {
  background: var(--bg2);
}
.obj-item {
  transition: background 0.2s;
}
.obj-item:hover {
  background: #111;
}
.risk-tier {
  transition: background 0.2s;
}
.risk-tier:hover {
  background: #111;
}

/* ── PRO PLAN DOMINANCE ── */
.plan-card.featured {
  box-shadow:
    0 0 0 1px var(--amber),
    0 20px 60px rgba(240, 165, 0, 0.08);
}
.plan-card.featured .plan-amount {
  font-size: 5.5rem;
}

/* ── EXTRACTED FROM INLINE STYLES ── */

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.hero-ctas .btn {
  padding: 14px 32px;
}

.signal-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.dm-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.dm-footer {
  margin-top: 16px;
  font-size: 0.82rem;
  line-height: 1.6;
}
.dm-footer.green { color: var(--green); }
.dm-footer.red   { color: var(--red); }
.dm-footer.amber { color: var(--amber); }

.hiw-header .section-body {
  max-width: 440px;
  margin: 0 auto;
}

.plan-card .btn {
  width: 100%;
  text-align: center;
  padding: 14px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-inner .section-label {
  text-align: center;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 16px 40px;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */

/* Tablet and below: logo only — no nav links, no CTA buttons */
@media (max-width: 1100px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .pain-grid,
  .signal-header,
  .modules-intro,
  .pricing-grid,
  .obj-grid,
  .who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .risk-tiers,
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .module-feature,
  .module-feature.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
}
