@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;1,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --blackout: #0a0c12;
  --panel: #10131b;
  --panel-raised: #151923;
  --steel: #1c212c;
  --gold: #ffcc00;
  --gold-soft: #ffe066;
  --paper: #f4f1e9;
  --text: #f7f5ee;
  --text-secondary: #c5c6c3;
  --text-tertiary: #8e929b;
  --text-muted: #626773;
  --line: rgba(255, 255, 255, .12);
  --line-soft: rgba(255, 255, 255, .065);
  --line-gold: rgba(255, 204, 0, .48);
  --danger: #ff685f;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --radius-sm: 3px;
  --radius-md: 6px;
  --space: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--blackout); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--gold); color: var(--blackout); padding: 10px 16px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { height: 80px; padding: 0 clamp(20px, 4vw, 72px); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; background: rgba(10, 12, 18, .94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; line-height: 1; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; background: var(--gold); color: var(--blackout); font-size: 18px; clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); }
.brand-dot { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.main-nav a { color: var(--text-secondary); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }
.main-nav .nav-cta { color: var(--blackout); background: var(--gold); padding: 12px 18px; }
.main-nav .nav-cta:hover { color: var(--blackout); background: var(--gold-soft); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; padding: 11px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--gold); margin: 5px 0; transition: transform .2s, opacity .2s; }

.hero { min-height: calc(100vh - 80px); display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); border-bottom: 1px solid var(--line); }
.hero-copy { padding: clamp(64px, 7vw, 112px) clamp(24px, 6vw, 104px); position: relative; }
.hero-copy::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 62%); opacity: .45; }
.hero-copy > * { position: relative; }
.eyebrow { margin: 0 0 24px; color: var(--text-tertiary); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 30px; height: 2px; margin: 0 10px 3px 0; background: var(--gold); }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: var(--font-display); text-transform: uppercase; line-height: .9; letter-spacing: -.025em; }
h1 { max-width: 780px; margin-bottom: 32px; font-size: clamp(70px, 6.8vw, 118px); }
h1 em, h2 em { color: var(--gold); font-weight: 600; }
.hero-copy > p:not(.eyebrow) { max-width: 790px; color: var(--text-secondary); font-size: 15px; }
.hero-copy .hero-lead { color: var(--text); font-size: clamp(18px, 1.5vw, 22px); font-weight: 500; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 36px 0 48px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 12px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid rgba(255, 204, 0, .35); outline-offset: 3px; }
.button-primary { background: var(--gold); color: var(--blackout); border-color: var(--gold); }
.button-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 680px; margin: 0; border-top: 1px solid var(--line); }
.hero-stats div { padding: 22px 22px 0 0; }
.hero-stats div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.hero-stats dt { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; }
.hero-stats dd { margin: 7px 0 0; color: var(--text-tertiary); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual { min-height: 720px; position: relative; overflow: hidden; border-left: 1px solid var(--line); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,18,.28), transparent 32%), linear-gradient(0deg, rgba(10,12,18,.62), transparent 35%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.image-badge { position: absolute; z-index: 2; right: 32px; bottom: 32px; width: 250px; display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; padding: 16px; background: rgba(10,12,18,.9); border: 1px solid var(--line-gold); backdrop-filter: blur(10px); }
.image-badge > span { grid-row: span 2; width: 44px; height: 44px; display: grid; place-items: center; color: var(--blackout); background: var(--gold); font-weight: 900; }
.image-badge strong { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; line-height: 1.2; }
.image-badge small { color: var(--text-tertiary); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.circuit-line { position: absolute; z-index: 2; left: 0; bottom: 76px; width: calc(100% - 282px); height: 1px; background: var(--gold); }
.circuit-line::before { content: ""; position: absolute; left: 12%; top: -5px; width: 9px; height: 9px; border: 1px solid var(--gold); background: var(--blackout); transform: rotate(45deg); }

.section-shell { padding: clamp(80px, 10vw, 152px) clamp(20px, 6vw, 104px); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 64px; }
.section-heading h2 { margin-bottom: 24px; font-size: clamp(50px, 6.6vw, 104px); }
.section-heading > p:last-child, .split-heading > p { color: var(--text-secondary); max-width: 610px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; }

.services { background: var(--panel); }
.services-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); gap: clamp(40px, 7vw, 112px); align-items: start; }
.services-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-number, .check-no, .reason-grid article > span { color: var(--gold); font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .1em; }
.service-item h3, .checklist h3, .reason-grid h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 27px; line-height: 1.05; text-transform: uppercase; }
.service-item p { max-width: 820px; margin: 0; color: var(--text-secondary); font-size: 14px; }
.service-image { margin: 0; position: sticky; top: 112px; border: 1px solid var(--line); background: var(--panel-raised); }
.service-image img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.service-image figcaption { padding: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.service-image figcaption span { color: var(--text-muted); font-size: 10px; letter-spacing: .12em; }
.service-image figcaption strong { font-family: var(--font-display); font-size: 21px; line-height: 1.1; text-align: right; text-transform: uppercase; }

.safety { background: var(--paper); color: var(--blackout); }
.safety .eyebrow, .safety .split-heading > p { color: #5d6066; }
.checklist { margin: 0; padding: 0; border-top: 1px solid rgba(10,12,18,.18); list-style: none; counter-reset: safety; }
.checklist li { display: grid; grid-template-columns: 62px 1fr 42px; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(10,12,18,.18); }
.checklist h3 { margin-bottom: 8px; }
.checklist p { max-width: 960px; margin: 0; color: #50535a; font-size: 14px; }
.check-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(10,12,18,.28); color: #776000; font-weight: 900; transform: rotate(45deg); }
.check-mark::first-letter { transform: rotate(-45deg); }
.safety-note { margin-top: 32px; display: flex; gap: 18px; align-items: center; padding: 22px; background: var(--gold); color: var(--blackout); }
.safety-note > span { font-size: 28px; }
.safety-note p { margin: 0; font-size: 14px; }

.plans { background: var(--blackout); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.plan-card { min-width: 0; padding: 34px; position: relative; background: var(--panel); }
.plan-card + .plan-card { border-left: 1px solid var(--line); }
.plan-card.featured { background: var(--panel-raised); outline: 1px solid var(--gold); outline-offset: -1px; }
.recommended { position: absolute; top: 0; right: 0; padding: 7px 12px; background: var(--gold); color: var(--blackout); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.plan-top { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.plan-top span { color: var(--gold); font-family: var(--font-display); font-size: 15px; }
.plan-card h3 { margin: 28px 0 4px; font-family: var(--font-display); font-size: 52px; line-height: 1; text-transform: uppercase; }
.plan-price { margin: 0 0 26px; color: var(--text-tertiary); font-size: 12px; }
.plan-price strong { color: var(--gold); font-family: var(--font-display); font-size: 38px; }
.plan-card > p:not(.plan-price) { min-height: 118px; color: var(--text-secondary); font-size: 14px; }
.plan-card ul { min-height: 230px; margin: 24px 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan-card li { position: relative; padding: 7px 0 7px 24px; color: var(--text-secondary); font-size: 13px; }
.plan-card li::before { content: "+"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.plan-card .button { width: 100%; }
.plan-footnote { max-width: 820px; margin: 28px auto 0; color: var(--text-muted); font-size: 12px; text-align: center; }

.why { background: var(--panel); }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.reason-grid article { min-height: 290px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); transition: background .2s; }
.reason-grid article:hover { background: var(--panel-raised); }
.reason-grid h3 { margin: 54px 0 14px; }
.reason-grid p { margin: 0; color: var(--text-secondary); font-size: 13px; }
.final-cta { margin-top: clamp(80px, 10vw, 148px); display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; padding: clamp(32px, 5vw, 70px); background: var(--blackout); border: 1px solid var(--line-gold); position: relative; overflow: hidden; }
.final-cta::after { content: "⚡"; position: absolute; right: -20px; top: -88px; color: rgba(255,204,0,.045); font-size: 360px; line-height: 1; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 0; font-size: clamp(52px, 6vw, 92px); }
.final-cta > div:last-child p { color: var(--text-secondary); }

.site-footer { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 64px; padding: 64px clamp(20px, 6vw, 104px) 28px; background: #07090d; }
.site-footer h2 { margin-bottom: 16px; font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a:not(.brand), .site-footer p { display: block; margin: 5px 0; color: var(--text-tertiary); font-size: 13px; }
.site-footer a:hover { color: var(--gold); }
.footer-brand p { margin-top: 14px; }
.copyright { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--line-soft); }

.legal-hero { min-height: 430px; padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 104px); border-bottom: 1px solid var(--line); background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 56px 56px; }
.legal-hero h1 { margin: 0; font-size: clamp(62px, 9vw, 132px); }
.legal-hero > p:last-child { max-width: 760px; color: var(--text-secondary); }
.legal-content { max-width: 1080px; margin: 0 auto; padding: 72px 24px 120px; }
.legal-content section { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.legal-index { color: var(--gold); font-family: var(--font-display); font-size: 14px; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 52px); }
.legal-content p, .legal-content li { color: var(--text-secondary); font-size: 14px; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; border-left: 0; border-top: 1px solid var(--line); }
  .services-layout { grid-template-columns: 1fr; }
  .service-image { position: static; }
  .service-image img { aspect-ratio: 16/9; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-header { height: 68px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 68px 0 auto; height: calc(100vh - 68px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 28px 20px; background: var(--blackout); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .main-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 24px; }
  .main-nav .nav-cta { margin-top: 24px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-copy { padding-top: 72px; }
  .hero-visual { min-height: 520px; }
  .split-heading { grid-template-columns: 1fr; gap: 26px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card + .plan-card { border-left: 0; border-top: 1px solid var(--line); }
  .plan-card > p:not(.plan-price), .plan-card ul { min-height: auto; }
  .final-cta { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .brand { font-size: 24px; }
  .brand-mark { width: 30px; height: 30px; }
  .hero-copy { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: clamp(48px, 12.8vw, 64px); }
  .hero-copy > p:not(.eyebrow) { font-size: 14px; }
  .hero-copy .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-stats { gap: 0; }
  .hero-stats div { padding-right: 10px; }
  .hero-stats div + div { padding-left: 10px; }
  .hero-stats dt { font-size: 25px; }
  .hero-visual { min-height: 420px; }
  .hero-visual img { object-position: 69% center; }
  .image-badge { right: 16px; bottom: 16px; width: calc(100% - 32px); }
  .circuit-line { display: none; }
  .section-heading { margin-bottom: 44px; }
  .service-item { grid-template-columns: 36px 1fr; gap: 10px; }
  .service-item h3 { font-size: 23px; }
  .service-image img { aspect-ratio: 4/5; }
  .checklist li { grid-template-columns: 38px 1fr; gap: 10px; }
  .check-mark { display: none; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { min-height: auto; }
  .reason-grid h3 { margin-top: 34px; }
  .site-footer { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .legal-content section { grid-template-columns: 1fr; gap: 8px; }
}

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