:root {
  color-scheme: dark;
  --bg: #0a0d0f;
  --surface: #11171a;
  --surface-raised: #172126;
  --surface-soft: #0e1417;
  --text: #f4f5ef;
  --muted: #b7c0c4;
  --muted-strong: #d2d8d7;
  --line: #2a383d;
  --line-bright: #3d555b;
  --lime: #c9f36b;
  --lime-ink: #142000;
  --orange: #ffae66;
  --orange-soft: rgba(255, 174, 102, .12);
  --green: #8ce3a8;
  --yellow: #f3d67a;
  --red: #ff9e9e;
  --max: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:hover { color: var(--lime); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

button, a { touch-action: manipulation; }
button { font: inherit; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.wrap { width: min(100% - 48px, var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(61, 85, 91, .7);
  background: rgba(10, 13, 15, .94);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.03em;
  text-decoration: none;
}
.mark {
  display: grid;
  width: 38px;
  height: 42px;
  place-items: center;
  background: var(--lime);
  color: var(--lime-ink);
  clip-path: polygon(50% 0, 92% 14%, 88% 68%, 50% 100%, 12% 68%, 8% 14%);
  font-weight: 950;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 20px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a { text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { margin-left: 6px; }

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.btn:hover { border-color: var(--lime); color: var(--text); transform: translateY(-1px); }
.btn-primary { border-color: var(--lime); background: var(--lime); color: var(--lime-ink); }
.btn-primary:hover { background: #d9ff8b; color: var(--lime-ink); }
.btn-secondary { background: transparent; }
.btn-secondary:hover { background: rgba(201, 243, 107, .08); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero {
  position: relative;
  padding: 108px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 86% 28%, rgba(201, 243, 107, .10), transparent 32%), linear-gradient(145deg, #0a0d0f 0%, #101a1c 100%);
}
.hero::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 174, 102, .18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; }
.kicker, .eyebrow, .scope-label, .footer-label {
  margin: 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { color: var(--orange); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; color: var(--text); }
h1 {
  max-width: 920px;
  margin-top: 16px;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 850;
  letter-spacing: -.07em;
  line-height: .96;
}
h2 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.02;
}
h3 { font-size: 21px; line-height: 1.15; }
p { margin: 0 0 16px; }
.hero-copy, .lede {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55;
}

.section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-muted { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.section-heading { max-width: 790px; }
.section-heading .lede { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }
.card, .offer-card, .product-lane, .cross-sell, .scope-card, .price-panel, .checkout-status-panel, .checkout-aside, .workflow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.card { padding: 24px; }
.card:hover, .offer-card:hover, .product-lane:hover { border-color: var(--line-bright); }
.card-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 243, 107, .35);
  border-radius: 10px;
  background: rgba(201, 243, 107, .08);
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
}
.card h3 { margin: 14px 0 9px; }
.card p, .product-lane p, .cross-sell p, .scope-card li, .offer-note, .offer-billing { color: var(--muted); }
.card p:last-child, .product-lane p:last-child, .cross-sell p:last-child { margin-bottom: 0; }

.evidence-layout, .two-column, .split-model, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.evidence-layout { align-items: center; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.pill, .badge, .status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pill { border: 1px solid var(--line-bright); color: var(--muted-strong); }
.badge { background: var(--orange); color: #1b1008; letter-spacing: .04em; text-transform: uppercase; }
.workflow-card { padding: 20px; box-shadow: var(--shadow); }
.workflow-top, .workflow-line { display: flex; align-items: center; gap: 12px; }
.workflow-top { justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted-strong); font-size: 13px; font-weight: 750; }
.workflow-line { min-height: 58px; border-bottom: 1px solid var(--line); }
.workflow-line > span:nth-child(2) { flex: 1; }
.workflow-meta { color: var(--muted); font-size: 12px; }
.workflow-foot { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.status-good { background: rgba(140, 227, 168, .15); color: var(--green); }
.status-warn { background: rgba(243, 214, 122, .15); color: var(--yellow); }
.status-neutral { background: rgba(183, 192, 196, .12); color: var(--muted-strong); }
.status-error { background: rgba(255, 158, 158, .14); color: var(--red); }

.checklist, .boundary-list, .ladder { display: grid; gap: 12px; }
.check-item { display: flex; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.check-mark { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--lime-ink); font-weight: 950; }
.check-item strong { display: block; color: var(--text); }
.check-item p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.callout { max-width: 860px; }

.offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.offer-card { min-height: 205px; padding: 22px; }
.offer-featured { border-color: rgba(201, 243, 107, .65); box-shadow: 0 0 0 1px rgba(201, 243, 107, .12); }
.offer-card h3 { margin: 20px 0 5px; font-size: 32px; letter-spacing: -.04em; }
.offer-card .badge + h3 { margin-top: 16px; }
.offer-billing { min-height: 44px; font-size: 14px; }
.offer-note { min-height: 42px; font-size: 12px; }
.text-link { display: inline-flex; gap: 6px; color: var(--lime); font-size: 14px; font-weight: 800; text-decoration: none; }
.fine-print, .muted { color: var(--muted); font-size: 13px; }
.lane-price { margin: 12px 0; color: var(--text) !important; font-size: 24px; font-weight: 820; letter-spacing: -.03em; }
.price-qualifier { color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: 0; }

.cross-sell-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cross-sell { padding: 30px; }
.cross-sell-managed { background: linear-gradient(145deg, rgba(201, 243, 107, .09), var(--surface)); }
.cross-sell-emergency { background: linear-gradient(145deg, rgba(255, 174, 102, .08), var(--surface)); }
.cross-sell h2 { font-size: clamp(28px, 4vw, 44px); }
.cross-sell .btn { margin-top: 8px; }

.compare { width: 100%; margin-top: 32px; border-collapse: collapse; }
.compare th, .compare td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare th { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.compare td { color: var(--muted-strong); }

.product-lanes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-lane { display: flex; min-height: 350px; flex-direction: column; align-items: flex-start; padding: 28px; }
.product-lane h2 { font-size: clamp(30px, 4vw, 46px); }
.product-lane p:not(.eyebrow):not(.lane-price) { margin-top: 16px; }
.product-lane .btn { margin-top: auto; }
.ladder > div { padding: 18px; border-left: 2px solid var(--line-bright); background: var(--surface); }
.ladder-number { display: block; margin-bottom: 5px; color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.ladder strong { font-size: 18px; }
.ladder p { margin: 3px 0 0; color: var(--muted); }

.pricing-sections { display: grid; gap: 64px; }
.pricing-model { padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.pricing-model:last-child { padding-bottom: 0; border-bottom: 0; }
.pricing-model-heading { max-width: 740px; }
.pricing-model-heading h2 { font-size: clamp(32px, 5vw, 52px); }
.pricing-model-heading > p:not(.eyebrow):not(.lane-price) { color: var(--muted-strong); font-size: 18px; }
.scope-card { padding: 22px; }
.scope-card ul, .clean-list { margin: 16px 0 22px; padding-left: 19px; }
.scope-card li, .clean-list li { margin: 8px 0; }
.scope-label { color: var(--orange); font-size: 11px; }

.price-panel { padding: 26px; }
.price-panel .lane-price { margin-top: 18px; font-size: 40px; }
.price-panel p { color: var(--muted); }
.appcare-intro, .emergency-pricing { align-items: center; }

.checkout-section { padding-top: 76px; }
.checkout-layout { align-items: stretch; }
.checkout-main h1 { font-size: clamp(42px, 7vw, 76px); }
.checkout-status-panel, .checkout-aside { padding: 26px; }
.checkout-status-panel { margin-top: 30px; background: var(--surface-raised); }
.checkout-status-panel p { min-height: 27px; margin: 16px 0 20px; color: var(--muted-strong); }
.checkout-status-panel p[data-state="error"] { color: var(--red); }
.checkout-aside h2 { font-size: clamp(28px, 4vw, 44px); }
.checkout-offers { margin-top: 24px; border-top: 1px solid var(--line); }
.checkout-offers > div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.checkout-offers strong { color: var(--text); }
.checkout-offers span { color: var(--muted); font-size: 13px; text-align: right; }
.legal-links { color: var(--muted-strong); }

.legal-section { padding-top: 34px; }
.legal { max-width: 900px; }
.legal-hero { padding: 46px 0 24px; }
.legal-hero h1 { max-width: 760px; font-size: clamp(44px, 7vw, 72px); }
.legal h2 { margin-top: 40px; font-size: 28px; }
.legal p, .legal li { color: var(--muted-strong); }
.legal ul { padding-left: 22px; }
.legal a, .legal-links a { color: var(--lime); }
.identity-callout { margin: 42px 0 10px; }
.identity-list { display: grid; grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr); margin: 24px 0 0; border-top: 1px solid var(--line); }
.identity-list dt, .identity-list dd { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.identity-list dt { color: var(--muted); font-size: 13px; font-weight: 800; }
.identity-list dd { color: var(--muted-strong); }
.compliance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.compliance-grid .card h3 { margin-top: 0; }
.compliance-grid .card p:last-child { margin-bottom: 0; }
.checkout-disclosures { margin-top: 26px; }

.footer { padding: 44px 0 58px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 30px; }
.footer-intro { max-width: 290px; }
.footer-intro strong { color: var(--text); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-column a { text-decoration: none; }
.footer-label { margin-bottom: 5px; color: var(--muted); font-size: 11px; }

details { border-bottom: 1px solid var(--line); }
summary { padding: 18px 0; cursor: pointer; color: var(--text); font-weight: 780; }
details p { max-width: 680px; color: var(--muted); }
.faq-section { max-width: 900px; }
.faq-grid { margin-top: 28px; }

@media (max-width: 980px) {
  .nav { align-items: flex-start; padding-top: 14px; padding-bottom: 14px; }
  .nav-links { gap: 4px 14px; }
  .nav-cta { margin-left: 0; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-lanes { grid-template-columns: 1fr; }
  .product-lane { min-height: auto; }
  .product-lane .btn { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .nav { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .nav-links { justify-content: flex-start; }
  .hero { padding: 76px 0 64px; }
  .section { padding: 64px 0; }
  .section-tight { padding: 46px 0; }
  .evidence-layout, .two-column, .split-model, .checkout-layout, .cross-sell-grid { grid-template-columns: 1fr; }
  .card-grid, .offer-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .workflow-meta { display: none; }
  .compare { display: block; overflow-x: auto; }
  .compare th, .compare td { min-width: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; max-width: 420px; }
}

@media (max-width: 430px) {
  .nav-links { gap: 4px 12px; font-size: 13px; }
  .nav-cta { width: 100%; }
  .actions .btn { width: 100%; }
  .hero h1 { font-size: clamp(43px, 14vw, 64px); }
  .hero-copy, .lede { font-size: 17px; }
  .checkout-offers > div { display: block; }
  .checkout-offers span { display: block; margin-top: 3px; text-align: left; }
  .identity-list { grid-template-columns: 1fr; }
  .identity-list dt { padding-bottom: 4px; border-bottom: 0; }
  .identity-list dd { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
