@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #050816;
  --shell-bg: #0b1120;
  --card-bg: #0f172a;
  --card-soft: rgba(15, 23, 42, 0.7);
  --nav-bg: rgba(7, 10, 22, 0.88);
  --accent: #16c2ff;
  --accent-strong: #22d3ee;
  --text-main: #f8fafc;
  --text-muted: #cbd5f5;
  --border-subtle: rgba(148, 163, 184, 0.28);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --success: #22c55e;
  --danger: #f87171;
  --focus-ring: 0 0 0 3px rgba(22, 194, 255, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scrollbar-gutter: stable; }
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: radial-gradient(circle at top, #111827 0, #020617 45%);
  color: var(--text-main);
  min-height: 100vh;
  padding: 32px 12px 48px;
  overflow-y: scroll;
  font-size: 17px;
  line-height: 1.7;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 8px;
  z-index: 100;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page { max-width: 1120px; margin: 0 auto; }

.shell {
  position: relative;
  background: radial-gradient(circle at 50% 12%, #345d8d 0, #1d3554 36%, #0a1629 70%, #020617 100%);
  border-radius: 24px;
  padding: 2.5rem 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(125, 211, 252, 0.28);
}
.shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(56, 189, 248, 0.26), transparent 46%),
    radial-gradient(circle at 12% 10%, rgba(59, 130, 246, 0.12), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(14, 165, 233, 0.12), transparent 38%);
  pointer-events: none;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 12px 10px;
  margin: -8px -8px 22px;
  background: var(--nav-bg);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(241, 245, 249, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  min-height: 48px;
}

.wordmark {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  font-size: 24px;
  white-space: nowrap;
}
.wordmark .wl { color: #0A1F44; }
.wordmark .ai { color: #147DF5; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.nav-products { justify-content: flex-start; }
.nav-meta { justify-content: flex-end; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.6);
}
.nav-links a:hover { color: var(--text-main); border-color: rgba(22, 194, 255, 0.55); }
.nav-links a[aria-current="page"] {
  color: var(--text-main);
  border-color: rgba(22, 194, 255, 0.65);
  background: rgba(22, 194, 255, 0.16);
}

.nav-cta { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-direction: column;
}
.nav-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.nav-stack .nav-links {
  justify-content: flex-end;
}
.nav-stack .nav-zip-form {
  justify-content: flex-end;
}

.nav-zip-form {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-zip-input {
  width: 120px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  padding: 8px 12px;
  font-size: 13px;
}
.nav-zip-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.nav-zip-status {
  font-size: 12px;
  color: var(--text-muted);
}

.hero,
.card,
.content,
.info-card,
.role-card,
.section-card,
.checkout-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
}

.home-hero {
  text-align: center;
}

.home-hero h1,
.home-hero .subline,
.home-hero p,
.home-hero .disclosure {
  margin-left: auto;
  margin-right: auto;
}

.home-hero .disclosure {
  max-width: 76ch;
}

h1 {
  font-size: clamp(42px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 3.2vw, 32px);
  line-height: 1.2;
  margin-bottom: 10px;
}
h3 { font-size: 20px; margin-bottom: 8px; }

p, li {
  color: rgba(226, 232, 240, 0.96);
  max-width: 70ch;
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
  color: #e2e8f0;
}
ul, ol {
  margin: 0 0 14px 0;
  padding-left: 0;
  list-style: none;
}
ul li, ol li {
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}
ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #cbd5f5;
}
ol { counter-reset: item; }
ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #cbd5f5;
  font-weight: 600;
}

.subline { color: var(--text-muted); font-size: 17px; }
.muted { color: var(--text-muted); font-size: 15px; }

.disclosure {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-muted);
  font-size: 15px;
  margin: 14px 0;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.role-card {
  padding: 1.75rem 1.5rem;
}
.role-card p { min-height: 86px; }
.role-card,
.card,
.section-card {
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.role-card:hover,
.card:hover,
.section-card:hover {
  border-color: rgba(22, 194, 255, 0.35);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: #071122;
  background: linear-gradient(135deg, #16c2ff 0%, #2563eb 100%);
  font-weight: 700;
  font-size: 14px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.info-card { padding: 1.5rem; }
.info-card ul { margin-left: 0; }

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
}
.card { padding: 1.75rem 1.5rem; }

.content { padding: 1.75rem 1.5rem 1.5rem; }
.section-card { padding: 1.25rem; margin-top: 1.25rem; background: var(--card-soft); }
.pack-hero {
  max-width: 920px;
  margin: 0 auto 10px;
  text-align: center;
}
.pack-hero h1,
.pack-hero p {
  margin-left: auto;
  margin-right: auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.trust-pill {
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 12px;
  padding: 10px 12px;
  color: #e2e8f0;
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
}

.teaser { border: 1px dashed rgba(56, 189, 248, 0.45); border-radius: 12px; padding: 14px; background: rgba(30, 41, 59, 0.42); }
.quick-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 14px; }
.quick-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(22, 194, 255, 0.45);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: #e0f2fe;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  min-width: 180px;
  justify-content: center;
  text-align: center;
}
.quick-link small { color: #bfdbfe; font-weight: 600; font-size: 12px; line-height: 1.4; }
.quick-link:hover { border-color: rgba(22, 194, 255, 0.7); background: rgba(22, 194, 255, 0.18); }
.quick-link.is-active,
.quick-link[aria-current="location"] {
  border-color: rgba(34, 211, 238, 0.95);
  background: rgba(8, 145, 178, 0.28);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.24);
}
.hero-cta-row {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.hero-zip-form {
  margin: 14px 0 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-zip-form .nav-zip-input {
  width: 170px;
}
.hero-zip-form .nav-zip-status {
  width: 100%;
  text-align: center;
}
.section-quick-links {
  margin: 10px 0 12px;
}
.section-link-bar {
  margin: 10px auto 14px;
}
.section-quick-links-above {
  margin: 6px 0 10px;
}
.section-quick-links .quick-link {
  min-width: 160px;
  padding: 8px 10px;
}
.mobile-balance-heading {
  text-wrap: balance;
}
.tier-short-description {
  margin-top: 8px;
  text-align: center;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-trustline {
  text-align: center;
  font-weight: 700;
}
.storm-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.storm-flow-step {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.58);
  padding: 8px 10px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.storm-flow-arrow {
  color: #7dd3fc;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}

.field-group { margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.field-row,
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row .field-group,
.row .field-group { min-width: 0; }

label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
input, textarea, select {
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-main);
  font-size: 16px;
  padding: 12px 14px;
  width: 100%;
}
textarea { min-height: 110px; resize: vertical; }
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-color: rgba(22, 194, 255, 0.7);
}
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

.checkbox { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; }
.checkbox label { font-size: 15px; color: rgba(229, 231, 235, 0.92); font-weight: 500; }
.logo-preview-wrap {
  display: none;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(2, 6, 23, 0.68);
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
}
.logo-preview-wrap.show { display: flex; }
.logo-preview-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  flex: 0 0 auto;
}
.logo-preview-meta {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.draft-actions { margin-top: 10px; display: flex; justify-content: flex-start; }

.submit,
.submit-btn,
.check-btn,
.clear-btn,
.step-next,
.step-back {
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
}
.submit:active,
.submit-btn:active,
.check-btn:active,
.clear-btn:active,
.step-next:active,
.step-back:active,
.nav-cta:active {
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}
.submit-row.storm-step-guided {
  border-radius: 16px;
  padding: 12px;
}
.submit {
  border: none;
  background: linear-gradient(135deg, #16c2ff 0%, #2563eb 100%);
  color: #081423;
  width: 100%;
}
.submit-btn {
  border: none;
  background: linear-gradient(135deg, #16c2ff 0%, #2563eb 100%);
  color: #020617;
  box-shadow: 0 10px 30px rgba(22, 194, 255, 0.35);
}
.clear-btn,
.check-btn,
.step-back {
  background: rgba(2, 6, 23, 0.85);
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.38);
}
.clear-btn:hover,
.check-btn:hover,
.step-back:hover {
  border-color: rgba(22, 194, 255, 0.5);
  color: #e0f2fe;
}
.submit:disabled,
.submit-btn:disabled { opacity: 0.6; cursor: default; box-shadow: none; }

.status-text { min-height: 18px; font-size: 14px; color: var(--text-muted); }
.status-text.success { color: var(--success); }
.status-text.error { color: var(--danger); }

.stepper {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.stepper-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.stepper-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
}
.stepper-bar {
  flex: 1 1 220px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}
.stepper-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #16c2ff, #22c55e);
  transition: width 0.2s ease;
}
.step {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  padding: 16px;
  background: rgba(2, 6, 23, 0.45);
  margin-bottom: 12px;
  display: none;
}
.step.is-active {
  border-color: rgba(22, 194, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(22, 194, 255, 0.22) inset;
  display: block;
}
.step-title {
  font-weight: 700;
  margin-bottom: 10px;
}
.storm-step-guided {
  border-color: rgba(56, 189, 248, 0.72) !important;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.28), 0 0 0 10px rgba(56, 189, 248, 0.08);
}
.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.step-error {
  color: var(--danger);
  font-size: 14px;
  min-height: 18px;
}

details.faq {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: rgba(2, 6, 23, 0.55);
}
details.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }

.tier-card,
.tier-card-select,
.pack-card,
.tier-btn,
.age-btn,
.mode-btn,
.chip {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  padding: 12px;
  background: rgba(2, 6, 23, 0.7);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.tier-card-select,
.tier-card,
.pack-card,
.tier-btn,
.age-btn,
.mode-btn,
.chip { cursor: pointer; }

.tier-card h3 .card-title,
.tier-card-select h3 .card-title,
.pack-card h3 .card-title {
  display: inline;
}

.tier-card h3 .card-price,
.tier-card-select h3 .card-price,
.pack-card h3 .card-price {
  display: inline;
  margin-left: 4px;
  white-space: nowrap;
}
.tier-per-lead {
  margin: 6px 0 4px;
  color: #bfdbfe;
  font-weight: 700;
  font-size: 14px;
}
.tier-popular {
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: none;
}
.tier-popular-badge {
  position: absolute;
  top: 8px !important;
  right: 8px !important;
  left: auto !important;
  bottom: auto !important;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1f2937;
  background: #fde68a;
  border: 1px solid rgba(202, 138, 4, 0.65);
  border-radius: 999px;
  padding: 0;
  z-index: 6;
}
.tier-card-status {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.92);
  border: 1px solid rgba(248, 113, 113, 0.55);
  border-radius: 10px;
  padding: 5px 8px;
  max-width: calc(100% - 16px);
  text-align: right;
  z-index: 2;
}
.tier-card-status.buyable {
  color: #ecfeff;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.95), rgba(8, 47, 73, 0.95));
  border-color: rgba(34, 211, 238, 0.72);
}
.tier-card-status.unavailable {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.92);
  border-color: rgba(248, 113, 113, 0.55);
}
.tier-card.has-status,
.tier-card-select.has-status {
  padding-bottom: 44px;
}
.tier-card-unavailable,
.tier-card-select.tier-card-unavailable {
  filter: grayscale(0.28);
}
.tier-card-buyable-fee,
.tier-card-select.tier-card-buyable-fee {
  border-color: rgba(34, 197, 94, 0.58);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.2);
}
.tier-popular-btn {
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: none;
}
.popular-star {
  color: #facc15;
  font-weight: 800;
}

.tier-card.active,
.tier-card-select.active,
.pack-card.active,
.tier-btn.active,
.age-btn.active,
.mode-btn.active,
.chip.active {
  border-color: rgba(22, 194, 255, 0.72);
  background: rgba(22, 194, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(22, 194, 255, 0.24) inset;
}
.tier-card.active.tier-card-buyable-fee,
.tier-card-select.active.tier-card-buyable-fee {
  border-color: rgba(22, 194, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(22, 194, 255, 0.24) inset;
}

.tier-card.active::after,
.tier-card-select.active::after,
.pack-card.active::after {
  content: "Selected";
  position: absolute;
  top: 8px !important;
  left: auto !important;
  right: 8px !important;
  bottom: auto !important;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0b2a12;
  background: #86efac;
  border: 1px solid rgba(22, 101, 52, 0.38);
  border-radius: 999px;
  padding: 4px 8px;
  z-index: 5;
}
.tier-popular.active::after,
.tier-card-select.tier-popular.active::after {
  right: 34px !important;
}

.zip-signals { display: flex; flex-wrap: wrap; gap: 8px; min-height: 28px; margin-top: 6px; }
.zip-cluster-preview-wrap {
  align-items: center;
}
.zip-cluster-preview-card {
  width: min(100%, 680px);
  margin: 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.6);
  display: grid;
  gap: 10px;
}
.zip-cluster-preview-img {
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.7);
  display: none;
}
.zip-cluster-preview-img.is-visible {
  display: block;
}
#zip-cluster-preview-status {
  text-align: center;
  line-height: 1.4;
  white-space: pre-line;
}
.zip-pill {
  display: block;
  max-width: 100%;
  flex: 1 1 280px;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.zip-pill.rich {
  white-space: normal;
  line-height: 1.45;
}
.zip-pill.catalog-selectable {
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
.zip-pill.catalog-selectable:hover {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.65);
}
.zip-pill.catalog-selected {
  border-color: rgba(34, 197, 94, 0.85);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.45);
  position: relative;
}
.zip-pill.catalog-selected::after {
  content: "Selected";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  color: #0b2a12;
  background: #86efac;
  border: 1px solid rgba(22, 101, 52, 0.38);
  border-radius: 999px;
  padding: 3px 7px;
}
.zip-pill::first-line {
  font-weight: 700;
  color: #f8fafc;
}
.zip-pill.good { border-color: rgba(16, 185, 129, 0.7); background: rgba(16, 185, 129, 0.16); color: #d1fae5; }
.zip-pill.bad { border-color: rgba(248, 113, 113, 0.5); background: rgba(248, 113, 113, 0.12); color: #fee2e2; }
.zip-pill.severe {
  border-color: rgba(245, 158, 11, 0.88);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.25), rgba(30, 41, 59, 0.74));
  color: #fef3c7;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.34);
}
.zip-pill.gold {
  border-color: rgba(245, 158, 11, 0.82);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.28), rgba(180, 83, 9, 0.18));
  color: #fffbeb;
  box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.28);
}
.storm-info-shell {
  display: grid;
  gap: 8px;
}
.storm-info-brand {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin-bottom: 8px;
  text-align: center;
}
.storm-info-brand-wordmark {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: 19px;
  white-space: nowrap;
}
.storm-info-brand-wordmark .wl { color: #f8fafc; }
.storm-info-brand-wordmark .ai { color: #38bdf8; }
.storm-info-brand-url {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}
.storm-info-eyebrow {
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #93c5fd;
}
.storm-info-title {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
  color: #f8fafc;
}
.zip-pill .storm-info-title {
  padding-right: 68px;
}
.storm-info-subtitle {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  color: #fde68a;
}
.storm-info-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.storm-info-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.storm-info-chip.meta {
  border-color: rgba(96, 165, 250, 0.36);
  background: rgba(30, 64, 175, 0.18);
  color: #dbeafe;
}
.storm-info-chip.pack {
  border-color: rgba(34, 197, 94, 0.34);
  background: rgba(21, 128, 61, 0.18);
  color: #dcfce7;
}
.storm-info-grid {
  display: grid;
  gap: 6px;
}
.storm-info-row {
  display: grid;
  grid-template-columns: minmax(0, 116px) 1fr;
  gap: 10px;
  align-items: start;
}
.storm-info-row-pack-choice {
  grid-template-columns: 1fr;
  gap: 6px;
  justify-items: center;
  text-align: center;
}
.storm-info-row-pack-choice .storm-info-label,
.storm-info-row-pack-choice .storm-info-value {
  width: 100%;
  text-align: center;
}
.storm-info-row-pack-choice .storm-info-chip-list,
.storm-info-row-pack-choice .storm-alert-pack-picker {
  justify-content: center;
}
.storm-info-label {
  color: #93c5fd;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.storm-info-value {
  color: #f8fafc;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.storm-info-value.ready {
  color: #86efac;
}
.storm-info-value.limited {
  color: #fcd34d;
}
.storm-info-value.risk-significant {
  color: #fdba74;
}
.storm-info-value.risk-catastrophic {
  color: #fb923c;
  font-weight: 900;
}
.storm-info-value.risk-elevated {
  color: #86efac;
}
.storm-info-value.risk-watch {
  color: #cbd5e1;
}
.storm-info-note,
.storm-info-cta {
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 12px;
  line-height: 1.45;
}
.storm-info-note {
  color: #dbeafe;
}
.storm-note-copy + .storm-note-copy,
.storm-note-copy + .storm-fee-box,
.storm-fee-box + .storm-note-copy {
  margin-top: 8px;
}
.storm-fee-box {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.18), rgba(15, 23, 42, 0.82));
}
.storm-fee-title {
  color: #fef3c7;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}
.storm-fee-subtitle {
  margin-top: 4px;
  color: #bfdbfe;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}
.storm-fee-list {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}
.storm-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #f8fafc;
  font-size: 11px;
  line-height: 1.35;
}
.storm-fee-label {
  color: #e2e8f0;
  font-weight: 700;
}
.storm-fee-amount {
  color: #fde68a;
  font-weight: 900;
  white-space: nowrap;
}
.storm-info-cta {
  color: #fef3c7;
  font-weight: 700;
}
.storm-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.82);
  background: rgba(245, 158, 11, 0.22);
  color: #fef3c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.storm-catalog { margin-top: 8px; max-height: none; overflow: visible; padding-right: 0; }
.storm-catalog,
#live-storm-alerts-list,
#zip-signals {
  overflow-anchor: none;
}
.storm-catalog > details > div {
  min-height: 575px;
  max-height: 620px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}
.storm-catalog-loading-box {
  margin-top: 6px;
  border: 1px solid rgba(245, 158, 11, 0.62);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.24), rgba(180, 83, 9, 0.14));
  box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.24);
  padding: 10px 12px;
}
.storm-catalog-loading-box .muted {
  color: #fde68a;
}
.storm-alerts-box {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.62);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.2), rgba(124, 58, 237, 0.08));
}
.storm-alerts-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.storm-alerts-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.storm-alerts-row-top {
  align-items: baseline;
}
.storm-alerts-row-tabs {
  margin-top: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}
.storm-alerts-row-filters,
.storm-alerts-row-meta,
.storm-alerts-row-filter-summary {
  margin-top: 2px;
}
.storm-alerts-title {
  white-space: nowrap;
  font-size: 14px;
  color: #fef3c7;
}
.storm-alerts-utility {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.storm-alert-utility-item {
  font-size: 10px;
  line-height: 1.2;
  color: #cbd5e1;
  white-space: nowrap;
}
.storm-alert-status {
  color: #dbeafe;
  font-weight: 600;
}
.storm-alerts-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.storm-alerts-filter-controls {
  gap: 8px 10px;
}
.storm-alert-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.storm-alert-filter-inline {
  min-width: 110px;
}
.storm-alert-filter-label {
  font-size: 10px;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.storm-alert-type-chips {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.storm-alert-type-chip {
  border: 1px solid rgba(96, 165, 250, 0.38);
  background: rgba(15, 23, 42, 0.7);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease, color 0.14s ease;
}
.storm-alert-type-chip:hover {
  border-color: rgba(56, 189, 248, 0.76);
  color: #e0f2fe;
}
.storm-alert-type-chip.active {
  border-color: rgba(56, 189, 248, 0.85);
  background: rgba(14, 116, 144, 0.26);
  color: #f8fafc;
}
.storm-alert-filter-select,
.storm-alert-filter-input,
.storm-alert-radius-select {
  min-width: 105px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.38);
  background: rgba(15, 23, 42, 0.7);
  color: #f8fafc;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  font-family: inherit;
}
.storm-alert-filter-input {
  min-width: 130px;
}
.storm-alert-filter-input::placeholder {
  color: #94a3b8;
}
.storm-alert-filter-reset-btn {
  border: 1px solid rgba(148, 163, 184, 0.46);
  background: rgba(15, 23, 42, 0.62);
  color: #e2e8f0;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}
.storm-alert-filter-reset-btn:hover {
  border-color: rgba(56, 189, 248, 0.72);
  color: #e0f2fe;
}
.storm-alerts-filter-summary {
  color: #b8c5d8;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}
.storm-alerts-scope {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.storm-alert-scope-btn {
  border: 1px solid rgba(59, 130, 246, 0.64);
  background: rgba(30, 64, 175, 0.44);
  color: #dbeafe;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease, color 0.14s ease;
}
.storm-alert-scope-btn:hover {
  border-color: rgba(125, 211, 252, 0.9);
  color: #f0f9ff;
}
.storm-alert-scope-btn.active {
  border-color: rgba(186, 230, 253, 0.95);
  background: rgba(37, 99, 235, 0.7);
  color: #f8fafc;
}
.storm-alert-scope-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.storm-alert-radius-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
.storm-alerts-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.storm-alerts-ticker {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  padding-bottom: 2px;
}
.storm-alert-ticker-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: max-content;
  animation: storm-ticker-scroll 72s linear infinite;
  will-change: transform;
}
.storm-alerts-ticker:hover .storm-alert-ticker-track {
  animation-play-state: paused;
}
.storm-alert-ticker-card {
  width: 270px;
  min-width: 270px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.84), rgba(15, 23, 42, 0.9));
  border-radius: 12px;
  padding: 10px 11px;
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
.storm-alert-ticker-card:hover,
.storm-alert-ticker-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.78);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.22) inset;
  outline: none;
}
.storm-alert-ticker-card.catastrophic {
  border-color: rgba(248, 113, 113, 0.72);
  background: linear-gradient(180deg, rgba(127, 29, 29, 0.24), rgba(15, 23, 42, 0.92));
}
.storm-alert-ticker-card.observed {
  box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.18);
}
.storm-alert-ticker-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.storm-alert-ticker-risk {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fef3c7;
}
.storm-alert-ticker-risk.catastrophic {
  color: #fecaca;
}
.storm-alert-ticker-recency {
  font-size: 11px;
  color: #bfdbfe;
  white-space: nowrap;
}
.storm-alert-ticker-zip {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1.1;
}
.storm-alert-ticker-sub {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #94a3b8;
}
.storm-alert-ticker-line {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  color: #dbeafe;
  line-height: 1.35;
}
.storm-alert-ticker-line strong {
  color: #fef3c7;
  font-weight: 800;
}
@keyframes storm-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.storm-alerts-pagination {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 10px;
}
.storm-alert-pagination-meta {
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
}
.storm-alert-pagination-controls {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.storm-alert-pagination-btn {
  border: 1px solid rgba(148, 163, 184, 0.42);
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease, color 0.14s ease;
}
.storm-alert-pagination-btn:hover:not(:disabled) {
  border-color: rgba(56, 189, 248, 0.82);
  color: #f0f9ff;
}
.storm-alert-pagination-btn.active {
  border-color: rgba(186, 230, 253, 0.95);
  background: rgba(14, 116, 144, 0.34);
  color: #ffffff;
}
.storm-alert-pagination-btn:disabled,
.storm-alert-pagination-btn.disabled {
  cursor: default;
  opacity: 0.5;
}
.storm-alert-pagination-ellipsis {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.08em;
}
.storm-alerts-status {
  min-height: 20px;
}
.storm-alerts-load-status {
  min-height: 20px;
  width: 100%;
}
.storm-alerts-timestamps {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  text-align: right;
}
.storm-alert-refresh-btn {
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: rgba(15, 23, 42, 0.72);
  color: #e0f2fe;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}
.storm-alert-refresh-btn:hover {
  border-color: rgba(56, 189, 248, 0.7);
}
.storm-alert-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(2, 6, 23, 0.66);
  border-radius: 10px;
  padding: 8px 10px;
  color: #e2e8f0;
  line-height: 1.35;
  font-size: 12px;
  min-width: 0;
}
.storm-alert-card strong {
  display: block;
  color: #fef3c7;
  margin-bottom: 2px;
}
.storm-alert-card .storm-alert-meta {
  color: #bfdbfe;
}
.storm-alert-card .storm-alert-zip {
  color: #86efac;
  font-weight: 700;
}
.storm-alert-card .storm-alert-zip-label {
  color: #fef3c7;
  font-weight: 800;
}
.storm-alert-card .storm-alert-zip-code {
  color: #93c5fd;
  font-weight: 900;
}
.storm-alert-card .storm-alert-zip-availability {
  color: #86efac;
  font-weight: 700;
}
.storm-alert-card.clickable {
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.storm-alert-card.clickable:hover {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.74);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.24) inset;
}
.storm-alert-card.clickable:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.88);
  outline-offset: 2px;
}
.storm-alert-card.severe {
  border-color: rgba(245, 158, 11, 0.92);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(30, 41, 59, 0.72));
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.36);
}
.storm-alert-card.selected {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.44);
}
.storm-alert-card .storm-info-eyebrow {
  color: #67e8f9;
}
.storm-alert-card .storm-info-subtitle {
  color: #f8fafc;
}
.storm-alert-card .storm-info-chip.meta {
  background: rgba(14, 116, 144, 0.18);
  border-color: rgba(103, 232, 249, 0.28);
  color: #cffafe;
}
.storm-alert-card .storm-info-note {
  color: #bfdbfe;
}
.storm-alert-card .storm-info-cta {
  color: #fef3c7;
}
.storm-signal-badges {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.storm-signal-badge {
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
}
.storm-signal-badge.tornado {
  border-color: rgba(248, 113, 113, 0.72);
  color: #fecaca;
  background: rgba(127, 29, 29, 0.28);
}
.storm-signal-badge.hail {
  border-color: rgba(96, 165, 250, 0.72);
  color: #bfdbfe;
  background: rgba(30, 64, 175, 0.24);
}
.storm-signal-badge.wind {
  border-color: rgba(52, 211, 153, 0.72);
  color: #a7f3d0;
  background: rgba(6, 78, 59, 0.28);
}
.storm-activity-badges {
  gap: 8px;
}
.storm-signal-badge.activity {
  border-color: rgba(251, 191, 36, 0.42);
  color: #fef3c7;
  background: rgba(120, 53, 15, 0.32);
}
.storm-signal-badge.activity.active-now {
  border-color: rgba(248, 113, 113, 0.72);
  color: #fee2e2;
  background: rgba(153, 27, 27, 0.32);
}
.storm-signal-badge.activity.ongoing {
  border-color: rgba(251, 191, 36, 0.72);
  color: #fde68a;
  background: rgba(146, 64, 14, 0.3);
}
.storm-signal-badge.activity.lingering {
  border-color: rgba(148, 163, 184, 0.52);
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.46);
}
.storm-signal-badge.activity.increasing {
  border-color: rgba(34, 197, 94, 0.7);
  color: #dcfce7;
  background: rgba(20, 83, 45, 0.32);
}
.storm-signal-badge.activity.steady {
  border-color: rgba(59, 130, 246, 0.68);
  color: #dbeafe;
  background: rgba(30, 64, 175, 0.28);
}
.storm-signal-badge.activity.decreasing {
  border-color: rgba(167, 139, 250, 0.58);
  color: #ede9fe;
  background: rgba(88, 28, 135, 0.26);
}
.storm-signal-badge.activity.compiled {
  border-color: rgba(56, 189, 248, 0.58);
  color: #e0f2fe;
  background: rgba(12, 74, 110, 0.28);
}
.storm-signal-badge.activity.catastrophic-compiled {
  border-color: rgba(249, 115, 22, 0.72);
  color: #ffedd5;
  background: rgba(124, 45, 18, 0.34);
}
.storm-alert-pack-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.pack-remaining-counters {
  margin-top: 8px;
  display: grid;
  gap: 2px;
  width: 100%;
  font-size: 12px;
  line-height: 1.35;
  color: #bfdbfe;
}
.storm-alert-pack-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(96, 165, 250, 0.42);
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease, transform 0.14s ease;
}
.storm-alert-pack-tag:hover:not(.unavailable) {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.92);
  background: rgba(14, 165, 233, 0.16);
}
.storm-alert-pack-tag.active {
  border-color: rgba(22, 194, 255, 0.86);
  background: rgba(22, 194, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(22, 194, 255, 0.3) inset;
}
.storm-alert-pack-tag.unavailable {
  opacity: 0.52;
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.46);
  cursor: not-allowed;
}
.storm-alert-pack-btn {
  appearance: none;
  border: 1px solid rgba(96, 165, 250, 0.42);
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease, transform 0.14s ease;
}
.storm-alert-pack-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.92);
  background: rgba(14, 165, 233, 0.16);
}
.storm-alert-pack-btn.selected {
  border-color: rgba(34, 197, 94, 0.92);
  background: rgba(22, 163, 74, 0.22);
  color: #dcfce7;
}
.storm-alert-pack-btn.disabled,
.storm-alert-pack-btn:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.46);
}
.storm-alert-inline-checkout-wrap {
  margin-top: 10px;
  text-align: center;
}
.storm-alert-inline-checkout {
  appearance: none;
  border: 1px solid rgba(245, 158, 11, 0.72);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.22), rgba(180, 83, 9, 0.18));
  color: #fff7ed;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.storm-alert-inline-checkout:hover {
  filter: brightness(1.06);
}
.storm-alert-inline-status {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #bfdbfe;
  text-align: center;
}
.storm-alert-inline-selection {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}
.damage-profile-line {
  color: #f8fafc;
  font-weight: 700;
}
.damage-profile {
  display: grid;
  gap: 8px;
}
.damage-profile-current {
  color: #f8fafc;
  font-weight: 700;
}
.damage-profile-band {
  color: #ffd24d;
  font-weight: 800;
  margin-left: 6px;
}
.damage-profile-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.damage-profile-chip {
  display: grid;
  gap: 2px;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.48);
  color: #cbd5e1;
  text-align: center;
}
.damage-profile-chip strong {
  color: #f8fafc;
  font-size: 11px;
  line-height: 1.15;
}
.damage-profile-chip small {
  color: #93c5fd;
  font-size: 10px;
  line-height: 1.15;
}
.damage-profile-chip.active {
  border-color: rgba(245, 158, 11, 0.78);
  background: rgba(245, 158, 11, 0.12);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.22);
}
.damage-profile-note {
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.3;
}
.no-storm-upsell-card {
  border: 1px solid rgba(245, 158, 11, 0.56);
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.2), rgba(15, 23, 42, 0.78));
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.no-storm-upsell-title {
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}
.no-storm-upsell-copy {
  margin: 0;
  font-size: 12px;
  flex-basis: 100%;
}
.no-storm-upsell-optin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
  flex: 0 0 auto;
  width: fit-content;
}
.no-storm-upsell-optin span {
  white-space: nowrap;
  line-height: 1.2;
}
.no-storm-upsell-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chip-toggle-row,
.tier-buttons,
.age-buttons,
.mode-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.age-buttons { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mode-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tier-buttons.four-visible {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.chip small,
.tier-btn small,
.age-btn small,
.mode-btn small {
  display: block;
  margin-top: 4px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.96;
}

.mode-btn,
.chip {
  color: #ffffff;
  font-weight: 700;
}

.tier-btn,
.age-btn {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.age-btn.locked,
.age-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  border-color: rgba(148, 163, 184, 0.28) !important;
  box-shadow: none !important;
}

.tier-btn.disabled,
.tier-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: rgba(203, 213, 225, 0.85) !important;
  background: rgba(15, 23, 42, 0.65) !important;
  border-color: rgba(100, 116, 139, 0.35) !important;
  box-shadow: none !important;
  filter: grayscale(0.35);
}

.tier-btn.disabled small,
.tier-btn:disabled small {
  color: rgba(148, 163, 184, 0.9) !important;
}

.zip-query-block { margin-bottom: 10px; }
.zip-query-block > label:first-child {
  font-weight: 700;
  color: #f8fafc;
}
.zip-query-optin { display:flex; align-items:center; gap:8px; margin:0 0 8px; justify-content: flex-start; }
.zip-query-optin input { width: 18px; height: 18px; flex: 0 0 auto; margin: 0; }
.zip-query-row { grid-template-columns: minmax(0,1fr) auto; align-items: center; justify-items: start; }
.zip-query-row .field-group { width: 100%; }
.zip-query-row .zip-query-action { justify-self: start; }
.zip-query-row .field-group { margin-bottom: 0; }
.zip-query-row .zip-query-action { min-width: 170px; }

.checkout-intro { text-align: center; margin: 0 auto 12px; max-width: 920px; }
.checkout-intro .muted { margin: 4px 0; }
.checkout-intro-lines {
  display: grid;
  gap: 8px;
  justify-items: center;
}
.checkout-intro-line {
  width: 100%;
  max-width: min(100%, 900px);
  margin: 0;
  color: #e2e8f0;
  text-align: center;
  line-height: 1.45;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.checkout-card-flat #storm-pack-form {
  max-width: 780px;
  margin: 0 auto;
}
.checkout-card-flat .step {
  display: block !important;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.checkout-card-flat .step + .step {
  margin-top: 12px;
  padding-top: 0;
  border-top: 0;
}
.checkout-card-flat .step.is-active {
  border: 0;
  box-shadow: none;
  display: block;
}
.checkout-card-flat .step-title {
  margin-bottom: 8px;
}
.checkout-card-flat .step-title-inline {
  font-size: 14px;
  color: #cbd5e1;
}
.checkout-intro-compact {
  margin-bottom: 10px;
}
.checkout-policy-inline {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 12px;
  background: rgba(8, 47, 73, 0.22);
  text-align: center;
}
.checkout-policy-inline .policy-detail-line {
  margin: 0;
}
.checkout-policy-inline .policy-detail-line + .policy-detail-line {
  margin-top: 6px;
}
.checkout-notes {
  margin-top: 10px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.35), rgba(2, 6, 23, 0.62));
  padding: 10px 12px;
}
.checkout-notes summary {
  cursor: pointer;
  font-weight: 800;
  color: #ffffff;
  list-style: none;
  letter-spacing: 0.01em;
  padding: 2px 0;
}
.checkout-notes summary::-webkit-details-marker { display: none; }
.checkout-notes summary::after {
  content: " +";
  color: #67e8f9;
  font-weight: 800;
}
.checkout-notes[open] summary::after {
  content: " -";
}
.policy-detail-line {
  margin: 8px 0 0;
  color: #dbeafe;
  line-height: 1.5;
}
.checkout-trust-badge {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.45);
  background: rgba(8, 47, 73, 0.35);
  text-align: center;
}
.checkout-trust-badge p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.35;
  font-size: 14px;
  max-width: 100%;
}
.checkout-trust-badge p + p {
  margin-top: 4px;
}
.checkout-trust-badge a {
  color: #67e8f9;
}

#embedded-checkout-wrap,
#embedded-checkout {
  overflow-anchor: none;
}

.embedded-checkout-loading {
  min-height: min(70vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.55);
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

#zip-check-status,
#zip-availability-status,
#zip-query-email-status,
#zip-query-email-list,
#tz-preview-status,
#tz-preview-summary {
  display: block;
  width: 100%;
  margin-top: 8px !important;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.45);
  color: #dbeafe;
  line-height: 1.45;
}
.zip-decision-card {
  display: grid;
  gap: 6px;
}
.zip-decision-row {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 10px;
  align-items: start;
}
.zip-decision-label {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.zip-decision-value {
  color: #e2e8f0;
  font-weight: 600;
}
.zip-decision-foot {
  margin-top: 4px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 960px) {
  .storm-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .zip-pill .storm-info-title {
    padding-right: 0;
  }
}
.hero-status {
  border-color: rgba(34, 211, 238, 0.46) !important;
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.6), rgba(2, 6, 23, 0.76)) !important;
  box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.12);
  color: #e2e8f0 !important;
}

#storm-catalog-status,
#storm-catalog-summary {
  display: block;
  margin-top: 6px !important;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fde68a;
  line-height: 1.4;
}
.geo-sub-price {
  font-size: 12px;
  color: var(--accent-strong);
  font-weight: 700;
  margin-left: 6px;
}

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr; }
  .zip-query-row { grid-template-columns: 1fr; }
  .zip-query-row .zip-query-action { min-width: 0; }
  .storm-alerts-row-top { grid-template-columns: 1fr; }
  .storm-alerts-row-tabs { grid-template-columns: 1fr; }
  .storm-alerts-row-filters { grid-template-columns: 1fr; }
  .storm-alerts-row-meta { grid-template-columns: 1fr; }
  .storm-alerts-row-tabs { padding-bottom: 8px; }
  .storm-alerts-utility { justify-content: flex-start; width: 100%; gap: 6px 10px; }
  .storm-alerts-controls { justify-content: flex-start; width: 100%; }
  .storm-alerts-filter-controls {
    gap: 10px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .storm-alert-filter-group { flex-shrink: 1; }
  .storm-alert-type-chips { flex-wrap: wrap; }
  .storm-alert-filter-inline { min-width: 0; width: 100%; max-width: 220px; }
  .storm-alert-filter-select,
  .storm-alert-filter-input { width: 100%; }
  .storm-alerts-actions { width: 100%; justify-content: flex-start; }
  .storm-alerts-scope {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }
  .storm-alert-scope-btn {
    width: 100%;
    text-align: center;
  }
  .storm-alerts-radius-slot { justify-content: flex-start; min-width: 0; }
  .storm-alerts-timestamps { justify-content: flex-start; text-align: left; gap: 6px 12px; width: 100%; }
  .storm-alerts-list { grid-template-columns: 1fr; }
  .storm-alerts-ticker {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .storm-alerts-ticker::-webkit-scrollbar {
    display: none;
  }
  .storm-alert-ticker-track {
    animation-duration: 88s;
  }
  .storm-alerts-pagination { justify-content: flex-start; }
  .storm-alert-pagination-controls { width: 100%; }
  .storm-flow { justify-content: center; overflow-x: visible; }
  .zip-decision-row { grid-template-columns: 1fr; gap: 4px; }
  h1 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.12;
  }
  h2 {
    font-size: clamp(21px, 5.2vw, 28px);
    line-height: 1.2;
  }
  .storm-alert-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .shell {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .content {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  .quick-actions.hero-cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
  }
  .quick-actions.hero-cta-row .quick-link {
    min-width: 0;
    width: 100%;
    font-size: 12px;
    line-height: 1.25;
    padding: 9px 8px;
  }
  .section-link-bar {
    margin-top: 8px;
    margin-bottom: 12px;
  }
  .mobile-center-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-balance-heading {
    font-size: clamp(24px, 7vw, 30px);
    max-width: 20ch;
    text-wrap: balance;
  }
  .checkout-card > h2.mobile-balance-heading {
    max-width: 16ch;
  }
  .checkout-intro-lines {
    justify-items: stretch;
  }
  .checkout-intro-line {
    text-align: left;
    max-width: 100%;
  }
  .tier-card-grid,
  .tier-card-grid.four-visible,
  .tier-card-grid.five-visible {
    grid-template-columns: 1fr !important;
  }
  .tier-card-grid.five-visible > :last-child {
    grid-column: auto !important;
  }
  .storm-alerts-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
  }
  .storm-alerts-head {
    align-items: center;
  }
  .storm-alerts-row-top,
  .storm-alerts-row-tabs,
  .storm-alerts-row-filters,
  .storm-alerts-row-filter-summary {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .storm-alerts-title {
    text-align: center;
    white-space: normal;
    font-size: clamp(16px, 4.8vw, 20px);
    text-wrap: balance;
  }
  .storm-alerts-utility,
  .storm-alerts-controls {
    justify-content: center;
  }
  .storm-alert-filter-group,
  .storm-alerts-filter-summary,
  .storm-alert-card {
    text-align: left;
  }
  .storm-alert-card {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .storm-alert-ticker-card {
    width: 236px;
    min-width: 236px;
  }
  #storm-pack-form .step {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  #storm-pack-form .step-title,
  #storm-pack-form #zip-signals-wrap > label {
    text-align: center;
  }
  .checkout-card-flat #storm-pack-form .step-title-inline {
    text-align: left;
  }
  #storm-pack-form #zip-signals {
    justify-content: center;
  }
  #storm-pack-form #zip-signals .zip-pill {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  #storm-pack-form .step[data-step="2"] .field-group,
  #storm-pack-form .step[data-step="3"] .field-group,
  #storm-pack-form .step[data-step="2"] > p.muted {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  #storm-pack-form .step[data-step="3"] .tier-short-description {
    text-align: center;
  }
}
.flag-row {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(2, 6, 23, 0.65);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-main);
  font-size: 14px;
}
.checkbox-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
}

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 8px; }
.offer-item { border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 10px; background: rgba(2, 6, 23, 0.72); padding: 10px; }
.offer-item .label { color: var(--text-muted); font-size: 12px; margin-bottom: 4px; }
.offer-item .value { color: var(--text-main); font-size: 14px; font-weight: 600; word-break: break-word; }
.offer-total { margin-top: 12px; padding-top: 8px; border-top: 1px dashed rgba(148, 163, 184, 0.25); }
.offer-total .total-amount { font-size: 24px; font-weight: 800; color: #cffafe; line-height: 1.2; }
.live-offer-box {
  border: 1px solid rgba(22, 194, 255, 0.28);
  background: rgba(2, 18, 32, 0.7);
  border-radius: 12px;
  margin: 10px 0 12px;
}
.live-offer-box summary {
  color: #f8fafc;
}
.live-offer-box .offer-grid,
.live-offer-box .offer-total {
  margin-top: 12px;
}
.roi-results { margin-top: 10px; }

.sample-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
.sample-card { border: 1px solid rgba(148, 163, 184, 0.24); border-radius: 12px; background: rgba(2, 6, 23, 0.7); padding: 12px; text-decoration: none; color: var(--text-main); }
.sample-thumb { height: 120px; border: 1px solid rgba(148, 163, 184, 0.24); border-radius: 10px; background: linear-gradient(180deg, rgba(148, 163, 184, 0.16), rgba(2, 6, 23, 0.8)), repeating-linear-gradient(0deg, rgba(226, 232, 240, 0.12), rgba(226, 232, 240, 0.12) 2px, transparent 2px, transparent 10px); display: flex; align-items: center; justify-content: center; color: #e2e8f0; font-weight: 600; font-size: 14px; margin-bottom: 8px; text-align: center; padding: 8px; }

.preview-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 10px; }
.preview-zip-input { flex: 1 1 260px; min-width: 220px; }
.preview-table-wrap { margin-top: 8px; border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 10px; overflow-x: auto; background: rgba(2, 6, 23, 0.65); }
.preview-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 13px; }
.preview-table th, .preview-table td { padding: 10px 12px; border-bottom: 1px solid rgba(148, 163, 184, 0.16); text-align: left; white-space: nowrap; }
.preview-table th { color: #bfdbfe; font-weight: 700; }
.preview-table tr:last-child td { border-bottom: 0; }

.credibility-block {
  border-color: rgba(34, 211, 238, 0.38);
  background: linear-gradient(180deg, rgba(4, 20, 34, 0.84), rgba(6, 12, 26, 0.9));
  text-align: center;
  direction: ltr;
}
.credibility-block > h2,
.credibility-block > h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.credibility-intro,
.credibility-preview-note {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.credibility-storm-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin: 10px auto 0;
  max-width: 980px;
  text-align: left;
}
.credibility-storm-label,
.credibility-storm-location {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(2, 6, 23, 0.62);
  color: #dbeafe;
  font-size: 14px;
  font-weight: 700;
}
.credibility-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 10px auto 0;
  max-width: 980px;
}
.credibility-cluster-line {
  margin: 10px auto 0;
  max-width: 920px;
  padding: 10px 12px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 10px;
  background: rgba(8, 47, 73, 0.26);
  color: #bae6fd;
  font-size: 14px;
}
.credibility-field-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 2px;
}
.credibility-field-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.82);
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 600;
}
.credibility-pipeline-list {
  margin: 8px auto 0;
  max-width: 920px;
  text-align: left;
}
.credibility-pipeline-list li {
  max-width: 100%;
}
.credibility-block .preview-table-wrap {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.credibility-preview-table th:nth-child(2),
.credibility-preview-table th:nth-child(3),
.credibility-preview-table td:nth-child(2),
.credibility-preview-table td:nth-child(3) {
  text-align: center;
  width: 96px;
}
.credibility-guarantee {
  margin: 10px auto 0;
  max-width: 920px;
  padding: 10px 12px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 10px;
  background: rgba(20, 83, 45, 0.22);
  color: #dcfce7;
  font-size: 14px;
  text-align: left;
}
.credibility-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 10px auto 0;
  max-width: 980px;
}
.credibility-origin,
.credibility-stats-source {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.storm-command-section {
  border-color: rgba(96, 165, 250, 0.34);
  text-align: center;
  direction: ltr;
}
.storm-command-intro {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.storm-command-demo-shell {
  margin: 8px auto 0;
  max-width: 920px;
}
.storm-command-demo-label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}
.storm-command-demo-map {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
  min-height: 260px;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background:
    radial-gradient(circle at 18% 28%, rgba(59, 130, 246, 0.26), transparent 36%),
    radial-gradient(circle at 68% 60%, rgba(56, 189, 248, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.95));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
  overflow: hidden;
}
.storm-command-demo-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.3;
  pointer-events: none;
}
.storm-command-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #38bdf8;
  border: 2px solid rgba(2, 132, 199, 0.9);
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.18), 0 2px 8px rgba(2, 6, 23, 0.65);
}
.storm-command-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.22);
}
.storm-command-line {
  margin-top: 10px;
  color: #e2e8f0;
  max-width: 920px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.storm-command-disclaimer {
  margin-top: 8px;
  font-size: 13px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.storm-command-section .zip-cluster-preview-wrap {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.geo-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 12px;
}
.geo-sub-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.7);
  padding: 10px 12px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}
.geo-sub-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
}
.geo-sub-addon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(14, 116, 144, 0.34), rgba(3, 25, 46, 0.74));
  padding: 12px 14px;
  color: #e0f2fe;
  font-size: 15px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.16);
}
.geo-sub-addon input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.geo-sub-hero-pill {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(14, 116, 144, 0.3), rgba(3, 25, 46, 0.72));
  box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.14);
}
.geo-sub-hero-pill .geo-sub-addon {
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.geo-sub-benefit-lines {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.45;
}
.geo-sub-benefit-lines > div {
  margin: 0;
}
.geo-sub-price-summary {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.72));
  box-shadow: inset 0 0 0 1px rgba(22, 194, 255, 0.16);
}
.geo-sub-price-summary > div {
  color: #e2e8f0;
  font-weight: 700;
  line-height: 1.45;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.24);
}
.geo-sub-price-summary > div:last-child {
  border-bottom: 0;
  color: #ffffff;
  font-size: 15px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 15px;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 10px 12px;
  text-align: left;
}
.comparison-table th {
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-main);
}

.footer {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.footer a { color: var(--accent); text-decoration: none; font-weight: 600; }
.footer a:hover { text-decoration: underline; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: rgba(2, 6, 23, 0.45);
  color: #e2e8f0;
  text-decoration: none !important;
}
.footer-social a:hover {
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.75);
  background: rgba(2, 132, 199, 0.2);
}
.footer-social svg {
  width: 13px;
  height: 13px;
  display: block;
}

.page { width: 100%; overflow-x: hidden; }
.shell { overflow-x: hidden; }
.comparison-table { width: 100%; }
.comparison-table td { word-break: break-word; }
.comparison-image { width: 100%; display: block; overflow: hidden; }
.comparison-img { width: 100%; max-width: 100%; height: auto; display: block; border-radius: 14px; }

img { max-width: 100%; height: auto; }
.card, .section-card { max-width: 100%; overflow-x: hidden; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 980px) {
  .top-nav { grid-template-columns: 1fr; }
  .nav-right { justify-content: center; flex-wrap: wrap; align-items: center; }
  .brand { justify-self: center; padding: 14px 22px; min-height: 64px; }
  .wordmark { font-size: 26px; }
  .nav-products, .nav-meta { justify-content: center; }
  .nav-meta { flex-direction: column; }
  .nav-meta span { display: block; margin-bottom: 4px; }
  .nav-stack { align-items: center; }
  .nav-zip-form { margin-top: 6px; }
  .role-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .field-row, .row { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .geo-sub-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: 1fr; }
  .credibility-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credibility-storm-head { grid-template-columns: 1fr; }
  .credibility-stats-grid { grid-template-columns: 1fr; }
  .storm-command-demo-map { min-height: 220px; }
  .credibility-cluster-line,
  .credibility-guarantee,
  .credibility-pipeline-list,
  .storm-command-line,
  .storm-command-disclaimer {
    text-align: left;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 8px 32px;
  }

  .page-wrap,
  .container,
  .content-wrap,
  .page,
  .content {
    padding-left: 0;
    padding-right: 0;
  }

  .shell {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 1.25rem;
    padding-bottom: 1.35rem;
    border-radius: 18px;
    border-width: 1px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  }

  .shell::before {
    opacity: 0.72;
  }

  .section-card,
  .checkout-card,
  .card,
  .tier-card,
  .tier-card-select,
  .pack-card {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border-width: 1px;
    border-radius: 14px;
    outline: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .section-card::before,
  .checkout-card::before,
  .card::before,
  .tier-card::before,
  .tier-card-select::before,
  .pack-card::before {
    content: none !important;
    display: none !important;
  }

  .tier-card,
  .tier-card-select,
  .pack-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .tier-card h3,
  .tier-card-select h3,
  .pack-card h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.15;
  }

  .tier-card h3 .card-title,
  .tier-card-select h3 .card-title,
  .pack-card h3 .card-title,
  .tier-card h3 .card-price,
  .tier-card-select h3 .card-price,
  .pack-card h3 .card-price {
    display: block;
    margin-left: 0;
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.15;
  }

  .tier-card p,
  .tier-card-select p,
  .pack-card p,
  .tier-card li,
  .tier-card-select li,
  .pack-card li {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.35;
  }

  .tier-card ul,
  .tier-card-select ul,
  .pack-card ul {
    padding-left: 18px;
    margin-top: 10px;
  }

  .tier-card li,
  .tier-card-select li,
  .pack-card li {
    margin-bottom: 6px;
  }

  .tier-card .cta-hint,
  .tier-card-select .cta-hint,
  .pack-card .cta-hint {
    margin-top: auto !important;
    padding-top: 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    font-size: 13px;
    line-height: 1.2;
    opacity: 0.85;
  }
}

@media (max-width: 960px) {
  .tier-card-grid {
    grid-template-columns: 1fr;
  }
  .tier-card-grid.four-visible {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tier-card-grid.five-visible {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tier-card-grid.five-visible > :last-child {
    grid-column: 1 / -1;
  }

  .tier-buttons,
  .chip-toggle-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tier-buttons > :last-child:nth-child(odd),
  .chip-toggle-row > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .age-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storm-catalog > details > div {
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .storm-catalog-list {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px !important;
  }

  .zip-pill {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .storm-alerts-list {
    grid-template-columns: 1fr;
  }

  .storm-alert-card {
    width: 100%;
    max-width: 100%;
  }

  .comparison-table thead { display: none; }
  .comparison-table tr { display: block; margin-bottom: 10px; border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 10px; padding: 8px; }
  .comparison-table td { display: flex; justify-content: space-between; border: none; padding: 6px 8px; }
  .comparison-table td::before { content: attr(data-label); color: var(--text-muted); font-weight: 600; margin-right: 10px; }
  .credibility-metrics { grid-template-columns: 1fr; }
  .credibility-preview-table { min-width: 420px; }
  .storm-command-demo-map { min-height: 190px; }
}
