:root {
  --ink: #eef4fa;
  --muted: #a8b3c1;
  --bg: #050a10;
  --bg-soft: #09111b;
  --panel: #0d1722;
  --panel-2: #101d2a;
  --line: rgba(255,255,255,.11);
  --green: #a3e635;
  --green-dark: #365314;
  --green-soft: rgba(163,230,53,.12);
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-160%); background: #fff; color: #000; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5,10,16,.86);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 850; letter-spacing: -.03em; white-space: nowrap; }
.brand svg { width: 40px; color: var(--green); }
.brand small { display: block; color: var(--green); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; line-height: 1.2; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 650; }
.nav a { text-decoration: none; color: #cdd6df; }
.nav a:hover { color: #fff; }
.menu-button { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: #fff; font-size: 22px; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px; background: linear-gradient(135deg,#a3e635,#65a30d); color: #0d1902; font-weight: 850; line-height: 1.15; text-align: center; text-decoration: none; box-shadow: 0 10px 30px rgba(101,163,13,.18); transition: transform .2s ease, filter .2s ease; }
.button:hover { transform: translateY(-2px); filter: brightness(1.07); }
.button-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.2); box-shadow: none; }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: #07111f; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url('./hero.webp') center / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(3,8,14,.96) 0%,rgba(3,8,14,.83) 40%,rgba(3,8,14,.17) 74%), linear-gradient(0deg,rgba(3,8,14,.72),transparent 45%); }
.hero-content { width: min(700px, 62%); padding: 80px 0 86px; }
.hero h1 { max-width: 760px; margin: 0 0 22px; font-size: clamp(44px,6.2vw,82px); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { display: block; margin-top: 8px; color: var(--green); font-size: .72em; line-height: 1.08; }
.hero-lead { max-width: 660px; margin: 0 0 28px; color: #d6dee7; font-size: clamp(18px,2vw,22px); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.cta-note { max-width: 530px; margin: 14px 0 0; color: #aeb9c5; font-size: 13px; }
.cta-note a { color: #e5edf4; text-underline-offset: 3px; }
.trust-strip { position: absolute; inset: auto 0 0; border-top: 1px solid var(--line); background: rgba(3,8,14,.78); backdrop-filter: blur(12px); }
.trust-list { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; }
.trust-list li { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 17px 12px; color: #dce4ec; font-size: 13px; text-align: center; }
.check { flex: 0 0 auto; display: inline-grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--green); border-radius: 50%; color: var(--green); font-size: 12px; }

section { padding: 92px 0; }
.section-soft { background: linear-gradient(180deg,#08111a,#071019); border-block: 1px solid var(--line); }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .prose h1, .prose h2 { margin: 0 0 15px; font-size: clamp(32px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.card-icon { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; border: 1px solid rgba(163,230,53,.28); border-radius: 14px; background: var(--green-soft); color: var(--green); font-weight: 900; }
.card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,84px); align-items: center; }
.copy h2 { margin: 0 0 18px; font-size: clamp(32px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; }
.copy p { color: #bdc7d2; }
.ticks { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.ticks li { display: flex; gap: 11px; color: #dce4eb; }
.ticks .check { margin-top: 2px; }
.steps { counter-reset: steps; display: grid; gap: 14px; }
.step { counter-increment: steps; display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); }
.step::before { content: counter(steps); display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--green); color: #102000; font-weight: 900; }
.step h3 { margin: 0 0 4px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.city-link { display: flex; min-height: 108px; align-items: center; justify-content: space-between; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); text-decoration: none; transition: border-color .2s, transform .2s; }
.city-link:hover { transform: translateY(-2px); border-color: rgba(163,230,53,.5); }
.city-link strong { display: block; font-size: 18px; }
.city-link span { color: var(--muted); font-size: 13px; }
.city-link b { color: var(--green); font-size: 24px; }

.referral-box { display: grid; grid-template-columns: 1.2fr auto; gap: 32px; align-items: center; padding: clamp(28px,5vw,54px); border: 1px solid rgba(163,230,53,.25); border-radius: 24px; background: radial-gradient(circle at 10% 0%,rgba(163,230,53,.12),transparent 35%), var(--panel); }
.referral-box h2 { margin: 0 0 10px; font-size: clamp(28px,4vw,42px); line-height: 1.1; letter-spacing: -.035em; }
.referral-box p { max-width: 700px; margin: 0; color: #bdc7d2; }
.referral-box .cta-note { margin-top: 10px; }

.faq { display: grid; max-width: 900px; margin-inline: auto; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
summary { position: relative; padding: 19px 54px 19px 20px; cursor: pointer; list-style: none; font-weight: 750; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 50%; right: 21px; transform: translateY(-50%); color: var(--green); font-size: 24px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.page-hero { padding: 92px 0 72px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 0%,rgba(50,100,145,.26),transparent 38%), linear-gradient(145deg,#07111c,#050a10); }
.breadcrumbs { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: #d5dee7; text-underline-offset: 3px; }
.page-hero h1 { max-width: 900px; margin: 0 0 20px; font-size: clamp(42px,7vw,78px); line-height: 1; letter-spacing: -.055em; }
.page-hero h1 span { color: var(--green); }
.page-hero .lead { max-width: 760px; margin: 0 0 27px; color: #c5ced8; font-size: clamp(18px,2vw,22px); }
.local-callout { padding: 28px; border-left: 3px solid var(--green); border-radius: 0 16px 16px 0; background: var(--green-soft); }
.local-callout p { margin: 0; color: #dce6d2; }
.prose { width: min(calc(100% - 40px),860px); margin-inline: auto; }
.prose h1 { margin-top: 20px; }
.prose h2 { margin-top: 52px; font-size: clamp(27px,3.5vw,38px); }
.prose h3 { margin-top: 30px; font-size: 21px; }
.prose p, .prose li { color: #bdc7d2; }
.prose a { color: var(--green); text-underline-offset: 3px; }
.prose a.button { color: #0d1902; }
.prose a.button-secondary { color: #fff; }
.prose .notice { margin: 30px 0; padding: 22px; border: 1px solid rgba(163,230,53,.22); border-radius: 16px; background: var(--green-soft); }
.prose .notice p { margin: 0; color: #e3eadc; }
.article-image { margin: 34px 0 40px; }
.article-image img { display: block; width: 100%; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.article-image figcaption { margin-top: 9px; color: var(--muted); font-size: 12px; }
.story-card { position: relative; overflow: hidden; }
.story-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -80px; bottom: -100px; border-radius: 50%; background: rgba(163,230,53,.08); filter: blur(2px); pointer-events: none; }
.story-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.updated { color: var(--muted); font-size: 13px; }

.site-footer { border-top: 1px solid var(--line); background: #03070c; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 42px; padding: 56px 0 40px; }
.footer-grid h2 { margin: 0 0 13px; font-size: 20px; }
.footer-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #cdd6df; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding: 18px 0 24px; border-top: 1px solid var(--line); color: #84909c; font-size: 12px; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #08111b; box-shadow: var(--shadow); }
  .nav[data-open="true"] { display: grid; }
  .menu-button { display: block; }
  .header-cta { display: none; }
  .hero { min-height: 740px; align-items: start; }
  .hero::after { background: linear-gradient(90deg,rgba(3,8,14,.93),rgba(3,8,14,.42)),linear-gradient(0deg,rgba(3,8,14,.93) 0%,transparent 70%); }
  .hero-content { width: min(720px,100%); padding-top: 88px; }
  .trust-list { grid-template-columns: repeat(2,1fr); }
  .grid-3,.grid-4,.city-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; }
  .referral-box { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px),var(--max)); }
  .brand { font-size: 14px; }
  .brand svg { width: 34px; }
  .hero { min-height: 800px; }
  .hero::before { background-position: 62% center; }
  .hero h1 { font-size: 43px; }
  .hero-content { padding-top: 62px; }
  .hero-actions,.hero-actions .button { width: 100%; }
  .trust-list li { padding: 13px 7px; font-size: 11px; }
  section { padding: 68px 0; }
  .grid-3,.grid-4,.city-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero { padding-top: 62px; }
  .page-hero h1 { font-size: 44px; }
}

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