:root {
  --night: #07131e;
  --night-2: #0c1d2a;
  --panel: #102534;
  --panel-2: #142e40;
  --paper: #f4f7f5;
  --ink: #10212b;
  --muted: #60717b;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #c8ff65;
  --cyan: #5ed8e6;
  --warning: #ffbe3d;
  --danger: #ff5b56;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(1, 9, 15, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--night);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--night);
  background: var(--lime);
  font-weight: 850;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 255, 101, 0.42);
  border-radius: 50%;
  color: var(--lime);
}
.brand-mark svg { width: 18px; height: 18px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #c7d4dc;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 77% 30%, rgba(94, 216, 230, 0.17), transparent 28%),
    radial-gradient(circle at 14% 30%, rgba(200, 255, 101, 0.1), transparent 25%),
    linear-gradient(145deg, #07131e 0%, #0a1a27 72%, #102736 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -17vw;
  top: -28vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(94, 216, 230, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(94, 216, 230, 0.025), 0 0 0 160px rgba(94, 216, 230, 0.018);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 64px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 0; color: #bed0d9; font-size: 1.08rem; }
.trust-line { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.trust-line span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #dce7eb; font-size: 0.8rem; font-weight: 750; }

.search-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(16, 37, 52, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.search-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; border-radius: 26px 26px 0 0; background: linear-gradient(90deg, var(--lime), var(--cyan)); }
.search-kicker { margin: 0 0 4px; color: #9eb0ba; font-size: 0.78rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.search-card h2 { margin: 0 0 20px; font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1.12; letter-spacing: -0.035em; }
.city-form { display: flex; gap: 9px; }
.city-input-wrap { position: relative; flex: 1; min-width: 0; }
.city-form input {
  width: 100%;
  min-height: 55px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: none;
  color: var(--white);
  background: #091a27;
}
.city-form input::placeholder { color: #7f949f; }
.city-form input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200, 255, 101, 0.15); }
.primary-button, .secondary-button {
  min-height: 55px;
  padding: 0 19px;
  border: 0;
  border-radius: 12px;
  color: #0b171d;
  background: var(--lime);
  cursor: pointer;
  font-weight: 900;
}
.primary-button:hover { background: #d6ff8d; transform: translateY(-1px); }
.primary-button:disabled { cursor: wait; opacity: 0.65; transform: none; }
.secondary-button { border: 1px solid var(--line); color: var(--white); background: rgba(255, 255, 255, 0.06); }
.form-note { margin: 12px 0 0; color: #8fa4af; font-size: 0.82rem; }
.search-status { min-height: 24px; margin: 14px 0 0; color: #d5e0e5; font-size: 0.9rem; }
.search-status.error { color: #ffaaa5; }
.hero-address-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(200, 255, 101, .42);
  border-radius: 12px;
  color: var(--white);
  background: rgba(200, 255, 101, .08);
  text-decoration: none;
}
.hero-address-cta span { color: #aebfc8; font-size: .78rem; }
.hero-address-cta strong { color: var(--lime); font-size: .88rem; text-align: right; }
.hero-address-cta:hover { background: rgba(200, 255, 101, .14); }
.suggestions {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #0b1d2a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.suggestions[hidden] { display: none; }
.suggestions button { display: flex; justify-content: space-between; width: 100%; padding: 12px 14px; border: 0; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--white); background: transparent; cursor: pointer; text-align: left; }
.suggestions button:hover, .suggestions button:focus { outline: none; background: rgba(200, 255, 101, 0.1); }
.suggestions small { color: #9db0ba; }

.surface { color: var(--ink); background: var(--paper); }
.results-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 0 0 88px; transform: translateY(-40px); }
.result-panel { overflow: hidden; border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.result-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 30px 34px 24px; border-bottom: 1px solid #dce5e5; }
.result-label { margin: 0 0 5px; color: #65747b; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.result-header h2 { margin: 0; font-size: clamp(1.85rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.055em; }
.result-badge { flex: 0 0 auto; padding: 8px 11px; border-radius: 999px; color: #16414a; background: #dff8fa; font-size: 0.78rem; font-weight: 850; }
.result-badge.danger { color: #761917; background: #ffe1de; }
.result-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr); min-height: 520px; }
.map-wrap { position: relative; min-height: 520px; background: #cbd7d4; }
.map { position: absolute; inset: 0; z-index: 1; }
.map-legend { position: absolute; z-index: 500; left: 16px; bottom: 16px; display: flex; gap: 8px; padding: 9px 11px; border-radius: 10px; color: #18323b; background: rgba(255, 255, 255, 0.9); box-shadow: 0 8px 20px rgba(0,0,0,.12); font-size: 0.75rem; font-weight: 750; }
.legend-line { width: 24px; height: 4px; margin-top: 7px; border-radius: 4px; background: var(--danger); }
.result-details { padding: 32px; background: #fbfcfb; }
.result-date { margin: 0 0 5px; color: #566971; font-size: 0.9rem; font-weight: 750; }
.event-date-block { display: inline-grid; gap: 2px; margin: 0 0 18px; padding: 12px 15px; border-radius: 12px; color: #fff; background: #102b37; box-shadow: inset 4px 0 var(--lime); }
.event-date-block span { color: #b9cbd3; font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.event-date-block strong { font-size: 1.18rem; letter-spacing: -.02em; }
.result-details h3 { margin: 0 0 22px; font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.04; letter-spacing: -0.045em; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; margin: 0 0 22px; border: 1px solid #d9e2e1; border-radius: 14px; background: #d9e2e1; }
.metric { min-height: 94px; padding: 14px; background: var(--white); }
.metric span { display: block; margin-bottom: 6px; color: #687981; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.metric strong { display: block; font-size: 1.45rem; line-height: 1; letter-spacing: -0.03em; }
.result-summary { color: #465a63; }
.method-note { padding: 12px 14px; border-left: 3px solid #87ac31; color: #495d64; background: #f1f7e5; font-size: 0.82rem; }
.inline-conversion-cta { display: grid; gap: 2px; margin-top: 18px; padding: 15px 16px; border-radius: 12px; color: #fff; background: #b52d29; text-decoration: none; box-shadow: 0 12px 24px rgba(181,45,41,.2); }
.inline-conversion-cta span { color: #ffd7d4; font-size: .76rem; font-weight: 750; }
.inline-conversion-cta strong { font-size: .94rem; }
.inline-conversion-cta:hover { background: #96221f; transform: translateY(-1px); }

.content-section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 80px 0; }
.section-heading { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 48px; margin-bottom: 32px; }
.section-heading .eyebrow { color: #527000; }
.section-heading h2 { max-width: 800px; margin: 0; font-size: clamp(2rem, 5vw, 4.4rem); line-height: 0.98; letter-spacing: -0.06em; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.info-card { min-height: 220px; padding: 24px; border: 1px solid #d8e2e1; border-radius: var(--radius); background: var(--white); }
.info-card .number { color: #708286; font-size: 0.78rem; font-weight: 900; }
.info-card h3 { margin: 44px 0 10px; font-size: 1.35rem; line-height: 1.08; letter-spacing: -0.035em; }
.info-card p { margin: 0; color: var(--muted); }
.info-card.featured { color: var(--white); background: var(--night-2); }
.info-card.featured p, .info-card.featured .number { color: #b8c9d1; }

.cta-band { width: min(1180px, calc(100% - 32px)); margin: 0 auto 88px; }
.cta-band.inline-section-cta { width: 100%; margin: 0 0 24px; }
.address-report-module { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr); gap: 40px; align-items: center; padding: 44px; border-radius: 24px; color: var(--white); background: linear-gradient(120deg, #102b37, #123746); box-shadow: var(--shadow); }
.address-value { margin: 0 0 8px; color: var(--lime); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.address-report-module h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.05em; }
.address-report-module p { color: #c0d0d7; }
.address-report-form { display: flex; gap: 9px; }
.address-input-wrap { position: relative; flex: 1; min-width: 0; }
.address-report-form input { width: 100%; min-height: 56px; padding: 0 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; outline: none; background: #071923; color: var(--white); }
.address-report-form input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200,255,101,.14); }
.address-report-form button { min-height: 56px; padding: 0 18px; border: 0; border-radius: 12px; color: #0c191e; background: var(--lime); cursor: pointer; font-weight: 900; }
.address-search-status { margin: 10px 0 0; font-size: 0.83rem; }
.address-suggestions { position: absolute; z-index: 1000; left: 0; right: 0; overflow: hidden; border-radius: 10px; background: var(--white); color: var(--ink); box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.address-choices { position: static; display: grid; gap: 7px; margin-top: 12px; color: var(--ink); }
.address-suggestions[hidden], .address-choices[hidden], .address-search-skeleton[hidden] { display: none; }
.address-suggestion { display: flex; gap: 10px; width: 100%; padding: 12px; border: 0; border-bottom: 1px solid #e1e8e7; background: var(--white); cursor: pointer; text-align: left; }
.purchase-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; color: #a9bac2; font-size: .78rem; }
.purchase-proof span, .purchase-proof a { padding: 4px 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; }

.faq { display: grid; gap: 9px; }
.faq details { padding: 18px 20px; border: 1px solid #d7e1df; border-radius: 14px; background: var(--white); }
.faq summary { cursor: pointer; font-weight: 850; }
.faq p { color: var(--muted); }
.bottom-conversion-cta { display: grid; grid-template-columns: .8fr 1.6fr auto; gap: 20px; align-items: center; margin-top: 30px; padding: 24px 26px; border-radius: 18px; color: #fff; background: var(--night-2); text-decoration: none; box-shadow: var(--shadow); }
.bottom-conversion-cta span { color: #a9bbc4; font-size: .82rem; }
.bottom-conversion-cta strong { font-size: 1.15rem; }
.bottom-conversion-cta b { padding: 10px 13px; border-radius: 10px; color: #0b171d; background: var(--lime); white-space: nowrap; }

.live-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.live-toolbar button { min-height: 42px; }
.pulse-dot { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(200,255,101,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(200,255,101,0); } 100% { box-shadow: 0 0 0 0 rgba(200,255,101,0); } }
.alert-list { display: grid; gap: 12px; margin: 0; }
.alert-card { padding: 18px; border: 1px solid #dce4e4; border-left: 5px solid var(--warning); border-radius: 14px; background: var(--white); }
.alert-card.warning { border-left-color: var(--danger); }
.alert-card h3 { margin: 0 0 5px; font-size: 1.18rem; }
.alert-card p { margin: 8px 0; color: #53656d; font-size: .9rem; }
.alert-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.alert-meta span { padding: 4px 7px; border-radius: 6px; background: #eef3f2; color: #506168; font-size: .75rem; font-weight: 800; }
.all-clear { padding: 26px; border: 1px solid #d8e2e1; border-radius: 16px; background: #f6fbf0; }
.all-clear strong { display: block; margin-bottom: 7px; color: #385c0c; font-size: 1.25rem; }
.all-clear p { margin: 0; color: #53656d; }
.safety-note { margin-top: 16px; padding: 14px; border-radius: 12px; color: #6e3b06; background: #fff2d6; font-size: .85rem; }

.site-footer { padding: 34px 16px 46px; border-top: 1px solid rgba(255,255,255,.1); color: #91a4ae; text-align: center; font-size: .82rem; }
.site-footer a { color: #d1dde2; }
.noscript { padding: 12px; color: #4b2700; background: #ffdfa0; text-align: center; }

@media (max-width: 900px) {
  .hero { padding-top: 48px; }
  .hero-inner, .result-grid, .address-report-module { grid-template-columns: 1fr; }
  .hero-inner { gap: 36px; }
  .result-grid { min-height: 0; }
  .map-wrap { min-height: 420px; }
  .section-heading { grid-template-columns: 1fr; gap: 6px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 66px; }
  .site-nav a:not([aria-current="page"]) { display: none; }
  .hero { padding: 42px 0 72px; }
  .hero h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .search-card { padding: 22px; border-radius: 20px; }
  .city-form, .address-report-form { display: grid; }
  .results-shell { transform: translateY(-28px); }
  .result-header { display: block; padding: 24px 22px 20px; }
  .result-badge { display: inline-block; margin-top: 12px; }
  .map-wrap { min-height: 340px; }
  .result-details { padding: 24px 22px; }
  .metric { min-height: 86px; padding: 12px; }
  .metric strong { font-size: 1.25rem; }
  .content-section { padding: 60px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 190px; }
  .address-report-module { gap: 24px; padding: 28px 22px; }
  .hero-address-cta { align-items: flex-start; flex-direction: column; }
  .hero-address-cta strong { text-align: left; }
  .bottom-conversion-cta { grid-template-columns: 1fr; gap: 8px; }
  .bottom-conversion-cta b { justify-self: start; margin-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
