:root {
  --bg: #081018;
  --bg-soft: #101927;
  --panel: rgba(15, 24, 36, 0.92);
  --panel-strong: #131f30;
  --line: rgba(153, 186, 255, 0.18);
  --line-strong: rgba(246, 193, 93, 0.34);
  --text: #edf3ff;
  --muted: #a8b6cc;
  --accent: #f6c15d;
  --accent-2: #5de2ff;
  --accent-3: #68e0a6;
  --danger: #ff8a8a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 226, 255, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(246, 193, 93, 0.16), transparent 26%),
    linear-gradient(180deg, #09111a 0%, #050b11 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

img,
svg,
iframe {
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 8rem;
  left: -4rem;
  background: rgba(93, 226, 255, 0.22);
}

.site-shell::after {
  right: -4rem;
  bottom: 18rem;
  background: rgba(246, 193, 93, 0.18);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(6, 11, 17, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(246, 193, 93, 0.92), rgba(93, 226, 255, 0.88));
  color: #061018;
  box-shadow: 0 8px 24px rgba(93, 226, 255, 0.22);
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.header-nav a,
.footer-nav a,
.cta-link {
  text-decoration: none;
}

.nav-link {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0 2rem;
}

.hero-panel,
.promo-section,
.content-panel,
.info-panel,
.legal-panel {
  background:
    linear-gradient(180deg, rgba(19, 31, 48, 0.98), rgba(10, 17, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(93, 226, 255, 0.08);
  border: 1px solid rgba(93, 226, 255, 0.24);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-grid,
.split-grid,
.footer-grid,
.contact-grid,
.info-grid,
.review-card-grid,
.deep-dive-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  margin-top: 1.2rem;
}

.hero-copy h1,
.content-panel h1,
.legal-panel h1 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card,
.info-card,
.review-card,
.deep-dive-card,
.contact-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong,
.info-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.3rem;
  color: var(--text);
}

.stat-card span,
.info-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.promo-section,
.info-panel,
.content-panel,
.legal-panel {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  margin: 1.1rem auto 0;
}

.promo-section h2,
.content-panel h2,
.legal-panel h2,
.info-panel h2 {
  margin: 1.7rem 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  line-height: 1.15;
}

.promo-section h2:first-child,
.content-panel h2:first-child,
.legal-panel h2:first-child,
.info-panel h2:first-child {
  margin-top: 0;
}

.promo-section h3,
.content-panel h3,
.legal-panel h3,
.info-panel h3 {
  margin: 1.4rem 0 0.75rem;
  font-size: clamp(1.14rem, 3vw, 1.4rem);
  line-height: 1.22;
}

.content-panel h4 {
  margin: 1.2rem 0 0.7rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.promo-section p,
.content-panel p,
.legal-panel p,
.info-panel p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.content-panel ul,
.content-panel ol,
.promo-section ul,
.promo-section ol,
.legal-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.content-panel li + li,
.promo-section li + li,
.legal-panel li + li {
  margin-top: 0.45rem;
}

.lead-list {
  margin: 0;
  padding-left: 1.1rem;
}

.mini-note {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.review-card-grid,
.deep-dive-grid,
.info-grid,
.contact-grid {
  margin-top: 1rem;
}

.review-card {
  background:
    linear-gradient(180deg, rgba(246, 193, 93, 0.12), rgba(93, 226, 255, 0.04));
  border-color: var(--line-strong);
}

.review-card-top,
.deep-dive-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.rank-pill,
.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(246, 193, 93, 0.14);
  border: 1px solid rgba(246, 193, 93, 0.4);
  color: var(--accent);
}

.score-chip {
  padding: 0.45rem 0.65rem;
  border-radius: 14px;
  background: rgba(93, 226, 255, 0.12);
  border: 1px solid rgba(93, 226, 255, 0.25);
  color: var(--accent-2);
  font-weight: 800;
}

.review-card h3,
.deep-dive-card h3,
.contact-card h3,
.info-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.review-card p,
.deep-dive-card p,
.contact-card p,
.info-card p {
  margin: 0.75rem 0 0;
}

.review-meta,
.offer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
  color: var(--text);
}

.review-meta span,
.offer-line span {
  padding: 0.45rem 0.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button {
  color: #07111a;
  background: linear-gradient(135deg, var(--accent), #ffd88a);
  box-shadow: 0 12px 22px rgba(246, 193, 93, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.iframe-wrap {
  margin-top: 1rem;
  border-radius: calc(var(--radius-sm) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: #07111a;
}

.inline-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.inline-list li {
  list-style: none;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.content-panel h1 {
  margin-top: 0;
}

.content-panel table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  margin: 1rem 0 1.3rem;
}

.content-panel table tbody,
.content-panel table thead {
  width: 100%;
}

.content-panel th,
.content-panel td {
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  min-width: 10rem;
}

.content-panel th {
  background: rgba(246, 193, 93, 0.08);
  color: var(--text);
}

.content-panel strong {
  color: var(--text);
}

.section-divider {
  height: 1px;
  margin: 1.4rem 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-grid {
  padding: 1.3rem 0 4.5rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 8, 13, 0.74);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-nav a {
  color: var(--muted);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.sticky-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  width: min(calc(100% - 1.5rem), 330px);
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(246, 193, 93, 0.42);
  background:
    linear-gradient(180deg, rgba(23, 32, 46, 0.98), rgba(8, 14, 22, 0.98));
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.42);
}

.sticky-popup-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.sticky-popup .rank-pill {
  margin-bottom: 0.65rem;
}

.sticky-popup h3 {
  margin: 0;
  font-size: 1.16rem;
}

.stars {
  margin-top: 0.35rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.close-popup {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.sticky-popup p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.legal-panel .lead {
  font-size: 1.04rem;
}

.legal-panel address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 760px) {
  .hero-panel,
  .promo-section,
  .content-panel,
  .info-panel,
  .legal-panel {
    padding: 1.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
    align-items: stretch;
  }

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

  .review-card-grid,
  .deep-dive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .review-card-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .deep-dive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-popup {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 759px) {
  .header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .sticky-popup {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }
}
