:root {
  --page: #030706;
  --panel: #09110f;
  --panel-strong: #0d1815;
  --panel-muted: #101c19;
  --line: #214037;
  --line-bright: #347763;
  --text: #f3f7f5;
  --muted: #9bb2aa;
  --dim: #718a82;
  --accent: #23f29b;
  --accent-dark: #052d20;
  --warning: #edc871;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  margin: 0;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--warning);
  outline-offset: 4px;
}

.skip-link {
  background: var(--accent);
  color: #00130d;
  font-weight: 800;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 50;
}

.skip-link:focus {
  top: 16px;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--max-width);
  padding-left: 28px;
  padding-right: 28px;
}

.site-header {
  align-items: center;
  background: #030706;
  border-bottom: 1px solid #13251f;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2 + 28px));
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 21px;
  font-style: italic;
  letter-spacing: 0.7px;
  text-decoration: none;
}

.brand span span {
  color: var(--accent);
}

.brand-mark {
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  height: 29px;
  margin-right: 9px;
  place-items: center;
  width: 29px;
}

.brand-mark svg {
  fill: #022218;
  height: 23px;
  width: 23px;
}

.header-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.header-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--accent);
}

.button {
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 14px;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #001d13;
  box-shadow: 0 8px 24px rgba(35, 242, 155, 0.16);
}

.button-primary:hover {
  background: #58ffb9;
  border-color: #58ffb9;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line-bright);
  color: var(--text);
}

.button-secondary:hover {
  background: var(--panel);
  border-color: var(--accent);
}

.button-small {
  font-size: 13px;
  min-height: 40px;
  padding: 0 16px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  min-height: 694px;
  padding-bottom: 76px;
  padding-top: 82px;
}

.eyebrow {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: -0.7px;
}

h1 {
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 690px;
}

h2 {
  font-size: clamp(35px, 4.2vw, 52px);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.67;
}

.hero-intro {
  font-size: 17px;
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  align-items: center;
  color: var(--dim);
  display: flex;
  font-family: "Courier New", monospace;
  font-size: 12px;
  gap: 9px;
  margin: 24px 0 0;
}

.status-dot {
  background: var(--accent);
  border-radius: 50%;
  display: block;
  height: 7px;
  width: 7px;
}

.hero-art {
  position: relative;
}

.hero-art::after {
  border-bottom: 1px solid var(--line-bright);
  border-right: 1px solid var(--line-bright);
  bottom: -17px;
  content: "";
  height: 130px;
  position: absolute;
  right: -17px;
  width: 130px;
  z-index: -1;
}

.hero-art img {
  display: block;
  height: auto;
  max-width: 100%;
}

.proof-bar {
  background: #07100e;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.proof-items p {
  border-right: 1px solid var(--line);
  margin: 0;
  padding: 22px 22px 20px;
}

.proof-items p:first-child {
  border-left: 1px solid var(--line);
}

.proof-items strong,
.proof-items span {
  display: block;
}

.proof-items strong {
  color: var(--text);
  font-size: 14px;
}

.proof-items span {
  color: var(--dim);
  font-family: "Courier New", monospace;
  font-size: 11px;
  margin-top: 5px;
  text-transform: uppercase;
}

.process {
  padding-bottom: 108px;
  padding-top: 116px;
}

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

.section-heading > p:last-child {
  font-size: 17px;
}

.step-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
}

.step-card {
  border-left: 1px solid var(--line-bright);
  min-height: 250px;
  padding: 6px 28px 0;
}

.step-number {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 42px;
}

.step-card p:last-child {
  color: var(--dim);
  font-size: 14px;
  margin-bottom: 0;
}

.review-section {
  background: #07100e;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.split-layout {
  align-items: center;
  display: grid;
  gap: 82px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  padding-bottom: 104px;
  padding-top: 104px;
}

.review-panel {
  background: #050a09;
  border: 1px solid var(--line-bright);
  padding: 22px;
  position: relative;
}

.review-panel::before,
.review-panel::after {
  background: var(--accent);
  content: "";
  height: 4px;
  position: absolute;
  width: 72px;
}

.review-panel::before {
  left: -1px;
  top: -1px;
}

.review-panel::after {
  bottom: -1px;
  right: -1px;
}

.panel-topline,
.total-row,
.account-lines > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-topline {
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
}

.panel-topline p {
  color: var(--text);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.panel-topline span {
  border: 1px solid var(--line-bright);
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 4px 7px;
  text-transform: uppercase;
}

.total-row {
  padding: 36px 0 27px;
}

.total-row p {
  color: var(--dim);
  font-size: 13px;
  margin: 0;
}

.total-row strong {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 25px;
}

.account-lines {
  border-top: 1px solid var(--line);
}

.account-lines > div {
  border-bottom: 1px solid var(--line);
  gap: 15px;
  padding: 16px 0;
}

.line-icon {
  border: 1px solid var(--line-bright);
  color: var(--accent);
  display: grid;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
  height: 30px;
  place-items: center;
  width: 30px;
}

.account-lines p {
  flex: 1;
  margin: 0;
}

.account-lines strong,
.account-lines small {
  display: block;
}

.account-lines strong {
  color: var(--text);
  font-size: 13px;
}

.account-lines small {
  color: var(--dim);
  font-size: 11px;
  margin-top: 3px;
}

.account-lines > div > span:last-child {
  color: var(--dim);
  font-family: "Courier New", monospace;
}

.review-copy > p:not(.eyebrow),
.safety-copy > p:not(.eyebrow) {
  font-size: 16px;
}

.check-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  padding: 15px 0 15px 26px;
  position: relative;
}

.check-list li::before {
  color: var(--accent);
  content: "+";
  font-family: "Courier New", monospace;
  left: 2px;
  position: absolute;
}

.safety {
  align-items: center;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1fr);
  padding-bottom: 116px;
  padding-top: 116px;
}

.safety-art {
  border: 1px solid var(--line);
  padding: 42px;
}

.safety-art img {
  display: block;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
}

.safety-points {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.safety-points p {
  background: var(--panel);
  border-left: 2px solid var(--accent);
  color: var(--text);
  font-size: 13px;
  margin: 0;
  padding: 12px 14px;
}

.safety-points span {
  color: var(--accent);
  margin-right: 6px;
}

.faq {
  border-top: 1px solid var(--line);
  padding-bottom: 110px;
  padding-top: 108px;
}

.faq-list {
  border-top: 1px solid var(--line-bright);
  margin-top: 44px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

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

.faq-item button span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 23px;
  margin-left: 20px;
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 22px;
}

.faq-answer p {
  margin: 0;
}

.closing-section {
  background: var(--panel-strong);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.closing-inner {
  max-width: 800px;
  padding-bottom: 94px;
  padding-top: 94px;
  text-align: center;
}

.closing-inner p:not(.eyebrow) {
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.closing-inner .button {
  margin-top: 15px;
}

.site-footer {
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.7fr 0.65fr 0.9fr;
  padding-bottom: 52px;
}

.footer-note {
  font-size: 14px;
  margin: 18px 0 0;
  max-width: 360px;
}

.footer-grid h2 {
  color: var(--dim);
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
  text-decoration: none;
}

.footer-grid > div > a:not(.brand):hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 22px;
  padding-top: 19px;
}

.footer-bottom p {
  color: var(--dim);
  font-family: "Courier New", monospace;
  font-size: 10px;
  margin: 0;
  text-transform: uppercase;
}

.modal-backdrop {
  align-items: center;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 40;
}

.modal-backdrop[hidden] {
  display: none;
}

.preview-modal {
  background: #0a1512;
  border: 1px solid var(--line-bright);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.48);
  max-width: 580px;
  padding: 32px;
  position: relative;
  width: 100%;
}

.preview-modal h2 {
  font-size: 34px;
}

.modal-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
  padding: 3px 8px;
  position: absolute;
  right: 15px;
  top: 12px;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-notice {
  background: #07100e;
  border-left: 2px solid var(--warning);
  margin: 24px 0;
  padding: 14px 16px;
}

.modal-notice strong {
  color: var(--warning);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-notice p {
  font-size: 13px;
  margin: 7px 0 0;
}

@media (max-width: 900px) {
  .hero {
    gap: 44px;
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 70px;
  }

  .hero-art {
    margin: 0 auto;
    max-width: 600px;
  }

  .split-layout {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .safety {
    gap: 52px;
  }
}

@media (max-width: 700px) {
  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    min-height: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-nav {
    display: none;
  }

  .site-header .button {
    min-height: 36px;
    padding: 0 11px;
  }

  .brand {
    font-size: 18px;
  }

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

  .brand-mark svg {
    height: 20px;
    width: 20px;
  }

  .hero {
    padding-bottom: 64px;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 62px);
  }

  h2 {
    font-size: 36px;
  }

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

  .hero-art::after {
    bottom: -10px;
    right: -10px;
  }

  .proof-items {
    grid-template-columns: 1fr;
  }

  .proof-items p,
  .proof-items p:first-child {
    border-left: 1px solid var(--line);
  }

  .process,
  .safety,
  .faq {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .step-list {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .step-card {
    min-height: 0;
    padding: 12px 0 32px 22px;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .split-layout {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .total-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .safety-art {
    padding: 32px;
  }

  .safety-points {
    grid-template-columns: 1fr;
  }

  .closing-inner {
    padding-bottom: 74px;
    padding-top: 74px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .preview-modal {
    padding: 28px 22px 22px;
  }

  .preview-modal h2 {
    font-size: 31px;
  }
}

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