:root {
  --bg: #050604;
  --bg-2: #0b0d09;
  --panel: rgba(16, 19, 13, 0.72);
  --panel-strong: rgba(22, 27, 18, 0.86);
  --text: #ffffff;
  --muted: #c8d2c4;
  --soft: #8d9987;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --green: #8dffad;
  --green-deep: #22e06a;
  --gold: #f6d982;
  --red: #ff5f56;
  --danger: #ff746b;
  --ink: #060806;
  --shadow: 0 42px 110px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(5, 6, 4, 0.7), var(--bg) 28rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.027) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 96px),
    var(--bg);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(141, 255, 173, 0.1), transparent 32%),
    linear-gradient(245deg, transparent 54%, rgba(246, 217, 130, 0.12)),
    linear-gradient(28deg, transparent 65%, rgba(255, 95, 86, 0.08)),
    linear-gradient(180deg, transparent 0, rgba(141, 255, 173, 0.04) 48%, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 4, 0.58);
  backdrop-filter: blur(24px);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 6, 4, 0.88);
}

.nav {
  width: min(1180px, calc(100% - 28px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 217, 130, 0.46);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 32%),
    linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 34px rgba(141, 255, 173, 0.24);
}

.nav-links {
  display: none;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(141, 255, 173, 0.24);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 16px 42px rgba(34, 224, 106, 0.22);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(34, 224, 106, 0.28);
}

.button.ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  width: min(1240px, calc(100% - 28px));
  min-height: auto;
  margin: 0 auto;
  padding: 64px 0 38px;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(141, 255, 173, 0.09) 24%, transparent 50%, rgba(246, 217, 130, 0.09) 78%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%, rgba(255, 255, 255, 0.04) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, black 70%, transparent);
}

.hero-stage {
  position: relative;
  display: grid;
  align-items: center;
  gap: 38px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 4% 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 217, 130, 0.55), transparent);
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 8px;
  text-align: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.badge,
.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge {
  position: relative;
  padding: 9px 11px;
  border: 1px solid rgba(141, 255, 173, 0.22);
  border-radius: 999px;
  color: #edfff2;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  font-size: 3.05rem;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede,
.split-heading p,
.section-copy p,
.final-cta-inner p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-lede {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  line-height: 1.68;
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signals span {
  position: relative;
}

.hero-signals span + span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: -11px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.hero-intel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin: 10px auto 0;
}

.laptop-shell {
  position: relative;
  filter: drop-shadow(0 44px 92px rgba(0, 0, 0, 0.62));
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px 22px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03)),
    #0d100c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.laptop-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 14%, rgba(255, 255, 255, 0.13) 28%, transparent 42%);
  transform: translateX(-70%);
  animation: screenSweep 6s ease-in-out infinite;
}

.screen-chrome {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 5px;
}

.screen-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.newsletter-window {
  min-height: 405px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #0a0e09;
  background:
    linear-gradient(135deg, rgba(141, 255, 173, 0.18), transparent 34%),
    linear-gradient(180deg, #fcfff7, #dce9d8);
}

.newsletter-header,
.featured-pick,
.intel-grid,
.product-card-top,
.product-metrics,
.offer-card,
.footer {
  display: flex;
  gap: 16px;
}

.newsletter-header {
  align-items: flex-start;
  justify-content: space-between;
}

.newsletter-header span,
.featured-pick small,
.product-card-top span,
.product-metrics span,
.availability-copy span,
.countdown-panel > span {
  color: #53604e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-header h2 {
  margin: 4px 0 0;
  color: #0a0e09;
  font-size: 1.75rem;
  line-height: 1.02;
}

.newsletter-header strong {
  padding: 8px 10px;
  border-radius: 999px;
  background: #0d130b;
  color: var(--green);
  font-size: 0.8rem;
}

.featured-pick {
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(10, 14, 9, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.product-silhouette {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 224, 106, 0.18), rgba(246, 217, 130, 0.28)),
    #f9fbf1;
}

.product-silhouette span {
  width: 54px;
  height: 66px;
  border: 7px solid #151d12;
  border-top-width: 12px;
  border-radius: 13px 13px 21px 21px;
  transform: rotate(-8deg);
}

.featured-pick h3 {
  margin: 4px 0 6px;
  color: #0a0e09;
  font-size: 1.08rem;
}

.featured-pick p {
  margin: 0;
  color: #4b5546;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.intel-grid div {
  padding: 13px 12px;
  border-radius: 8px;
  background: rgba(8, 12, 7, 0.075);
}

.intel-grid strong {
  display: block;
  margin-top: 5px;
  color: #0d130b;
  font-size: 1.15rem;
}

.success {
  color: #0a8f3a !important;
}

.brief-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.brief-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 15, 10, 0.1);
}

.brief-lines span:nth-child(2) {
  width: 82%;
}

.brief-lines span:nth-child(3) {
  width: 56%;
}

.laptop-base {
  width: 88%;
  height: 20px;
  margin: 0 auto;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #f3f6ed, #78806f);
}

.floating-metric {
  position: absolute;
  z-index: 3;
  display: none;
  min-width: 152px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-metric span {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 1.45rem;
}

.metric-a {
  left: -6px;
  bottom: 90px;
}

.metric-b {
  right: -4px;
  top: 88px;
}

.hero-bottom {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.availability-panel,
.countdown-panel,
.trust-strip,
.pain-item,
.deliverable,
.product-pick-card,
.founder-portrait,
.bonus-item,
.offer-card,
.faq-list,
.final-cta-inner {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.availability-panel,
.countdown-panel {
  padding: 16px;
  border-radius: 8px;
}

.countdown-panel.is-expired {
  border-color: rgba(255, 95, 86, 0.32);
}

.availability-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.availability-copy span,
.countdown-panel > span {
  color: var(--green);
}

.availability-copy strong {
  color: var(--text);
  font-size: 1rem;
}

.spots-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.095);
}

.spots-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  box-shadow: 0 0 28px rgba(141, 255, 173, 0.45);
  transition: width 1350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.timer div {
  min-width: 0;
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.timer strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.timer small {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px;
  border-radius: 8px;
}

.trust-strip span {
  display: block;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.trust-logos strong {
  color: #f7fff6;
  font-size: 1.08rem;
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 92px 0;
}

.split-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.split-heading p,
.section-copy p {
  max-width: 640px;
}

.pain-stack {
  display: grid;
  gap: 12px;
}

.pain-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
}

.pain-item > span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.pain-item p,
.deliverable p,
.product-pick-card li,
.bonus-item p,
.offer-card p,
.offer-card li,
.faq-list p,
.final-cta-inner p,
.footer p {
  color: var(--muted);
}

.deliverables-grid,
.bonus-grid {
  display: grid;
  gap: 12px;
}

.deliverable,
.bonus-item {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
}

.deliverable::before,
.bonus-item::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 255, 173, 0.48), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}

.deliverable:hover::before,
.bonus-item:hover::before {
  opacity: 1;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(141, 255, 173, 0.22);
  border-radius: 8px;
  background: rgba(141, 255, 173, 0.075);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.sample-layout,
.founder-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-copy h2 {
  margin-bottom: 18px;
}

.product-pick-card {
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(141, 255, 173, 0.1), transparent 36%),
    var(--panel-strong);
}

.product-card-top {
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.product-card-top span {
  color: var(--green);
}

.product-card-top h3 {
  margin: 6px 0 0;
  font-size: 1.75rem;
}

.trend-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.84rem;
}

.score-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.opportunity-score {
  width: fit-content;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 217, 130, 0.34);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(246, 217, 130, 0.08);
  font-size: 1.15rem;
  line-height: 1;
}

.opportunity-score small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trend-badge i {
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(-45deg);
}

.product-metrics {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.product-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.product-metrics span {
  color: var(--soft);
}

.product-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 1.75rem;
}

.trend-chart {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 42px 42px;
}

.trend-chart span {
  position: absolute;
  left: 13%;
  right: 12%;
  bottom: 46px;
  height: 54px;
  border-top: 5px solid var(--green);
  border-right: 5px solid var(--green);
  transform: skewY(-17deg);
  filter: drop-shadow(0 0 22px rgba(141, 255, 173, 0.34));
}

.product-pick-card ul,
.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.founder-portrait {
  min-height: 340px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(141, 255, 173, 0.1), rgba(246, 217, 130, 0.06)),
    var(--panel);
}

.portrait-frame {
  width: min(78%, 310px);
  aspect-ratio: 0.82;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid rgba(246, 217, 130, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 32%),
    rgba(5, 6, 4, 0.66);
}

.portrait-frame span {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-size: 1.8rem;
  font-weight: 950;
}

.portrait-frame strong {
  max-width: 190px;
  text-align: center;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.proof-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f5fff5;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 900;
}

.bonus-item span {
  color: var(--gold);
  font-weight: 950;
}

.bonus-item h3 {
  margin-top: 12px;
}

.offer-card {
  flex-direction: column;
  gap: 24px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(141, 255, 173, 0.13), transparent 36%),
    linear-gradient(315deg, rgba(246, 217, 130, 0.08), transparent 40%),
    var(--panel-strong);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 22px 0 18px;
}

.current-price {
  font-size: 3.6rem;
  font-weight: 950;
  line-height: 0.9;
}

.price-meta {
  color: var(--muted);
  font-weight: 900;
}

.old-price {
  color: var(--soft);
  font-weight: 950;
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 3px;
}

.signup-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.signup-form label {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 950;
}

.signup-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  outline: none;
}

.signup-form input:focus {
  border-color: rgba(141, 255, 173, 0.72);
  box-shadow: 0 0 0 4px rgba(141, 255, 173, 0.12);
}

.signup-form p {
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
}

.faq-list {
  overflow: hidden;
  border-radius: 8px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 24px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 950;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 820px;
  margin: -6px 24px 24px;
  font-size: 1rem;
  line-height: 1.72;
}

.final-cta {
  padding-top: 36px;
}

.final-cta-inner {
  padding: 42px 22px;
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(141, 255, 173, 0.1), transparent 42%, rgba(246, 217, 130, 0.07)),
    var(--panel);
}

.final-cta-inner p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  width: min(1180px, calc(100% - 28px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.deliverable.reveal:nth-child(2),
.pain-item.reveal:nth-child(2),
.bonus-item.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.deliverable.reveal:nth-child(3),
.pain-item.reveal:nth-child(3),
.bonus-item.reveal:nth-child(3) {
  transition-delay: 150ms;
}

.deliverable.reveal:nth-child(4),
.pain-item.reveal:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes screenSweep {
  0%, 48% {
    transform: translateX(-70%);
  }
  72%, 100% {
    transform: translateX(75%);
  }
}

@media (min-width: 620px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-lede,
  .split-heading p,
  .section-copy p,
  .final-cta-inner p {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .product-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-header h2 {
    font-size: 2.05rem;
  }

  .trust-logos strong {
    font-size: 1.28rem;
  }

  .product-card-top h3 {
    font-size: 2.25rem;
  }

  .current-price {
    font-size: 4.4rem;
  }
}

@media (min-width: 780px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
  }

  .section {
    padding: 104px 0;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-stage {
    gap: 42px;
  }

  .hero-intel {
    width: min(100%, 980px);
  }

  .hero-copy {
    max-width: 960px;
  }

  h1 {
    font-size: 5.15rem;
  }

  h2 {
    font-size: 4rem;
  }

  .hero-bottom {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: end;
    margin-bottom: 40px;
  }

  .pain-stack {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sample-layout,
  .founder-layout {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 44px;
  }

  .sample-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .product-card-top {
    flex-direction: row;
    align-items: flex-start;
  }

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-card {
    flex-direction: row;
    align-items: center;
    padding: 34px;
  }

  .offer-copy,
  .signup-form {
    flex: 1 1 0;
  }

  .footer {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1060px) {
  .hero {
    min-height: calc(100svh - 74px);
    padding-top: 58px;
  }

  .hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 1040px;
  }

  .hero-intel {
    width: min(100%, 1060px);
    margin: 0 auto;
  }

  h1 {
    max-width: 1040px;
    font-size: 5.35rem;
  }

  h2 {
    font-size: 4.75rem;
  }

  .newsletter-header h2 {
    font-size: 2.35rem;
  }

  .newsletter-window {
    min-height: 345px;
  }

  .featured-pick {
    margin: 16px 0;
  }

  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-stack {
    grid-template-columns: repeat(4, 1fr);
  }

  .pain-item {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1240px) {
  .hero-stage {
    min-height: auto;
  }

  h1 {
    font-size: 5.85rem;
  }

  .hero-intel {
    width: min(100%, 1080px);
  }

  .floating-metric {
    display: block;
  }
}

@media (max-width: 420px) {
  .nav,
  .hero,
  .section,
  .trust-strip,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .logo {
    font-size: 0.92rem;
  }

  .logo-mark {
    width: 31px;
    height: 31px;
  }

  .nav-cta {
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .hero-stage {
    min-height: auto;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .featured-pick {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-silhouette {
    width: 100%;
    flex-basis: 96px;
  }

  .newsletter-window {
    min-height: auto;
    padding: 13px;
  }

  .intel-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
