:root {
  color-scheme: dark;
  --bg: #030305;
  --panel: #0b0b0e;
  --panel-soft: #121216;
  --text: #f4f8f6;
  --muted: #aca8af;
  --line: #35242a;
  --accent: #ff1745;
  --accent-strong: #ff617e;
  --ink: #030305;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 23, 69, .14), transparent 32rem),
    radial-gradient(circle at 12% -8%, rgba(255,23,69,.11), transparent 30rem),
    linear-gradient(180deg, #080509 0, var(--bg) 32rem);
  color: var(--text);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent-strong); text-underline-offset: .2em; }
a:hover { color: #ff8da1; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid #ff617e; outline-offset: 3px; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid rgba(39, 65, 56, .8);
  background: rgba(7, 16, 13, .92);
  backdrop-filter: blur(14px);
}
.site-header .wrap, .site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.site-header .wrap { min-height: 68px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-weight: 760;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #030305;
  box-shadow: 0 0 0 1px rgba(255,23,69,.3), 0 0 18px rgba(255,23,69,.12);
}
nav { display: flex; align-items: center; gap: 1rem; }
nav a { color: var(--muted); font-size: .93rem; text-decoration: none; }
nav a[aria-current="page"], nav a:hover { color: var(--text); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}
.nav-cta:hover, .button:hover { background: var(--accent-strong); color: var(--ink); }
.button.secondary { background: transparent; color: var(--text); border-color: var(--line); }
.hero { padding: clamp(4rem, 9vw, 7.5rem) 0 4.5rem; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(2rem, 7vw, 5rem); align-items: center; }
.eyebrow { margin: 0 0 .85rem; color: var(--accent-strong); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.13; letter-spacing: -.035em; }
h1 { max-width: 820px; margin: 0; font-size: clamp(2.7rem, 7vw, 5.5rem); }
h2 { margin: 0 0 1rem; font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { margin: 0 0 .55rem; font-size: 1.15rem; }
.lede { max-width: 690px; margin: 1.35rem 0 0; color: #c8d5cf; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.price-card, .card, .legal-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 34, 28, .95), rgba(10, 22, 17, .95));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}
.price-card { padding: 1.7rem; }
.price { margin: .4rem 0; font-size: 2.5rem; font-weight: 850; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: .95rem; font-weight: 500; letter-spacing: 0; }
.save { color: var(--accent-strong); font-weight: 700; }
.clean-list { margin: 1.3rem 0 0; padding: 0; list-style: none; }
.clean-list li { padding: .55rem 0; border-top: 1px solid rgba(39, 65, 56, .65); }
.clean-list li::before { content: "✓"; margin-right: .65rem; color: var(--accent); font-weight: 900; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; border-top: 1px solid rgba(39, 65, 56, .6); }
.section-intro { max-width: 720px; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.card { padding: 1.45rem; }
.card p { margin-bottom: 0; color: var(--muted); }
.metric { color: var(--accent-strong); font-size: 1.9rem; font-weight: 850; }
.notice { margin-top: 2rem; padding: 1rem 1.15rem; border-left: 3px solid var(--accent); background: rgba(255, 23, 69, .08); color: #ded8db; }
.page-head { padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem; }
.page-head h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: 2.5rem; align-items: start; padding-bottom: 5rem; }
.legal-card { padding: clamp(1.35rem, 4vw, 2.7rem); }
.legal-card section + section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.legal-card p, .legal-card li { color: #c8d5cf; }
.legal-card strong { color: var(--text); }
.legal-card table { width: 100%; border-collapse: collapse; }
.legal-card th, .legal-card td { padding: .9rem .65rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-card th { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
.side-nav { position: sticky; top: 96px; display: grid; gap: .6rem; }
.side-nav a { color: var(--muted); text-decoration: none; }
.side-nav a:hover { color: var(--text); }
.site-footer { padding: 2rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.footer-links a { color: var(--muted); }

@media (max-width: 820px) {
  .hero-grid, .legal-layout { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .side-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); order: -1; }
  .site-header nav a:not(.nav-cta) { display: none; }
}

@media (max-width: 540px) {
  .site-header .wrap, .site-footer .wrap { align-items: flex-start; }
  .site-footer .wrap { flex-direction: column; }
  h1 { font-size: 2.55rem; }
  .price-card { padding: 1.3rem; }
}

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