@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
  --bg: #050806;
  --bg-2: #08100b;
  --panel: rgba(11, 18, 14, 0.78);
  --panel-strong: rgba(14, 24, 18, 0.96);
  --line: rgba(149, 255, 71, 0.16);
  --line-strong: rgba(149, 255, 71, 0.34);
  --text: #f3f7f0;
  --muted: #9dad9e;
  --soft: #d8e8d2;
  --green: #9dff45;
  --green-2: #5bea7d;
  --orange: #ff7a18;
  --orange-2: #ffb347;
  --red: #ff5a5f;
  --cyan: #6ee7f5;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

button,
input {
  font: inherit;
}

.site-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(157, 255, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 255, 69, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(157, 255, 69, 0.13), transparent 31%),
    radial-gradient(circle at 80% 8%, rgba(255, 122, 24, 0.12), transparent 28%),
    linear-gradient(180deg, #030604 0%, #07100a 40%, #050806 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.site-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.14), rgba(5, 8, 6, 0.92) 62%, #050806);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(5, 8, 6, 0.78);
  border-bottom: 1px solid rgba(157, 255, 69, 0.16);
  backdrop-filter: blur(18px);
}

.brand,
.nav-cta,
.btn,
.system-label,
.timeline-table th,
.badge-status,
.module-number {
  font-family: var(--mono);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
}
.brand-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(157, 255, 69, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--soft);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: var(--bg);
  font-size: 0.84rem;
  font-weight: 800;
  background: var(--green);
  border-radius: 7px;
  box-shadow: 0 0 30px rgba(157, 255, 69, 0.17);
}

section {
  position: relative;
}

.section-dark,
.section-panel,
.price-band,
.checkout-section {
  border-bottom: 1px solid rgba(157, 255, 69, 0.12);
}

.section-dark {
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.72), rgba(5, 8, 6, 0.94));
}

.section-panel {
  padding: 104px 0;
  background: linear-gradient(180deg, rgba(9, 16, 11, 0.9), rgba(5, 8, 6, 0.92));
}

.hero {
  min-height: calc(100svh - 64px);
  padding: 48px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(690px, 1fr) minmax(380px, 0.78fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  padding: 16px 0 54px;
}

.system-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.system-label.muted {
  color: var(--orange-2);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.18rem, 4.25vw, 4rem);
  line-height: 1.01;
  letter-spacing: 0;
  font-weight: 900;
}

h1::first-line {
  color: var(--text);
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.62rem, 3.32vw, 3.25rem);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.28;
}

.hero h1 {
  text-wrap: balance;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(2.35rem, 2.92vw, 3.15rem);
  line-height: 1.06;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title::after {
  display: none;
}

.hero h1::after {
  content: '';
  display: inline-block;
  width: 0.55em;
  height: 0.13em;
  margin-left: 0.12em;
  background: var(--green);
  box-shadow: 0 0 24px rgba(157, 255, 69, 0.45);
  vertical-align: baseline;
}

.hero .hero-title::after {
  display: none;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 1.03rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #061007;
  background: linear-gradient(135deg, var(--green), #d8ff69);
  box-shadow: 0 18px 42px rgba(157, 255, 69, 0.18);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(157, 255, 69, 0.24);
}

.btn-ghost:hover {
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(157, 255, 69, 0.08);
}

.btn.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.8rem;
}

.trust-line {
  max-width: 660px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: min(760px, 112%);
  max-width: none;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.72));
}

.price-console {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(310px, 52%);
  padding: 18px;
  border: 1px solid rgba(157, 255, 69, 0.34);
  border-radius: var(--radius);
  background: rgba(8, 14, 11, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.price-console span,
.price-console small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.price-console strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 2rem;
  line-height: 1.1;
}

.hero-output {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid rgba(157, 255, 69, 0.14);
  border-bottom: 0;
  background: rgba(157, 255, 69, 0.13);
}

.hero-output div {
  min-height: 94px;
  padding: 20px;
  background: rgba(6, 11, 8, 0.82);
  color: var(--soft);
  font-weight: 700;
}

.hero-output span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.section-heading {
  max-width: 680px;
}

.section-heading.center {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 42px;
  align-items: end;
  max-width: none;
  margin-bottom: 38px;
}

.section-heading.compact .system-label {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p:not(.system-label) {
  color: var(--muted);
  font-size: 1.04rem;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-active {
  color: #091106;
  background: var(--green);
}

.badge-upcoming {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-warning {
  margin-bottom: 68px;
}

.price-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.price-roadmap::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 21px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(255, 179, 71, 0.85), rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 28px rgba(157, 255, 69, 0.22);
}

.roadmap-step {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.roadmap-dot {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(157, 255, 69, 0.35);
  border-radius: 50%;
  background: #071009;
  box-shadow: inset 0 0 0 10px rgba(157, 255, 69, 0.08), 0 0 28px rgba(157, 255, 69, 0.14);
}

.roadmap-step.active-price .roadmap-dot {
  background: var(--green);
  box-shadow: 0 0 34px rgba(157, 255, 69, 0.44);
}

.roadmap-step.past-price {
  opacity: 0.45;
}

.roadmap-card {
  width: 100%;
  min-height: 162px;
  padding: 18px 15px;
  display: grid;
  align-content: start;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(157, 255, 69, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 22, 16, 0.9), rgba(5, 8, 6, 0.82));
}

.active-price .roadmap-card {
  border-color: rgba(157, 255, 69, 0.46);
  background: linear-gradient(180deg, rgba(157, 255, 69, 0.13), rgba(5, 8, 6, 0.86));
}

.roadmap-date {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap-card strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.05;
}

.active-price .roadmap-card strong {
  color: var(--green);
}

.roadmap-card .badge-status {
  justify-self: center;
  height: auto;
  min-height: 28px;
  padding: 5px 9px;
  font-style: normal;
  line-height: 1.25;
}

.price-note {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  color: var(--soft);
}

.price-note p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(40px, 7vw, 94px);
  padding: 108px 0;
}

.sticky-copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.copy-stack {
  display: grid;
  gap: 20px;
  color: var(--soft);
  font-size: 1.03rem;
}

.copy-stack blockquote {
  margin: 10px 0 0;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 800;
  border-left: 3px solid var(--orange);
  background: rgba(255, 122, 24, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 8px 0;
}

.problem-grid div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(157, 255, 69, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.problem-grid strong,
.problem-grid span {
  display: block;
}

.problem-grid strong {
  margin-bottom: 8px;
  color: var(--green);
}

.problem-grid span {
  color: var(--muted);
}

.sequence-list {
  display: grid;
  gap: 12px;
}

.sequence-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 70px;
  border: 1px solid rgba(157, 255, 69, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 8, 6, 0.45);
}

.sequence-list span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--green);
  font-family: var(--mono);
  border-right: 1px solid rgba(157, 255, 69, 0.14);
}

.sequence-list p {
  margin: 0;
  padding: 0 20px;
  color: var(--soft);
  font-weight: 700;
}

.definition-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 56px;
  align-items: center;
  padding: 108px 0;
}

.definition-card {
  padding: 24px;
  border: 1px solid rgba(157, 255, 69, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 12, 9, 0.88);
  box-shadow: var(--shadow);
}

.terminal-head {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.terminal-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.terminal-head span:nth-child(2) {
  background: var(--orange);
}

.terminal-head span:nth-child(3) {
  background: var(--cyan);
}

.terminal-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.9rem;
}

.terminal-lines p {
  margin: 0;
}

.terminal-lines b {
  color: var(--green);
}

.definition-card > strong {
  display: block;
  padding-top: 18px;
  color: var(--green);
  border-top: 1px solid rgba(157, 255, 69, 0.16);
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.card,
.outcome-grid article,
.term-grid article,
.roadmap-grid article,
.dual-copy article {
  border: 1px solid rgba(157, 255, 69, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 14, 10, 0.72);
}

.card {
  min-height: 190px;
  padding: 24px;
}

.card p,
.outcome-grid p,
.term-grid p,
.roadmap-grid p,
.dual-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-visual {
  width: min(840px, 100%);
  margin: -16px auto 34px;
  padding: 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(157, 255, 69, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 22, 16, 0.78), rgba(5, 8, 6, 0.64));
}

.visual-node {
  min-width: 150px;
  min-height: 112px;
  padding: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--soft);
  text-align: center;
  border: 1px solid rgba(157, 255, 69, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.visual-node.active {
  color: var(--green);
  border-color: rgba(157, 255, 69, 0.44);
  background: rgba(157, 255, 69, 0.08);
  box-shadow: 0 0 40px rgba(157, 255, 69, 0.08);
}

.visual-node.muted {
  opacity: 0.78;
}

.visual-node svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-node span {
  color: inherit;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-flow {
  align-self: center;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(157, 255, 69, 0.2), var(--green), rgba(255, 179, 71, 0.5));
  box-shadow: 0 0 22px rgba(157, 255, 69, 0.18);
}

.visual-toolkit {
  flex-wrap: wrap;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
}

.outcome-grid article {
  min-height: 238px;
  padding: 24px;
}

.outcome-grid article:first-child,
.outcome-grid article:last-child {
  grid-column: span 1;
}

.outcome-grid span,
.roadmap-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.term-grid article {
  padding: 22px;
}

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

.roadmap-grid article {
  min-height: 232px;
  padding: 22px;
}

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

.dual-copy article {
  padding: 34px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  padding: 108px 0;
}

.check-list,
.x-list,
.speed-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li,
.speed-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
}

.check-list li::before,
.speed-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(157, 255, 69, 0.45);
}

.x-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 122, 24, 0.45);
}

.compact-list {
  margin-top: 22px;
}

.checkout-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(157, 255, 69, 0.06), rgba(5, 8, 6, 0.92)),
    rgba(5, 8, 6, 0.96);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 42px;
  align-items: start;
}

.checkout-copy p {
  color: var(--soft);
}

.checkout-price {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid rgba(157, 255, 69, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 14, 10, 0.76);
}

.checkout-price span,
.checkout-price small {
  display: block;
  color: var(--muted);
}

.checkout-price strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.checkout-form {
  padding: 28px;
  border: 1px solid rgba(157, 255, 69, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 12, 9, 0.92);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-row input,
.lead-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--text);
  border: 1px solid rgba(157, 255, 69, 0.2);
  border-radius: 7px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input {
  border-color: rgba(218, 165, 32, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.form-row input:focus,
.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(157, 255, 69, 0.1);
}

.lead-form input:focus {
  border-color: rgba(218, 165, 32, 0.5);
  box-shadow: none;
}

.form-row small,
.microcopy {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-error,
.lead-error {
  min-height: 22px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

.checkout-submit,
.lead-form button,
.lead-success button {
  width: 100%;
  min-height: 54px;
  color: #061007;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), #d8ff69);
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.lead-form button,
.lead-success button {
  color: #000;
  border-radius: 10px;
  background: linear-gradient(135deg, #b8860b, #ffd700, #daa520);
  text-transform: uppercase;
}

.lead-success button {
  color: #fff;
  background: linear-gradient(135deg, #0068ff, #00aaff);
  box-shadow: 0 8px 28px rgba(0, 104, 255, 0.35);
}

.checkout-submit:disabled,
.lead-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.microcopy {
  margin: 12px 0 0;
  text-align: center;
}

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

.faq-item {
  border: 1px solid rgba(157, 255, 69, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 14, 10, 0.72);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  border: 0;
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-q span {
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-q span {
  transform: rotate(225deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--muted);
}

.faq-a p {
  margin: 0;
}

.faq-item.open .faq-a {
  max-height: 220px;
  padding: 0 22px 22px;
}

.final-cta {
  padding: 112px 0;
  text-align: center;
}

.final-cta .container {
  max-width: 920px;
}

.final-cta p {
  color: var(--soft);
  font-size: 1.06rem;
}

.final-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}

.final-price span {
  padding: 10px 14px;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 800;
  border: 1px solid rgba(157, 255, 69, 0.24);
  border-radius: 7px;
  background: rgba(157, 255, 69, 0.06);
}

.footer {
  padding: 34px 20px 100px;
  color: var(--muted);
  text-align: center;
  background: var(--bg);
}

.footer p {
  margin: 0;
}

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(760px, calc(100% - 28px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(157, 255, 69, 0.28);
  border-radius: 8px;
  background: rgba(7, 12, 9, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 120px);
  transition: transform 0.28s ease;
}

.sticky-bar.visible {
  transform: translate(-50%, 0);
}

.bar-copy {
  display: grid;
  gap: 2px;
}

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

.bar-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.qr-modal,
.lead-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.qr-box {
  position: relative;
  width: min(430px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(157, 255, 69, 0.28);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.qr-close,
.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: var(--muted);
  border: 1px solid rgba(157, 255, 69, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.lead-popup-close {
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  z-index: 2;
  color: #daa520;
  border-color: rgba(218, 165, 32, 0.15);
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.08);
  font-size: 18px;
  line-height: 1;
}

.qr-amount {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.65rem;
  font-weight: 900;
}

.qr-box img {
  max-width: 260px;
  margin: 0 auto 18px;
  border-radius: 7px;
  background: white;
}

.qr-details {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  text-align: left;
}

.qr-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(157, 255, 69, 0.12);
}

.qr-details span,
.qr-note {
  color: var(--muted);
}

.qr-details strong {
  color: var(--text);
  text-align: right;
}

.qr-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 18px 0 8px;
  color: var(--green);
  font-weight: 800;
}

.qr-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(157, 255, 69, 0.18);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.paid-text {
  color: var(--green);
}

.lead-popup-box {
  position: relative;
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid rgba(218, 165, 32, 0.25);
  border-radius: 20px;
  background: #0a0a0a;
  box-shadow: 0 0 80px rgba(218, 165, 32, 0.12), 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.lead-popup-media {
  position: relative;
  max-height: 180px;
  overflow: hidden;
  background: #0a0a0a;
}

.lead-popup-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.lead-popup-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #0a0a0a 100%);
}

.lead-popup-content {
  padding: 20px 28px 28px;
}

.lead-popup-content h2 {
  margin: 12px 0 6px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #ffd700 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-popup-content > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.7;
}

.lead-free-badge {
  display: table;
  margin: 0 auto 4px;
  padding: 5px 14px;
  color: #daa520;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-benefits {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: rgba(218, 165, 32, 0.04);
  border: 1px solid rgba(218, 165, 32, 0.1);
  border-radius: 12px;
}

.lead-benefits p {
  margin: 0 0 10px;
  color: #daa520;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-benefits li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.55;
}

.lead-benefits li::before {
  content: '▸';
  margin-right: 8px;
  color: #ffd700;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.lead-success {
  display: none;
  padding: 8px 0 4px;
  text-align: center;
  border: 0;
  background: transparent;
}

.lead-success p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.lead-skip {
  display: block;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.35);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .definition-grid,
  .checkout-grid,
  .split-section,
  .fit-grid,
  .dual-copy {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero-media img {
    width: 100%;
  }

  .sticky-copy {
    position: static;
  }

  .hero-output,
  .cards.four,
  .cards.three,
  .outcome-grid,
  .term-grid,
  .roadmap-grid,
  .price-roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-roadmap::before {
    display: none;
  }

  .price-note {
    grid-template-columns: 1fr;
  }
}

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

  .topbar {
    height: 58px;
    padding: 0 14px;
  }

  .brand {
    font-size: 0.92rem;
  }

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

  .nav-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    padding-bottom: 36px;
  }

  .hero-media img {
    width: 145%;
    max-width: none;
    align-self: center;
    margin-left: -4%;
  }

  h1 {
    font-size: clamp(2.08rem, 11.5vw, 3.35rem);
  }

  .hero-title {
    font-size: clamp(1.42rem, 6.1vw, 3.45rem);
  }

  .hero-title span {
    white-space: normal;
  }

  h2 {
    font-size: clamp(1.58rem, 8.4vw, 2.42rem);
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .price-console {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: -44px;
  }

  .hero-output,
  .cards.four,
  .cards.three,
  .outcome-grid,
  .term-grid,
  .roadmap-grid,
  .price-roadmap,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .section-visual {
    margin-top: -8px;
    flex-direction: column;
    padding: 12px;
  }

  .visual-node {
    min-width: 0;
    min-height: 88px;
  }

  .visual-flow {
    width: 2px;
    height: 34px;
  }

  .visual-outcome,
  .visual-toolkit {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .visual-outcome .visual-flow {
    display: none;
  }

  .visual-outcome .visual-node.active {
    grid-column: 1 / -1;
  }

  .price-warning {
    margin-bottom: 48px;
  }

  .price-roadmap {
    gap: 12px;
    margin-top: 26px;
  }

  .roadmap-step {
    grid-template-columns: 44px 1fr;
    align-items: stretch;
    justify-items: stretch;
  }

  .roadmap-step::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 42px;
    bottom: -14px;
    width: 2px;
    background: rgba(157, 255, 69, 0.2);
  }

  .roadmap-step:last-child::before {
    display: none;
  }

  .roadmap-card {
    min-height: 122px;
    text-align: left;
  }

  .roadmap-card .badge-status {
    justify-self: start;
  }

  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading.compact .system-label {
    margin-bottom: 16px;
  }

  .section-panel,
  .price-band,
  .checkout-section,
  .final-cta {
    padding: 72px 0;
  }

  .split-section,
  .definition-grid,
  .fit-grid {
    padding: 72px 0;
  }

  .lead-popup-box {
    max-height: 92vh;
    overflow-y: auto;
  }

  .lead-popup-media {
    max-height: 150px;
  }

  .lead-popup-content {
    padding: 18px 18px 22px;
  }

  .lead-popup-content h2 {
    font-size: 1.12rem;
  }

  .sticky-bar {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    min-height: 0;
    padding: 10px 12px;
  }

  .bar-copy {
    gap: 0;
  }

  .bar-copy strong {
    font-size: 0.88rem;
  }

  .bar-copy span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .sticky-bar .btn.small {
    min-height: 40px;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
