@import "tailwindcss";

:root {
  --bone: #f2efe6;
  --paper: #faf8f1;
  --paper-deep: #e9e4d7;
  --ink: #141714;
  --muted: #66685f;
  --rule: #d2cec1;
  --green: #087a4d;
  --green-dark: #075b3c;
  --green-bright: #38d789;
  --terminal: #0d120f;
  --terminal-2: #141c17;
  --terminal-rule: #2a372f;
  --gold: #d2a73b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: var(--font-geist-sans), "Avenir Next", Arial, sans-serif;
  --mono: var(--font-geist-mono), "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
summary {
  font-synthesis: none;
}

a {
  color: inherit;
}

main {
  overflow: clip;
}

.shell {
  width: min(100% - 48px, 1464px);
  margin-inline: auto;
}

.section-pad {
  padding-block: 128px;
}

.section-label {
  margin: 0 0 28px;
  color: var(--green);
  font: 700 12px/1.2 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h2 {
  font: 500 clamp(48px, 6vw, 86px) / 0.96 var(--serif);
  letter-spacing: -0.052em;
}

h2 em {
  display: block;
  color: var(--green);
  font-weight: 500;
}

.sticky-offer {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 52px;
  align-items: stretch;
  justify-content: space-between;
  background: var(--terminal);
  border-bottom: 1px solid var(--terminal-rule);
  color: #f4f1e9;
}

.sticky-offer p {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 10px 24px;
  font: 500 13px/1.3 var(--sans);
}

.sticky-offer p span {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--mono);
}

.sticky-offer p b {
  color: var(--green-bright);
}

.sticky-offer p s {
  color: #8a958e;
  font-size: 11px;
}

.sticky-cta {
  min-width: 214px;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 11px !important;
}

.cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  background: var(--green);
  box-shadow: 7px 7px 0 var(--ink);
  color: #fff;
  font: 750 13px/1 var(--mono);
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cta:hover {
  background: var(--green-dark);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.cta:active {
  box-shadow: none;
  transform: translate(7px, 7px);
}

.cta:focus-visible,
summary:focus-visible,
.footer a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.cta-arrow {
  font-size: 21px;
  font-weight: 400;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
}

.brand-mark i {
  position: absolute;
  inset: 6px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.brand-mark i:last-child {
  inset: 12px -1px;
}

.brand > span:last-child {
  display: grid;
  gap: 3px;
}

.brand strong {
  font: 700 13px/1 var(--mono);
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.15em;
}

.hero {
  position: relative;
  background:
    linear-gradient(rgba(20, 23, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 20, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.site-masthead {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}

.market-status {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--muted);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.1em;
}

.market-status span:first-child {
  color: var(--ink);
}

.market-status i,
.online i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(56, 215, 137, 0.1);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 0.84fr);
  gap: 84px;
  align-items: center;
  padding-block: 80px 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--green);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.13em;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font: 500 clamp(54px, 6.1vw, 92px) / 0.88 var(--serif);
  letter-spacing: -0.062em;
}

.hero h1 em {
  position: relative;
  display: block;
  margin-top: 11px;
  color: var(--green);
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
  transform: rotate(-0.7deg);
}

.hero-subhead {
  max-width: 720px;
  margin: 42px 0 38px;
  color: #4f514c;
  font-size: 18px;
  line-height: 1.72;
}

.hero-subhead strong {
  color: var(--ink);
}

.hero-offer {
  display: grid;
  grid-template-columns: auto minmax(290px, 1fr);
  gap: 30px;
  align-items: center;
}

.price {
  display: grid;
  padding-right: 30px;
  border-right: 1px solid var(--rule);
  font-family: var(--mono);
}

.price s {
  color: var(--muted);
  font-size: 13px;
}

.price strong {
  margin-block: 3px;
  font: 650 31px/1 var(--serif);
}

.price small {
  max-width: 170px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.price small b {
  color: var(--green);
  font-weight: 750;
}

.refund-line {
  margin: 22px 0 0;
  color: var(--muted);
  font: 500 10px/1.5 var(--mono);
  letter-spacing: 0.03em;
}

.refund-line span {
  color: var(--ink);
  font-weight: 750;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 18px 0 0;
  padding: 0;
  color: #555950;
  font: 600 9px/1.4 var(--mono);
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 18px;
}

.hero-trust li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.hero-product {
  min-width: 0;
}

.product-email-wrap {
  position: relative;
  padding: 34px 18px 28px 34px;
}

.email-shadow {
  position: absolute;
  inset: 62px 0 0 60px;
  border: 1px solid #455046;
  background: #1b241d;
  transform: rotate(3deg);
}

.product-email {
  position: relative;
  overflow: hidden;
  border: 1px solid #3b473f;
  background: var(--terminal);
  box-shadow: 0 30px 70px rgba(17, 23, 19, 0.24);
  color: #e9eee9;
  transform: rotate(-1deg);
}

.email-chrome {
  display: grid;
  min-height: 58px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--terminal-rule);
  color: #8f9a92;
  font: 600 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.email-chrome > span:nth-child(2) {
  text-align: center;
}

.email-chrome .online {
  text-align: right;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48554c;
}

.window-dots i:first-child {
  background: var(--green-bright);
}

.email-subject {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--terminal-rule);
}

.email-subject > span {
  color: var(--green-bright);
  font: 650 9px/1 var(--mono);
  letter-spacing: 0.14em;
}

.email-subject h3 {
  margin: 15px 0 19px;
  color: #f1f2ed;
  font: 500 26px/1.08 var(--serif);
  letter-spacing: -0.02em;
}

.email-subject > div {
  display: flex;
  justify-content: space-between;
  color: #859087;
  font: 500 8px/1 var(--mono);
}

.email-pick {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 26px 28px 23px;
}

.ticker-block {
  display: flex;
  align-items: end;
  gap: 14px;
}

.ticker {
  font: 550 50px/0.78 var(--serif);
  letter-spacing: -0.05em;
}

.ticker-block div {
  display: grid;
  gap: 4px;
}

.ticker-block strong,
.ticker-block small {
  font: 550 8px/1 var(--mono);
  letter-spacing: 0.08em;
}

.ticker-block small {
  color: #7f8b83;
}

.rank {
  align-self: center;
  padding: 9px 12px;
  border: 1px solid var(--green);
  color: var(--green-bright);
  font: 650 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.email-chart {
  grid-column: 1 / -1;
}

.line-chart {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid var(--terminal-rule);
  background: #111914;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(165, 185, 171, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 185, 171, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
}

.entry-window {
  position: absolute;
  top: 18px;
  bottom: 16px;
  left: 46%;
  width: 31%;
  border-inline: 1px solid rgba(56, 215, 137, 0.42);
  background: rgba(56, 215, 137, 0.055);
}

.chart-label {
  position: absolute;
  z-index: 2;
  top: 9px;
  color: #879088;
  font: 650 7px/1 var(--mono);
  letter-spacing: 0.09em;
}

.entry-label {
  left: 48%;
}

.signal-label {
  right: 4%;
  color: var(--green-bright);
}

.candle {
  position: absolute;
  z-index: 1;
  bottom: var(--o);
  left: calc(5% + var(--i) * 5.8%);
  width: 5px;
  height: var(--h);
  border-block: 1px solid currentColor;
  background: currentColor;
  color: var(--green-bright);
}

.candle::after {
  position: absolute;
  top: -6px;
  bottom: -7px;
  left: 2px;
  width: 1px;
  background: currentColor;
  content: "";
}

.candle.down {
  color: #d86d55;
}

.chart-trend {
  position: absolute;
  z-index: 3;
  height: 2px;
  background: #efe5bd;
  transform-origin: left center;
}

.trend-a {
  bottom: 42px;
  left: 5%;
  width: 25%;
  transform: rotate(-10deg);
}

.trend-b {
  bottom: 69px;
  left: 29%;
  width: 25%;
  transform: rotate(-16deg);
}

.trend-c {
  bottom: 106px;
  left: 53%;
  width: 23%;
  transform: rotate(-5deg);
}

.trend-d {
  bottom: 116px;
  left: 75%;
  width: 20%;
  transform: rotate(6deg);
}

.email-reason {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--terminal-rule);
  background: var(--terminal-2);
}

.email-reason span,
.email-data span {
  color: #849087;
  font: 650 8px/1.3 var(--mono);
  letter-spacing: 0.1em;
}

.email-reason p {
  margin: 0;
  color: #aab3ac;
  font-size: 10px;
  line-height: 1.5;
}

.email-data {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--terminal-rule);
}

.email-data div {
  display: grid;
  gap: 7px;
  padding: 14px 10px 0;
}

.email-data div + div {
  border-left: 1px solid var(--terminal-rule);
}

.email-data strong {
  font: 600 10px/1 var(--mono);
}

.email-footnote {
  grid-column: 1 / -1;
  margin: 0;
  color: #69756c;
  font: 500 7px/1.4 var(--mono);
}

.hero-video {
  padding-bottom: 68px;
}

.video-slot {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--terminal);
}

.video-slot summary {
  display: block;
  cursor: pointer;
  list-style: none;
}

.video-slot summary::-webkit-details-marker {
  display: none;
}

.video-poster {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #f2f1e9;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 18, 15, 0.1), transparent 70%);
  content: "";
}

.video-tag {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  color: #9ca79f;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.11em;
}

.video-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  place-items: center;
  background:
    linear-gradient(rgba(167, 190, 176, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 190, 176, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.video-grid span {
  color: #e8ece7;
  font: 500 clamp(80px, 12vw, 160px) / 1 var(--mono);
  opacity: 0.18;
}

.video-grid i {
  color: var(--green-bright);
  font: 650 12px/1 var(--mono);
  letter-spacing: 0.16em;
}

.play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid var(--green-bright);
  border-radius: 50%;
  background: rgba(13, 18, 15, 0.88);
  transform: translate(-50%, -50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.video-poster:hover .play-button {
  background: var(--green);
  transform: translate(-50%, -50%) scale(1.04);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.video-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 5px;
  text-align: right;
}

.video-caption strong {
  font: 500 20px/1.1 var(--serif);
}

.video-caption span {
  color: #9ca79f;
  font: 500 9px/1 var(--mono);
}

.walkthrough {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-top: 1px solid var(--terminal-rule);
  background: #121a15;
  color: #eff3ef;
}

.walkthrough div {
  display: grid;
  gap: 8px;
}

.walkthrough span,
.walkthrough small {
  color: #829087;
  font: 600 9px/1 var(--mono);
}

.walkthrough strong {
  color: var(--green-bright);
  font: 650 16px/1 var(--mono);
}

.walkthrough > i {
  color: var(--green-bright);
  font-style: normal;
}

.credibility {
  border-block: 1px solid var(--rule);
  background: var(--bone);
}

.credibility-inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 36px;
  align-items: center;
}

.credibility-inner > span,
.credibility-inner small {
  color: var(--muted);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.1em;
}

.credibility-inner > div {
  display: flex;
  justify-content: space-around;
  gap: 32px;
}

.credibility-inner strong {
  color: #494b46;
  font: 650 15px/1 var(--sans);
  letter-spacing: 0.07em;
}

.mechanism {
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 120px;
  align-items: end;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-copy {
  color: #51534d;
  font-size: 17px;
  line-height: 1.75;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-copy strong {
  color: var(--ink);
}

.scan-machine {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 0.7fr;
  margin-top: 78px;
  border: 1px solid var(--ink);
  background: var(--terminal);
  color: #e5eae5;
}

.scan-machine > div {
  min-width: 0;
  padding: 32px;
}

.scan-machine > div + div {
  border-left: 1px solid var(--terminal-rule);
}

.scan-count {
  display: block;
  color: var(--paper);
  font: 500 65px/1 var(--serif);
  letter-spacing: -0.04em;
}

.scan-machine strong {
  color: #8d9a91;
  font: 650 9px/1 var(--mono);
  letter-spacing: 0.12em;
}

.ticker-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 58px;
}

.ticker-cloud i {
  min-width: 58px;
  padding: 9px;
  border: 1px solid var(--terminal-rule);
  color: #aeb7b1;
  font: 500 9px/1 var(--mono);
  font-style: normal;
  text-align: center;
}

.scan-funnel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  background:
    linear-gradient(155deg, transparent 49.6%, rgba(56, 215, 137, 0.22) 50%, transparent 50.4%);
}

.scan-funnel span {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--terminal-rule);
  color: #819087;
  font: 600 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.scan-output {
  background: #111814;
}

.qualified-list {
  display: grid;
  gap: 12px;
  margin-top: 66px;
}

.qualified-list span {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--terminal-rule);
  font: 600 11px/1 var(--mono);
}

.qualified-list b {
  color: #707c74;
  font-weight: 500;
}

.qualified-list i {
  color: var(--green-bright);
  font-size: 8px;
  font-style: normal;
}

.scan-email {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.scan-email > span {
  color: var(--green-bright);
  font: 400 80px/1 var(--serif);
}

.scan-email strong {
  margin-block: 22px 10px;
  color: #e8eee9;
}

.scan-email small {
  color: #78847c;
  font: 500 7px/1.5 var(--mono);
}

.mechanism-caption {
  margin: 22px 0 0;
  color: var(--muted);
  font: 500 9px/1 var(--mono);
  text-align: right;
}

.letter {
  border-top: 1px solid var(--rule);
  background: var(--bone);
}

.reading-column {
  width: min(100% - 48px, 720px);
  margin-inline: auto;
}

.reading-column > p:not(.section-label) {
  color: #333630;
  font: 400 19px/1.82 var(--serif);
}

.reading-column strong {
  color: var(--ink);
}

.reading-column blockquote {
  margin: 52px -80px;
  padding: 35px 48px;
  border-block: 1px solid var(--ink);
  color: var(--ink);
  font: 500 34px/1.25 var(--serif);
  text-align: center;
}

.reading-column blockquote b {
  color: var(--green);
}

.reading-column .pull-question {
  margin: 44px 0;
  color: var(--green) !important;
  font-size: 25px !important;
  font-style: italic !important;
  text-align: center;
}

.reading-column .dark-quote {
  border: 0;
  background: var(--terminal);
  color: #e9eee9;
  text-align: left;
}

.dark-quote b {
  display: block;
  margin-top: 12px;
  color: var(--green-bright) !important;
}

.letter-cta {
  width: 100%;
}

.mid-offer {
  margin-top: 52px;
  padding: 34px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--paper-deep);
}

.mid-offer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.mid-offer > div span,
.mid-offer > small {
  color: var(--muted);
  font: 600 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
}

.mid-offer > div strong {
  color: var(--green);
  font: 650 24px/1 var(--mono);
}

.mid-offer ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.mid-offer li {
  position: relative;
  padding-left: 22px;
  color: #454840;
  font: 550 11px/1.45 var(--mono);
}

.mid-offer li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.mid-offer > small {
  display: block;
  margin-top: 20px;
  text-align: center;
}

.inside-machine {
  position: relative;
  background:
    linear-gradient(rgba(173, 198, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 198, 183, 0.06) 1px, transparent 1px),
    var(--terminal);
  background-size: 48px 48px;
  color: #e9eee9;
}

.scan-beam {
  position: absolute;
  inset-inline: 0;
  top: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  box-shadow: 0 0 32px rgba(56, 215, 137, 0.3);
  opacity: 0.4;
  animation: scan-beam 8s ease-in-out infinite alternate;
}

.machine-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 100px;
  align-items: center;
}

.machine-copy h2 {
  margin-bottom: 46px;
  color: #f0f1ec;
}

.machine-copy h2 em {
  color: var(--green-bright);
}

.machine-copy > p:not(.section-label) {
  color: #b6beb8;
  font-size: 16px;
  line-height: 1.75;
}

.machine-copy strong {
  color: #eef2ee;
}

.silence-line {
  margin-top: 34px;
  padding-left: 22px;
  border-left: 2px solid var(--green-bright);
  color: #eef2ee !important;
  font: 500 24px/1.35 var(--serif) !important;
}

.terminal-panel {
  border: 1px solid var(--terminal-rule);
  background: rgba(17, 24, 20, 0.92);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.terminal-panel header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--terminal-rule);
  color: #7f8c83;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.11em;
}

.terminal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--terminal-rule);
}

.terminal-stats div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.terminal-stats div + div {
  border-left: 1px solid var(--terminal-rule);
}

.terminal-stats span {
  color: #7e8c82;
  font: 600 7px/1 var(--mono);
}

.terminal-stats strong {
  color: var(--green-bright);
  font: 600 22px/1 var(--mono);
}

.terminal-table {
  padding: 8px 24px 0;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 0.5fr 0.8fr 1.4fr 0.6fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--terminal-rule);
  font: 550 10px/1 var(--mono);
}

.table-head {
  color: #6e7c72;
  font-size: 7px;
}

.table-row span:last-child {
  color: var(--green-bright);
  text-align: right;
}

.terminal-log {
  display: grid;
  gap: 9px;
  padding: 24px;
  color: #718077;
  font: 500 8px/1 var(--mono);
}

.terminal-log span:last-child {
  color: var(--green-bright);
}

.sixty {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.sixty-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.76fr;
  gap: 130px;
  align-items: start;
}

.sixty h2 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 750;
  letter-spacing: -0.065em;
}

.math {
  background: var(--bone);
}

.math-head {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}

.math-head h2 {
  font-family: var(--sans);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 750;
  letter-spacing: -0.065em;
}

.math-head > p:not(.section-label, .recent-picks) {
  width: min(100%, 710px);
  margin: 0 auto 18px;
  color: #50524c;
  font-size: 17px;
  line-height: 1.7;
}

.math-callout {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 45px 0;
  font-family: var(--mono);
}

.math-callout strong {
  color: var(--green);
  font: 600 70px/1 var(--serif);
}

.math-callout span {
  color: var(--muted);
  font-size: 12px;
}

.recent-picks {
  margin: 62px 0 26px;
  color: var(--ink);
  font: 650 11px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.pick-card {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.pick-card .line-chart {
  min-height: 100%;
  border: 0;
  border-right: 1px solid var(--rule);
  background: #eef0e9;
}

.pick-card .chart-grid {
  background:
    linear-gradient(rgba(20, 23, 20, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 20, 0.075) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pick-card .candle {
  color: var(--green);
}

.pick-card .candle.down {
  color: #bd654f;
}

.pick-card .chart-trend {
  background: #334b3e;
}

.pick-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.pick-result > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.pick-ticker {
  font: 650 24px/1 var(--mono);
}

.pick-percent {
  color: var(--green);
  font: 650 14px/1 var(--mono);
}

.pick-result p {
  margin: 20px 0 8px;
  color: var(--muted);
  font: 500 10px/1.4 var(--mono);
}

.pick-gain {
  color: var(--green);
  font: 600 29px/1 var(--mono);
}

.picks-disclaimer {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--rule);
  color: var(--muted);
  font: 500 10px/1.65 var(--sans);
}

.boring-pick {
  margin-top: 92px;
  text-align: center;
}

.boring-pick span,
.boring-pick strong {
  display: block;
  font: 750 clamp(48px, 7.6vw, 112px) / 0.88 var(--sans);
  letter-spacing: -0.07em;
}

.boring-pick strong {
  color: var(--green);
}

.boring-pick p {
  margin: 34px 0 12px;
  font: 600 18px/1.4 var(--serif);
}

.boring-pick small {
  color: var(--muted);
  font-size: 11px;
}

.objections {
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.objection-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 130px;
  align-items: start;
}

.objection-sticky {
  position: sticky;
  top: 96px;
}

.objection-sticky h2 {
  font-size: clamp(52px, 5.6vw, 82px);
}

.objection-sticky > p:not(.section-label) {
  color: var(--green);
  font: 600 20px/1.4 var(--serif);
}

.objection-list {
  counter-reset: objections;
}

.objection-list article {
  padding: 0 0 48px 72px;
  border-bottom: 1px solid var(--rule);
}

.objection-list article + article {
  padding-top: 48px;
}

.objection-list article > span {
  float: left;
  margin-left: -72px;
  color: var(--green);
  font: 600 12px/1 var(--mono);
}

.objection-list h3 {
  font: 600 25px/1.35 var(--serif);
}

.objection-list p {
  color: #4b4e47;
  font-size: 16px;
  line-height: 1.75;
}

.objection-list p:last-child {
  margin-bottom: 0;
}

.objection-list strong {
  color: var(--ink);
}

.offer-section {
  background:
    linear-gradient(rgba(173, 198, 183, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 198, 183, 0.05) 1px, transparent 1px),
    var(--terminal);
  background-size: 48px 48px;
}

.offer-card {
  width: min(100% - 48px, 780px);
  margin-inline: auto;
  border: 1px solid #3d4b42;
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(56, 215, 137, 0.12);
}

.offer-card > header,
.offer-card > footer {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: var(--terminal-2);
  color: #e9eee9;
}

.offer-card > header .brand small {
  color: #79867d;
}

.offer-card > header > span {
  color: #839087;
  font: 550 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.offer-body {
  padding: 62px;
}

.offer-body h2 {
  margin-bottom: 10px;
  font-size: clamp(50px, 6vw, 74px);
  text-align: center;
}

.offer-body > p:not(.section-label, .offer-microcopy) {
  color: var(--muted);
  text-align: center;
}

.offer-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-block: 32px 42px;
  font-family: var(--mono);
}

.offer-price s {
  color: var(--muted);
  font-size: 17px;
}

.offer-price > span {
  color: var(--green);
}

.offer-price strong {
  color: var(--green);
  font: 600 72px/1 var(--serif);
}

.offer-price small {
  font: 500 18px/1 var(--mono);
}

.offer-clarifier {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin: -18px 0 34px;
  color: var(--muted);
  font: 550 9px/1.4 var(--mono);
}

.offer-clarifier strong {
  color: var(--ink);
}

.offer-clarifier span {
  padding-left: 18px;
  border-left: 1px solid var(--rule);
}

.offer-body ul {
  display: grid;
  gap: 0;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.offer-body li {
  position: relative;
  padding: 17px 0 17px 38px;
  border-top: 1px solid var(--rule);
  color: #3f423c;
  font-size: 15px;
  line-height: 1.5;
}

.offer-body li:last-child {
  border-bottom: 1px solid var(--rule);
}

.offer-body li::before {
  position: absolute;
  top: 17px;
  left: 5px;
  color: var(--green);
  font: 700 15px/1 var(--mono);
  content: "✓";
}

.brokerage-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin: -8px 0 30px;
  padding: 17px 18px;
  border: 1px solid #c5d9cd;
  background: #f0f5f0;
}

.brokerage-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font: 700 11px/1 var(--mono);
}

.brokerage-note p {
  margin: 0;
  color: #596057;
  font-size: 11px;
  line-height: 1.55;
}

.brokerage-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.offer-cta {
  width: 100%;
}

.offer-microcopy {
  margin: 20px 0 0;
  color: var(--muted);
  font: 500 9px/1.4 var(--mono);
  text-align: center;
}

.offer-card > footer {
  justify-content: space-around;
  color: #89968d;
  font: 550 8px/1 var(--mono);
}

.guarantee {
  background: var(--bone);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 120px;
  align-items: center;
}

.guarantee-seal {
  position: relative;
  display: flex;
  width: min(100%, 390px);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  outline: 1px solid var(--green);
  outline-offset: -18px;
  background: var(--paper);
  color: var(--green);
}

.guarantee-seal::before,
.guarantee-seal::after {
  position: absolute;
  width: 72%;
  height: 1px;
  background: var(--green);
  content: "";
}

.guarantee-seal::before {
  top: 88px;
}

.guarantee-seal::after {
  bottom: 88px;
}

.guarantee-seal span,
.guarantee-seal small {
  font: 650 9px/1 var(--mono);
  letter-spacing: 0.14em;
}

.guarantee-seal strong {
  font: 500 120px/0.82 var(--serif);
}

.guarantee-seal em {
  font: 650 17px/1 var(--mono);
  letter-spacing: 0.16em;
}

.guarantee-seal small {
  margin-top: 18px;
}

.guarantee-copy h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.guarantee-copy > p:not(.section-label) {
  color: #4d5049;
  font-size: 16px;
  line-height: 1.72;
}

.guarantee-cta {
  margin-top: 24px;
}

.cta-note {
  max-width: 560px;
  margin: 17px 0 0;
  color: var(--muted) !important;
  font: 500 9px/1.55 var(--mono) !important;
}

.final-push {
  border-block: 1px solid var(--rule);
  background: var(--paper);
}

.final-push h2 {
  margin-bottom: 46px;
  font-size: clamp(50px, 5.8vw, 82px);
  text-align: center;
}

.final-push .reading-column blockquote {
  margin-inline: -80px;
  color: var(--green);
}

.final-price {
  margin-block: 42px 24px !important;
  color: var(--ink) !important;
  font: 600 26px/1.3 var(--serif) !important;
  text-align: center;
}

.final-cta {
  width: 100%;
}

.final-note {
  max-width: none;
  text-align: center;
}

.faq {
  background: var(--bone);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 120px;
}

.faq-grid h2 {
  font-size: clamp(52px, 5.8vw, 82px);
}

.faq-grid > div:first-child > p:not(.section-label) {
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--rule);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font: 550 21px/1.35 var(--serif);
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--green);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -8px 48px 32px 0;
  color: #555850;
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  padding-block: 68px 48px;
  border-top: 1px solid var(--terminal-rule);
  background: var(--terminal);
  color: #d8ddd8;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--terminal-rule);
}

.footer .brand small {
  color: #738078;
}

.footer-top > div {
  display: flex;
  gap: 28px;
}

.footer a {
  color: #9ca79f;
  font: 550 10px/1 var(--mono);
  text-decoration: none;
}

.footer a:hover {
  color: var(--green-bright);
}

.legal {
  columns: 3;
  column-gap: 48px;
  margin-top: 42px;
  color: #9ca59f;
  font-size: 12px;
  line-height: 1.65;
}

.legal strong {
  display: block;
  margin-bottom: 12px;
  color: #e4e8e4;
}

.legal p {
  break-inside: avoid;
}

.copyright {
  margin: 44px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--terminal-rule);
  color: #77847b;
  font: 500 9px/1 var(--mono);
  text-align: center;
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scan-beam {
  from {
    transform: translateY(-160px);
  }
  to {
    transform: translateY(260px);
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-product {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .section-intro,
  .sixty-grid,
  .machine-grid,
  .objection-grid,
  .guarantee-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

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

  .scan-machine > div:nth-child(3) {
    border-top: 1px solid var(--terminal-rule);
    border-left: 0;
  }

  .scan-machine > div:nth-child(4) {
    border-top: 1px solid var(--terminal-rule);
  }

  .objection-sticky {
    position: static;
  }

  .guarantee-seal {
    width: 330px;
    margin-inline: auto;
  }

  .legal {
    columns: 2;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 56px;
  }

  .shell,
  .reading-column,
  .offer-card {
    width: min(100% - 32px, 100%);
  }

  .section-pad {
    padding-block: 88px;
  }

  .sticky-offer {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 56px;
    border-top: 1px solid var(--terminal-rule);
    border-bottom: 0;
    box-shadow: 0 -10px 32px rgba(10, 15, 12, 0.18);
  }

  .sticky-offer p {
    display: none;
  }

  .sticky-cta {
    width: 100%;
    min-width: 0;
    min-height: 56px !important;
  }

  .site-masthead {
    min-height: 66px;
  }

  .market-status span:not(:first-child) {
    display: none;
  }

  .market-status {
    font-size: 7px;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small {
    font-size: 6px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .hero-grid {
    gap: 54px;
    padding-block: 54px 42px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.8vw, 66px);
    line-height: 0.91;
  }

  .hero-subhead {
    margin: 38px 0 30px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-offer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price {
    grid-template-columns: auto auto;
    gap: 0 16px;
    align-items: baseline;
    padding-right: 0;
    border: 0;
  }

  .price small {
    grid-column: 1 / -1;
    max-width: none;
  }

  .hero-trust {
    display: grid;
    gap: 9px;
  }

  .hero-offer .cta,
  .letter-cta,
  .offer-cta,
  .guarantee-cta,
  .final-cta {
    width: 100%;
  }

  .product-email-wrap {
    margin-inline: -6px;
    padding: 15px 0 22px 8px;
  }

  .email-shadow {
    inset: 35px -8px 0 22px;
  }

  .email-chrome {
    grid-template-columns: 1fr 1fr;
    padding-inline: 14px;
  }

  .email-chrome > span:nth-child(2) {
    display: none;
  }

  .email-subject,
  .email-pick {
    padding: 20px 18px;
  }

  .email-subject h3 {
    font-size: 21px;
  }

  .email-subject > div {
    gap: 10px;
    font-size: 7px;
  }

  .ticker {
    font-size: 41px;
  }

  .rank {
    padding: 8px;
    font-size: 7px;
  }

  .email-reason {
    grid-template-columns: 1fr;
  }

  .email-data strong {
    font-size: 8px;
  }

  .hero-video {
    padding-bottom: 42px;
  }

  .video-poster {
    min-height: 250px;
  }

  .video-grid {
    grid-template-columns: 1fr 70px 1fr;
  }

  .play-button {
    width: 68px;
    height: 68px;
  }

  .video-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: left;
  }

  .video-caption strong {
    font-size: 17px;
  }

  .walkthrough {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px;
  }

  .walkthrough > i {
    transform: rotate(90deg);
  }

  .credibility-inner {
    min-height: 130px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 25px;
    text-align: center;
  }

  .credibility-inner > div {
    gap: 18px;
  }

  .credibility-inner strong {
    font-size: 11px;
  }

  h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .section-intro {
    gap: 40px;
  }

  .section-copy {
    font-size: 16px;
  }

  .scan-machine {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .scan-machine > div {
    min-height: 280px;
    padding: 28px;
  }

  .scan-machine > div + div,
  .scan-machine > div:nth-child(3) {
    border-top: 1px solid var(--terminal-rule);
    border-left: 0;
  }

  .reading-column > p:not(.section-label) {
    font-size: 18px;
    line-height: 1.75;
  }

  .reading-column blockquote,
  .final-push .reading-column blockquote {
    margin: 42px -8px;
    padding: 28px 20px;
    font-size: 27px;
  }

  .mid-offer {
    margin-inline: -4px;
    padding: 26px 20px;
    box-shadow: 6px 6px 0 var(--paper-deep);
  }

  .mid-offer > div {
    align-items: flex-start;
  }

  .mid-offer > div strong {
    font-size: 18px;
  }

  .mid-offer ul {
    grid-template-columns: 1fr;
  }

  .machine-grid {
    gap: 54px;
  }

  .terminal-stats {
    grid-template-columns: 1fr;
  }

  .terminal-stats div + div {
    border-top: 1px solid var(--terminal-rule);
    border-left: 0;
  }

  .terminal-table {
    padding-inline: 14px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 0.46fr 0.68fr 1.15fr 0.55fr;
    gap: 8px;
    font-size: 8px;
  }

  .sixty h2,
  .math-head h2 {
    font-size: clamp(43px, 13.5vw, 60px);
  }

  .math-callout {
    flex-wrap: wrap;
    gap: 8px;
  }

  .math-callout strong {
    width: 100%;
    font-size: 70px;
  }

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

  .pick-card {
    grid-template-columns: 1fr;
  }

  .pick-card .line-chart {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .boring-pick {
    margin-top: 72px;
  }

  .boring-pick span,
  .boring-pick strong {
    font-size: clamp(44px, 15vw, 68px);
  }

  .objection-list article {
    padding-left: 48px;
  }

  .objection-list article > span {
    margin-left: -48px;
  }

  .offer-body {
    padding: 48px 24px;
  }

  .offer-card > header {
    padding-inline: 18px;
  }

  .offer-card > header > span {
    display: none;
  }

  .offer-price strong {
    font-size: 60px;
  }

  .offer-clarifier {
    flex-direction: column;
  }

  .offer-clarifier span {
    padding-top: 6px;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .offer-card > footer {
    min-height: 90px;
    flex-wrap: wrap;
    gap: 13px;
    padding-block: 20px;
  }

  .guarantee-seal {
    width: min(100%, 320px);
  }

  .guarantee-seal strong {
    font-size: 95px;
  }

  .guarantee-seal::before {
    top: 76px;
  }

  .guarantee-seal::after {
    bottom: 76px;
  }

  .faq-grid {
    gap: 40px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 19px;
  }

  .footer-top {
    align-items: flex-start;
    gap: 30px;
  }

  .footer-top > div {
    flex-direction: column;
    gap: 12px;
  }

  .legal {
    columns: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
