:root {
  --ink: #edf4ef;
  --muted: #a6b3ab;
  --paper: #101713;
  --paper-2: #19221d;
  --card: #17201b;
  --line: #334239;
  --green: #73d9ae;
  --green-dark: #0b4b39;
  --lime: #c8f05a;
  --orange: #ff865e;
  --blue: #8cb8ef;
  --shadow: 0 26px 80px rgba(0, 0, 0, .32);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Tahoma, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(115, 217, 174, .08), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .27;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
a { color: var(--green); }
button, input { font: inherit; }
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--lime);
  color: #102118;
  font-weight: 850;
}
.skip-link:focus { top: 12px; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 21px 11px;
  background: var(--green-dark);
  color: var(--lime);
  font: italic 700 24px/1 var(--serif);
  box-shadow: inset 0 0 0 1px rgba(200, 240, 90, .2);
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font: 700 20px/1 var(--serif); }
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 32px); }
.topbar nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}
.topbar nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.topbar nav a:hover { color: var(--ink); }
.topbar nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

main { overflow: hidden; }
.hero, .section, footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.hero {
  min-height: 100vh;
  padding: 150px 0 92px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(52px, 8vw, 100px);
  position: relative;
}
.hero::before {
  content: "2.4";
  position: absolute;
  z-index: -1;
  left: -3vw;
  bottom: 1%;
  color: rgba(115, 217, 174, .045);
  font: italic clamp(210px, 28vw, 410px)/.72 var(--serif);
  letter-spacing: -.1em;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2 { font-family: var(--serif); letter-spacing: -.052em; }
h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 7.5vw, 102px);
  line-height: .91;
  font-weight: 500;
}
h1 em { color: var(--green); font-weight: 500; }
.lede {
  max-width: 670px;
  margin: 30px 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}
.hero-actions, .status-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}
.button.primary { background: var(--green-dark); color: #fff; }
.button.secondary { border: 1px solid var(--line); background: var(--card); color: var(--ink); }
.button.light { background: var(--lime); color: #123226; }
.button:hover { transform: translateY(-2px); }
.trust-row {
  margin: 36px 0 0;
  padding: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}
.trust-row span { margin-right: 6px; color: var(--lime); }

.hero-panel {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 20px 20px 88px 20px;
  color: #f6fff9;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -120px;
  border: 1px solid rgba(200, 240, 90, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(200, 240, 90, .04), 0 0 0 80px rgba(200, 240, 90, .025);
}
.panel-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bdd0c7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.panel-topline span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 240, 90, .12);
}
.panel-number {
  margin: 42px 0 8px;
  color: var(--orange);
  font: italic 26px var(--serif);
}
.hero-panel h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .95;
  font-weight: 500;
}
.hero-panel ol { margin: 0; padding: 0; list-style: none; }
.hero-panel li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero-panel li > span { color: var(--lime); font: italic 19px var(--serif); }
.hero-panel strong, .hero-panel small { display: block; }
.hero-panel small { margin-top: 3px; color: #a8beb3; }

.section { padding: 110px 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .split-section h2 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: .96;
  font-weight: 500;
}
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.price-card {
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(11, 75, 57, .46), var(--card) 44%);
  border-color: var(--green);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
  transform: translateY(-12px);
}
.best-value {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 12px 8px;
  background: var(--lime);
  color: #183629;
  border-radius: 0 0 8px 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.card-heading { min-height: 164px; }
.plan-label {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.price-card h3 { margin: 0; font: 500 28px/1.1 var(--serif); }
.price { margin: 18px 0 0; font: 500 clamp(56px, 6vw, 74px)/.8 var(--serif); }
.price > span { margin-right: 3px; color: var(--green); font-size: 24px; vertical-align: top; }
.price small { color: var(--muted); font: 12px var(--sans); white-space: nowrap; }
.plan-copy { min-height: 78px; margin: 0; color: var(--muted); font-size: 14px; }
.feature-list {
  min-height: 252px;
  margin: 20px 0 25px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.feature-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 64%, transparent);
  font-size: 13px;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 900;
}
.paypal-form { margin-top: auto; }
.terms-check {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  align-items: start;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}
.terms-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--green);
}
.checkout-button {
  width: 100%;
  min-height: 49px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.featured .checkout-button { background: var(--lime); color: #173729; }
.checkout-button:hover { transform: translateY(-2px); }
.checkout-button:disabled { opacity: .65; cursor: wait; transform: none; }
.payment-note {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.payment-note span { margin-right: 6px; }

.split-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(46px, 9vw, 110px);
}
.split-section > div:first-child { position: sticky; top: 118px; align-self: start; }
.scope-copy > p:first-child { color: var(--muted); font-size: 19px; }
.scope-grid { margin: 34px 0; border-top: 1px solid var(--line); }
.scope-grid article {
  display: grid;
  grid-template-columns: 44px 180px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.scope-grid h3 { margin: 7px 0 0; font: 500 18px var(--serif); }
.scope-grid p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.scope-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 16px 8px;
  font-weight: 900;
}
.scope-icon.good { background: var(--green-dark); color: var(--lime); }
.scope-icon.separate { background: rgba(255, 134, 94, .12); color: var(--orange); }
.scope-icon.standard { background: rgba(140, 184, 239, .12); color: var(--blue); }
.terms-detail {
  padding: 20px;
  background: var(--paper-2);
  border-left: 3px solid var(--green);
  border-radius: 0 9px 9px 0;
  color: var(--muted);
  font-size: 12px;
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}
.process-grid li {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid span { color: var(--orange); font: italic 25px var(--serif); }
.process-grid h3 { margin: 55px 0 10px; font: 500 25px var(--serif); }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.security-callout {
  margin-top: 24px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  border: 1px solid color-mix(in srgb, var(--blue) 45%, var(--line));
  background: color-mix(in srgb, var(--blue) 6%, var(--card));
  border-radius: 10px;
}
.security-callout strong { font-family: var(--serif); font-size: 18px; }
.security-callout p { margin: 0; color: var(--muted); font-size: 13px; }

.faq-section { display: grid; grid-template-columns: .62fr 1fr; gap: 70px; }
.faq-list details {
  margin: 0 0 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 9px;
}
.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--green); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { padding: 0 20px 19px; color: var(--muted); font-size: 14px; }
.faq-list details p { margin: 0; }

.closing {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 100px;
  padding: clamp(46px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 20px 20px 110px 20px;
  box-shadow: var(--shadow);
}
.closing::after {
  content: "→";
  position: absolute;
  right: 6%;
  top: 4%;
  color: rgba(200, 240, 90, .08);
  font: 240px/.9 var(--serif);
}
.closing .eyebrow { color: var(--lime); }
.closing h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(52px, 8vw, 92px);
  line-height: .9;
  font-weight: 500;
}
.closing p:not(.eyebrow) { max-width: 610px; margin: 24px 0 28px; color: #bdd0c7; }

footer {
  padding: 38px 0 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  border-top: 1px solid var(--line);
}
footer strong { font-family: var(--serif); }
footer p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 12px; }
.copyright { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); }

.status-page {
  min-height: 100vh;
  padding: 40px 20px;
  display: grid;
  place-items: center;
}
.status-card {
  width: min(760px, 100%);
  padding: clamp(30px, 7vw, 70px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px 20px 80px 20px;
  box-shadow: var(--shadow);
}
.status-card .brand { margin-bottom: 70px; }
.status-card h1 { font-size: clamp(54px, 9vw, 84px); }
.status-steps { margin: 35px 0; padding: 0; list-style: none; }
.status-steps li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
}
.status-steps span { color: var(--orange); font: italic 19px var(--serif); }
.status-steps p { margin: 0; color: var(--muted); }

a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-panel { max-width: 650px; transform: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .install-card { grid-column: 1 / -1; }
  .install-card .feature-list { columns: 2; column-gap: 30px; min-height: auto; }
  .install-card .feature-list li { break-inside: avoid; }
  .split-section { grid-template-columns: 1fr; }
  .split-section > div:first-child { position: static; }
  .faq-section { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .topbar { height: 70px; }
  .topbar nav { display: none; }
  .nav-cta { font-size: 0; }
  .nav-cta span { font-size: 14px; }
  .hero, .section, .closing, footer { width: min(100% - 30px, 680px); }
  .hero { min-height: auto; padding: 125px 0 76px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .install-card { grid-column: auto; }
  .install-card .feature-list { columns: auto; min-height: 252px; }
  .scope-grid article { grid-template-columns: 44px 1fr; }
  .scope-grid p { grid-column: 2; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; }
  .process-grid h3 { margin-top: 28px; }
  .security-callout { grid-template-columns: 1fr; gap: 8px; }
  .closing { margin-bottom: 60px; border-radius: 16px 16px 65px 16px; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 52px; }
  .hero-panel, .price-card { padding: 22px; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; }
  .card-heading { min-height: 145px; }
  .feature-list, .install-card .feature-list { min-height: auto; }
  .scope-grid article { grid-template-columns: 38px 1fr; }
  .scope-icon { width: 34px; height: 34px; }
  .status-card { border-radius: 16px 16px 55px 16px; }
  .status-actions .button { width: 100%; }
}

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

@media print {
  :root { --paper: #fff; --card: #fff; --ink: #111; --muted: #444; --line: #ccc; }
  .topbar, .paypal-form, .closing { display: none; }
  .hero { min-height: auto; padding-top: 40px; }
  .price-card.featured { transform: none; }
  body::before { display: none; }
}
