:root {
  --bg: #000402;
  --bg-alt: #020a05;
  --panel: rgba(0, 13, 6, 0.9);
  --panel-strong: rgba(0, 20, 9, 0.94);
  --text: #eaffef;
  --muted: #82a58c;
  --line: rgba(0, 255, 102, 0.2);
  --green: #00ff66;
  --green-soft: #a8ffc4;
  --orange: #00e65b;
  --orange-soft: #8effb2;
  --red: #ff4d6d;
  --ink: #001a0a;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.46);
  --sans: "Manrope", system-ui, sans-serif;
  --display: "IBM Plex Mono", ui-monospace, monospace;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,255,102,.1) 4px),
    radial-gradient(circle at center, transparent 35%, rgba(0, 4, 2, .88) 100%);
}

.matrix-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #000;
}

.matrix-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 20%, rgba(0, 6, 2, .38) 62%, rgba(0, 0, 0, .88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 20%, transparent 80%, rgba(0,0,0,.62));
}

.matrix-frame {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 38px), 1280px);
  margin: 19px auto 32px;
  border: 1px solid rgba(0, 255, 102, .8);
  border-radius: 22px;
  background: rgba(0, 7, 3, .84);
  box-shadow:
    0 0 12px rgba(0, 255, 102, .62),
    0 0 42px rgba(0, 255, 102, .2),
    inset 0 0 32px rgba(0, 255, 102, .055),
    0 42px 120px rgba(0, 0, 0, .8);
  backdrop-filter: blur(3px);
}

.matrix-frame::before,
.matrix-frame::after {
  position: absolute;
  z-index: 55;
  width: 84px;
  height: 84px;
  pointer-events: none;
  content: "";
}

.matrix-frame::before {
  top: -4px;
  left: -4px;
  border-top: 4px solid var(--green);
  border-left: 4px solid var(--green);
  filter: drop-shadow(0 0 8px var(--green));
}

.matrix-frame::after {
  right: -4px;
  bottom: -4px;
  border-right: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  filter: drop-shadow(0 0 8px var(--green));
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 6, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: .92rem;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.links > a:not(.btn) {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
}

.links > a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 14px 38px rgba(173, 255, 92, .16);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  background: var(--green-soft);
  box-shadow: 0 18px 48px rgba(173, 255, 92, .24);
  transform: translateY(-2px);
}

.btn::before {
  content: "↗";
  font-family: var(--mono);
  font-size: 1.05rem;
}

.btn-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: .76rem;
}

.btn-orange {
  background: var(--orange);
  box-shadow: 0 14px 38px rgba(255, 157, 61, .16);
}

.btn-orange:hover {
  background: var(--orange-soft);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 74px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) 0;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  top: 8%;
  right: -14rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(173, 255, 92, .18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 6rem rgba(173, 255, 92, .025),
    0 0 0 12rem rgba(255, 157, 61, .018);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(310px, .74fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.3rem, 8.2vw, 7.8rem);
  letter-spacing: -.065em;
  text-transform: uppercase;
}

h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #d9d9cf;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

.hero-lead strong {
  color: var(--orange-soft);
}

.notice {
  max-width: 760px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 157, 61, .3);
  border-radius: 15px;
  color: #c6c8bd;
  background: rgba(255, 157, 61, .06);
  font-size: .83rem;
}

.notice strong {
  color: var(--orange-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.micro {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.5;
}

.money-card {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(173, 255, 92, .35);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(173, 255, 92, .12), transparent 45%),
    rgba(18, 21, 15, .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.money-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), var(--orange), transparent);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(173, 255, 92, .24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(173, 255, 92, .06);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.money-card h2 {
  margin-top: 24px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 24px 0 10px;
  color: var(--green-soft);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: .88;
  letter-spacing: -.07em;
}

.price span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: 0;
}

.money-card > p {
  margin: 0;
  color: var(--muted);
}

.offer-facts {
  display: grid;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.offer-facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}

.offer-facts strong {
  color: var(--text);
  text-align: right;
}

.money-card .btn {
  width: 100%;
}

.section {
  padding: clamp(80px, 10vw, 144px) 0;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: rgba(13, 15, 11, .58);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .35fr) minmax(0, 1.65fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 76px);
}

.number {
  color: var(--green);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.title {
  max-width: 940px;
  font-size: clamp(2.7rem, 5.5vw, 5.9rem);
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.title .orange {
  color: var(--orange);
}

.intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.intro strong {
  color: var(--text);
}

.sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.sales-copy p {
  margin: 0 0 1em;
  color: #d1d2c8;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.sales-copy .punch {
  padding-left: 22px;
  border-left: 3px solid var(--green);
  color: var(--green-soft);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.sales-system {
  padding: clamp(25px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.sales-system > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
}

.pipeline {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.pipeline div {
  position: relative;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255,255,255,.025);
  font-family: var(--mono);
  font-size: .75rem;
}

.pipeline div:not(:last-child)::after {
  position: absolute;
  bottom: -11px;
  left: 50%;
  z-index: 2;
  color: var(--green);
  content: "↓";
  transform: translateX(-50%);
}

.pipeline strong {
  color: var(--text);
}

.pipeline div:last-child {
  border-color: rgba(173, 255, 92, .34);
  color: var(--ink);
  background: var(--green);
}

.pipeline div:last-child strong {
  color: var(--ink);
}

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

.project {
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}

.project:hover {
  border-color: rgba(173, 255, 92, .42);
  transform: translateY(-3px);
}

.project span {
  color: var(--green);
  font-family: var(--mono);
  font-size: .65rem;
}

.project h3 {
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 26px;
  border: 1px solid rgba(255, 157, 61, .24);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 157, 61, .05);
  text-align: center;
}

.project-note strong {
  color: var(--orange-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.proof-card {
  position: relative;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(255, 157, 61, .3);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 157, 61, .11), transparent 55%),
    var(--panel);
  box-shadow: var(--shadow);
}

.proof-card::before {
  display: block;
  margin-bottom: 30px;
  color: var(--orange);
  content: "DESDE LOS 13";
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.proof-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.13;
  text-transform: uppercase;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.proof-copy .lead {
  color: var(--text);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
}

.proof-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #d5d6cc;
  background: rgba(255,255,255,.025);
}

.proof-list li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

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

.foundation-card {
  min-height: 280px;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.foundation-card:nth-child(2) {
  border-color: rgba(173, 255, 92, .3);
  background:
    linear-gradient(145deg, rgba(173, 255, 92, .08), transparent 60%),
    var(--panel);
}

.foundation-card span {
  color: var(--green);
  font-family: var(--mono);
  font-size: .65rem;
}

.foundation-card h3 {
  margin: 28px 0 17px;
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  text-transform: uppercase;
}

.foundation-card p {
  margin: 0;
  color: var(--muted);
}

.tool-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: 18px;
}

.tool-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--panel);
}

.tool-panel h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.tool-panel p {
  color: var(--muted);
}

.tool-panel.highlight {
  border-color: rgba(255, 157, 61, .3);
  background:
    radial-gradient(circle at 95% 0, rgba(255, 157, 61, .14), transparent 20rem),
    var(--panel);
}

.tool-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tool-list li {
  position: relative;
  padding-left: 28px;
  color: #d4d5cc;
}

.tool-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-family: var(--mono);
  font-weight: 700;
}

.mas {
  position: relative;
  padding: clamp(38px, 7vw, 76px);
  border: 1px solid rgba(173, 255, 92, .35);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(173, 255, 92, .15), transparent 24rem),
    linear-gradient(135deg, rgba(255, 157, 61, .08), transparent 55%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mas::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  color: rgba(173, 255, 92, .045);
  content: "MAS";
  font-family: var(--display);
  font-size: 19rem;
  line-height: .8;
}

.mas-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.mas-badge {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(173, 255, 92, .3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(173, 255, 92, .06);
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
}

.mas h2 {
  margin: 24px 0;
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.mas h2 span {
  color: var(--green);
}

.mas p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.mas .strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

summary {
  position: relative;
  padding: 24px 64px 24px 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  text-transform: uppercase;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  font-family: var(--mono);
}

details[open] summary::after {
  content: "−";
}

.answer {
  padding: 0 24px 26px;
  color: var(--muted);
}

.answer p {
  margin: 0 0 12px;
}

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

.final {
  position: relative;
  padding: clamp(94px, 12vw, 170px) 0;
  text-align: center;
  overflow: hidden;
}

.final::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  content: "";
  background: rgba(173, 255, 92, .08);
  filter: blur(90px);
  transform: translate(-50%, -50%);
}

.final .container {
  position: relative;
  z-index: 2;
}

.final h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(3.1rem, 7.5vw, 7.2rem);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.final h2 span {
  color: var(--green);
}

.final-copy {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin: 42px auto 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(18, 21, 15, .8);
  overflow: hidden;
}

.offer-grid div {
  padding: 21px 16px;
  border-right: 1px solid var(--line);
}

.offer-grid div:last-child {
  border-right: 0;
}

.offer-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.offer-grid strong {
  font-family: var(--display);
  font-size: .96rem;
  text-transform: uppercase;
}

.final .btn {
  min-height: 62px;
  padding-inline: 34px;
}

.fine {
  max-width: 720px;
  margin: 18px auto 0;
  color: #7c8175;
  font-size: .71rem;
}

footer {
  padding: 28px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner strong {
  color: var(--text);
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 60;
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 960px) {
  .links > a:not(.btn) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .sales-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .money-card {
    max-width: 620px;
  }

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

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

  .offer-grid div:nth-child(2) {
    border-right: 0;
  }

  .offer-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .links .btn {
    display: none;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand-copy span {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero::after {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-grid,
  .foundation,
  .tool-stack {
    grid-template-columns: 1fr;
  }

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

  .offer-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-grid div:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    padding-bottom: 100px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 430px) {
  .money-card,
  .proof-card,
  .tool-panel,
  .mas {
    border-radius: 20px;
  }
}

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

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

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

/* Matrix / terminal visual system */
.header {
  border-bottom-color: rgba(0, 255, 102, .32);
  border-radius: 21px 21px 0 0;
  background: rgba(0, 8, 3, .9);
}

.brand img {
  border: 1px solid rgba(0, 255, 102, .65);
  box-shadow: 0 0 13px rgba(0, 255, 102, .48);
  filter: saturate(.7) hue-rotate(58deg);
}

.brand-copy strong,
h1,
h2,
h3,
.price,
.proof-card::before {
  text-shadow:
    0 0 7px rgba(0, 255, 102, .42),
    0 0 22px rgba(0, 255, 102, .12);
}

.links > a:not(.btn) {
  font-family: var(--mono);
}

.links > a:not(.btn)::before {
  color: var(--green);
  content: "./";
}

.btn,
.btn-orange {
  border-color: rgba(183, 255, 207, .68);
  color: #001a0a;
  background: var(--green);
  box-shadow:
    0 0 8px rgba(0, 255, 102, .72),
    0 0 28px rgba(0, 255, 102, .3);
  font-family: var(--mono);
  text-transform: uppercase;
}

.btn:hover,
.btn-orange:hover {
  color: #000;
  background: #b7ffcf;
  box-shadow:
    0 0 13px rgba(0, 255, 102, .9),
    0 0 42px rgba(0, 255, 102, .5);
}

.hero {
  min-height: calc(100vh - 112px);
  background:
    linear-gradient(90deg, rgba(0, 10, 4, .88), rgba(0, 10, 4, .5)),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(0,255,102,.035) 80px);
}

.hero::after {
  border-color: rgba(0, 255, 102, .24);
  box-shadow:
    0 0 0 6rem rgba(0, 255, 102, .025),
    0 0 0 12rem rgba(0, 255, 102, .015),
    0 0 55px rgba(0, 255, 102, .15);
}

.kicker,
.number,
.status,
.project span,
.foundation-card span,
.mas-badge,
.sales-system > span {
  color: var(--green);
  text-shadow: 0 0 8px rgba(0, 255, 102, .65);
}

.kicker::before {
  box-shadow: 0 0 8px currentColor;
}

h1 span,
.title .orange,
.final h2 span,
.mas h2 span {
  color: var(--green);
  text-shadow:
    0 0 9px rgba(0, 255, 102, .7),
    0 0 32px rgba(0, 255, 102, .3);
}

.notice {
  border-color: rgba(0, 255, 102, .36);
  background: rgba(0, 255, 102, .055);
  box-shadow: inset 0 0 22px rgba(0, 255, 102, .035);
  font-family: var(--mono);
}

.notice::before {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  content: "[ SYSTEM_NOTICE ]";
  font-size: .66rem;
  letter-spacing: .08em;
}

.notice strong {
  color: var(--green-soft);
}

.money-card,
.sales-system,
.project,
.proof-card,
.foundation-card,
.tool-panel,
details {
  border-color: rgba(0, 255, 102, .26);
  background:
    linear-gradient(145deg, rgba(0, 255, 102, .045), transparent 55%),
    rgba(0, 11, 5, .92);
  box-shadow:
    inset 0 0 20px rgba(0, 255, 102, .025),
    0 16px 50px rgba(0, 0, 0, .3);
}

.money-card,
.proof-card,
.tool-panel.highlight {
  border-color: rgba(0, 255, 102, .62);
  box-shadow:
    0 0 11px rgba(0, 255, 102, .2),
    inset 0 0 28px rgba(0, 255, 102, .04),
    0 22px 65px rgba(0, 0, 0, .42);
}

.money-card::before {
  background: linear-gradient(90deg, transparent, var(--green), #d9ffe5, var(--green), transparent);
  box-shadow: 0 0 10px var(--green);
}

.section-alt {
  border-block-color: rgba(0, 255, 102, .22);
  background:
    linear-gradient(90deg, rgba(0, 255, 102, .035), transparent 30%, transparent 70%, rgba(0, 255, 102, .035)),
    rgba(0, 8, 3, .72);
}

.section-head {
  position: relative;
}

.section-head::after {
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--green), rgba(0,255,102,.08), transparent);
  box-shadow: 0 0 7px rgba(0, 255, 102, .32);
}

.title::before {
  color: var(--green);
  content: ">_ ";
  text-shadow: 0 0 8px rgba(0, 255, 102, .75);
}

.sales-copy .punch {
  border-left-color: var(--green);
  color: var(--green-soft);
}

.pipeline div {
  border-color: rgba(0, 255, 102, .2);
  background: rgba(0, 255, 102, .025);
  font-family: var(--mono);
}

.pipeline div:last-child {
  border-color: rgba(183, 255, 207, .8);
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 255, 102, .46);
}

.project:hover {
  border-color: var(--green);
  box-shadow:
    0 0 12px rgba(0, 255, 102, .28),
    inset 0 0 24px rgba(0, 255, 102, .035);
}

.project h3::before {
  color: var(--green);
  content: "> ";
}

.project-note {
  border-color: rgba(0, 255, 102, .34);
  background: rgba(0, 255, 102, .045);
  box-shadow: inset 0 0 24px rgba(0, 255, 102, .025);
  font-family: var(--mono);
}

.project-note strong,
.proof-copy .lead,
.tool-panel.highlight h3 {
  color: var(--green-soft);
}

.foundation-card:nth-child(2),
.tool-panel.highlight {
  border-color: rgba(0, 255, 102, .48);
  background:
    linear-gradient(145deg, rgba(0, 255, 102, .075), transparent 60%),
    rgba(0, 13, 6, .94);
}

.mas {
  border-color: rgba(0, 255, 102, .75);
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 255, 102, .15), transparent 24rem),
    repeating-linear-gradient(90deg, transparent 0, transparent 59px, rgba(0,255,102,.04) 60px),
    rgba(0, 10, 4, .94);
  box-shadow:
    0 0 16px rgba(0, 255, 102, .4),
    0 0 60px rgba(0, 255, 102, .12),
    inset 0 0 46px rgba(0, 255, 102, .055);
}

.mas::after {
  color: rgba(0, 255, 102, .055);
}

summary::after {
  border-color: rgba(0, 255, 102, .35);
  color: var(--green);
  box-shadow: 0 0 9px rgba(0, 255, 102, .15);
}

details[open] {
  border-color: rgba(0, 255, 102, .56);
  box-shadow: 0 0 15px rgba(0, 255, 102, .13);
}

.final {
  border-radius: 0 0 21px 21px;
  background:
    radial-gradient(circle at center, rgba(0, 255, 102, .1), transparent 48%),
    rgba(0, 8, 3, .75);
}

.final::before {
  background: rgba(0, 255, 102, .1);
}

.offer-grid {
  border-color: rgba(0, 255, 102, .34);
  background: rgba(0, 12, 5, .88);
  box-shadow: 0 0 18px rgba(0, 255, 102, .1);
}

footer {
  border-top-color: rgba(0, 255, 102, .25);
  font-family: var(--mono);
}

@media (max-width: 700px) {
  .matrix-frame {
    width: calc(100% - 14px);
    margin: 7px auto 84px;
    border-radius: 14px;
  }

  .header {
    border-radius: 13px 13px 0 0;
  }

  .matrix-frame::before,
  .matrix-frame::after {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    background: rgba(0, 8, 3, .66);
  }

  .title::before {
    display: block;
    margin-bottom: 8px;
    font-size: .55em;
  }

  .final {
    border-radius: 0 0 13px 13px;
  }
}
