:root {
  --bg: #030713;
  --bg-soft: #07101f;
  --panel: rgba(10, 18, 35, 0.78);
  --panel-strong: rgba(14, 23, 43, 0.94);
  --gold: #f5c84b;
  --gold-2: #ffe58b;
  --gold-3: #b97910;
  --text: #f7f5ec;
  --muted: #a7afc1;
  --line: rgba(245, 200, 75, 0.18);
  --green: #2ff6a2;
  --red: #ff5676;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 200, 75, 0.22), transparent 26rem),
    radial-gradient(circle at 86% 8%, rgba(48, 246, 162, 0.12), transparent 24rem),
    linear-gradient(135deg, #02040b 0%, #07101f 48%, #030713 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%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='.4'/%3E%3C/svg%3E");
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 9, 19, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.03em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #080b12;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 34px rgba(245, 200, 75, 0.38);
}

.desktop-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 600; }
.desktop-nav a, .site-footer nav a { transition: color .2s ease; }
.desktop-nav a:hover, .site-footer nav a:hover { color: var(--gold-2); }
.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  color: #080b12;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(245, 200, 75, 0.3);
}

section { padding: 70px 0; }
.section-grid { display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; gap: 62px; }
.hero { min-height: 760px; padding-top: 74px; }
.status-pill, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.status-pill {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 200, 75, 0.08);
  text-transform: none;
  letter-spacing: 0;
}
.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 14px 0 14px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;
  overflow: visible;
}
h1 span, h2 {
  display: inline-block;
  padding: 0.06em 0.02em 0.1em;
  background: linear-gradient(180deg, #fffdf4 0%, var(--gold-2) 38%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
}
h2 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
}
h3 { font-size: 22px; letter-spacing: -0.035em; }
.lead, .section-text { color: var(--muted); font-size: 19px; line-height: 1.7; }
.lead { max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-plan { color: #070a11; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 18px 48px rgba(245, 200, 75, 0.24); }
.btn-secondary { border: 1px solid rgba(255,255,255,.14); color: var(--text); background: rgba(255,255,255,.04); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 620px; }
.metrics div { padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; background: rgba(255,255,255,.035); }
.metrics strong { display: block; color: var(--gold-2); font-size: 24px; letter-spacing: -0.04em; }
.metrics span { color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .78; }
.orb-one { width: 210px; height: 210px; top: 50px; right: 30px; background: rgba(245,200,75,.2); }
.orb-two { width: 170px; height: 170px; bottom: 55px; left: 20px; background: rgba(47,246,162,.12); }
.sentinel-card {
  position: relative;
  width: min(100%, 490px);
  aspect-ratio: 0.88;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, .23);
  border-radius: 48px;
  background: radial-gradient(circle at top, rgba(245,200,75,.12), transparent 45%), rgba(4,9,19,.72);
  box-shadow: var(--shadow), inset 0 0 70px rgba(245,200,75,.06);
  overflow: hidden;
}
.shield-glow { position: absolute; width: 58%; height: 58%; border-radius: 50%; background: rgba(245,200,75,.24); filter: blur(60px); }
.sentinel { position: relative; z-index: 1; width: 88%; filter: drop-shadow(0 30px 45px rgba(0,0,0,.4)); animation: float 4s ease-in-out infinite; }
.terminal-chip {
  position: absolute;
  z-index: 2;
  padding: 11px 14px;
  border: 1px solid rgba(47,246,162,.3);
  border-radius: 16px;
  color: #d7ffef;
  background: rgba(3, 12, 18, .84);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  box-shadow: 0 0 28px rgba(47,246,162,.12);
}
.chip-one { left: 18px; bottom: 70px; }
.chip-two { right: 24px; top: 78px; color: var(--gold-2); border-color: rgba(245,200,75,.35); }

.comparison { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.compare-card, .feature-card, .step-card, .price-card, .faq details {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
}
.compare-card { padding: 28px; }
.compare-card h3 { margin-bottom: 24px; }
ul { margin: 0; padding: 0; list-style: none; }
.compare-card li { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); }
.compare-card span { display: block; color: var(--muted); font-size: 13px; }
.compare-card strong { display: block; margin-top: 4px; }
.danger { border-color: rgba(255,86,118,.2); }
.danger h3 { color: #ff8fa3; }
.safe { border-color: rgba(47,246,162,.24); }
.safe h3 { color: #8dffd2; }

.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.feature-grid, .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card, .step-card, .price-card { padding: 30px; }
.feature-icon, .step-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #080b12;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 24px;
  font-weight: 900;
}
.feature-card p, .step-card p, .price-card p, .faq p { color: var(--muted); line-height: 1.65; }
.steps { counter-reset: step; }
.step-card { position: relative; overflow: hidden; }
.step-card::after { content: ""; position: absolute; inset: auto -35px -40px auto; width: 130px; height: 130px; border-radius: 50%; background: rgba(245,200,75,.09); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 398px; }
.price-card.popular { border-color: rgba(245,200,75,.55); transform: translateY(-10px); box-shadow: 0 28px 86px rgba(245,200,75,.13); }
.popular-label { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border-radius: 999px; color: #080b12; background: var(--gold); font-size: 11px; font-weight: 900; }
.price { color: var(--gold-2) !important; font-size: 30px; font-weight: 900; letter-spacing: -0.055em; }
.price span { color: var(--muted); font-size: 15px; letter-spacing: 0; }
.price-card li { position: relative; padding: 9px 0 9px 24px; color: #d9deec; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.btn-plan { margin-top: auto; width: 100%; }

.faq { max-width: 900px; margin: 0 auto; }
.faq-list { display: grid; gap: 14px; }
.faq details { padding: 0 24px; }
.faq summary { cursor: pointer; padding: 24px 0; font-size: 18px; font-weight: 900; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding-bottom: 24px; margin-bottom: 0; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 30px 0 76px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(4, 9, 19, 0.72);
}
.site-footer p { max-width: 420px; margin: 16px 0 0; color: var(--muted); line-height: 1.6; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px 24px; color: var(--muted); font-weight: 700; }
.copyright { white-space: nowrap; font-size: 14px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .section-grid, .comparison, .feature-grid, .steps, .pricing-grid, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 500px; }
  .site-footer { text-align: left; }
  .price-card.popular { transform: none; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 20px, 1180px); }
  .site-header { top: 10px; padding: 10px; }
  .header-cta { padding: 10px 13px; font-size: 12px; }
  section { padding: 70px 0; }
  h1 { font-size: 54px; }
  .metrics { grid-template-columns: 1fr; }
  .sentinel-card { border-radius: 30px; }
  .comparison { gap: 14px; }
  .site-footer { margin-bottom: 88px; padding: 24px; }
  .copyright { white-space: normal; }
}
