/* topoddslist.com — Editorial Sports Comparator */

:root {
  --bg: #f7f5ef;
  --bg-alt: #efece2;
  --surface: #ffffff;
  --surface-2: #fbfaf5;
  --ink: #0f1a17;
  --ink-2: #2a3a35;
  --ink-3: #5b6a64;
  --line: #e2dfd2;
  --line-2: #d6d2c1;
  --accent: #0c5b3a;
  --accent-2: #0a4a30;
  --accent-soft: #e3efe7;
  --gold: #b88728;
  --gold-soft: #f3e9cf;
  --danger: #b8302a;
  --pitch: #15623f;
  --shadow-sm: 0 1px 2px rgba(15, 26, 23, 0.04), 0 2px 6px rgba(15, 26, 23, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 26, 23, 0.06), 0 12px 32px rgba(15, 26, 23, 0.06);
  --shadow-lg: 0 10px 30px rgba(15, 26, 23, 0.10), 0 20px 60px rgba(15, 26, 23, 0.08);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --font-serif: ui-serif, Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover { color: var(--accent-2); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; color: var(--ink-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Age Strip */
.age-strip {
  background: var(--ink);
  color: #e9e6da;
  font-size: .8rem;
  letter-spacing: .02em;
}

.age-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  justify-content: center;
  text-align: center;
}

.age-badge-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  width: 28px;
  height: 20px;
  border-radius: 4px;
  font-size: .72rem;
  letter-spacing: .04em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.brand:hover { color: var(--ink); }

.brand-mark { width: 32px; height: 32px; color: var(--accent); }
.brand-text { white-space: nowrap; }
.brand-dot { color: var(--gold); }

.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: .94rem;
  font-weight: 500;
}

.nav-desktop a {
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}

.nav-desktop a:hover { color: var(--ink); }

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-desktop a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.nav-mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 500;
}

.nav-mobile a:last-child { border-bottom: 0; }

.nav-mobile.open { display: flex; }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 80% 0%, rgba(12, 91, 58, 0.08), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(184, 135, 40, 0.08), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(15,26,23,0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
  opacity: .6;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 { margin-bottom: 18px; }

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn-ghost:hover { background: var(--surface); color: var(--ink); }

.btn-operator {
  background: var(--accent);
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
}

.btn-operator:hover { background: var(--accent-2); color: #fff; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .92rem;
  color: var(--ink-2);
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg { color: var(--accent); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
  min-height: 380px;
  color: var(--ink);
}

.hero-pitch {
  position: absolute;
  inset: 14% 6% 14% 14%;
  background: var(--pitch);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 24px, transparent 24px, transparent 48px);
  z-index: 0;
}

.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  z-index: 2;
}

.hero-card-main { top: 6%; left: 0; width: 78%; }
.hero-card-stat { bottom: 4%; right: 0; width: 60%; }

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hero-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--danger);
}

.hero-card-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(184, 48, 42, 0.15);
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero-card-clock {
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-2);
}

.hero-card-teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.hero-team {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
}

.hero-team strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
}

.hero-team-crest {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.hero-team-crest-1 { background: var(--accent-soft); color: var(--accent); }
.hero-team-crest-2 { background: var(--gold-soft); color: var(--gold); }

.hero-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.odd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  transition: border-color .2s ease, background .2s ease;
}

.odd-cell:hover { border-color: var(--accent); background: #fff; }

.odd-cell span {
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-3);
}

.odd-cell strong {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--ink);
  margin-top: 4px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--ink-2);
  margin-bottom: 10px;
}

.hero-stat-row strong {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--ink);
}

.hero-stat-row-sub {
  margin-top: 14px;
  margin-bottom: 0;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.hero-stat-bar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
}

.hero-stat-bar-fill {
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* Section base */
.section { padding: 80px 0; }
.section-ranking { background: var(--bg); }
.section-markets { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section-methodology { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.section-about { background: var(--bg); }
.section-faq { background: var(--bg-alt); border-top: 1px solid var(--line); }

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head h2 { margin-bottom: 12px; }

.section-head p {
  font-size: 1.04rem;
  color: var(--ink-2);
  margin: 0;
}

/* Operators */
.operators {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.operator {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 220px;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.operator:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}

.operator.is-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold);
  pointer-events: none;
}

.op-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.operator.is-top .op-rank {
  background: linear-gradient(135deg, var(--gold), #d8a83a);
  color: var(--ink);
}

.op-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.op-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.op-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.op-logo svg {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.op-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: 999px;
}

.op-tag.tag-editor { color: var(--gold); background: var(--gold-soft); }

.op-desc {
  margin: 0;
  color: var(--ink-2);
  font-size: .96rem;
  max-width: 60ch;
}

.op-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .82rem;
  color: var(--ink-3);
}

.op-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.op-highlights svg {
  color: var(--accent);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.op-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}

.op-rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-serif);
}

.op-rating-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.op-rating-max {
  color: var(--ink-3);
  font-size: 1rem;
}

.op-rating-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.op-anj {
  font-size: .72rem;
  color: var(--ink-3);
  font-family: var(--font-mono);
}

.op-anj strong {
  display: block;
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
  font-weight: 700;
}

.op-cta-wrap { width: 100%; }

/* Markets */
.markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.market-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.market-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}

.market-card h3 { margin-bottom: 8px; }

.market-card p {
  margin: 0;
  font-size: .95rem;
  color: var(--ink-2);
}

/* Methodology */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.method-item {
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s ease;
}

.method-item:hover { background: var(--surface-2); }

.method-num {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
}

.method-item h3 { margin: 4px 0 0; }

.method-item p {
  margin: 0;
  font-size: .94rem;
  color: var(--ink-2);
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-copy h2 { margin-bottom: 18px; }
.about-copy p { font-size: 1.02rem; }

.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.about-card h3 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.about-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .94rem;
}

.about-list li:last-child { border-bottom: 0; }

.about-list strong {
  color: var(--ink-3);
  font-weight: 600;
}

.about-list span {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform .25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: .96rem;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.faq-body p { margin: 0; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d8d4c4;
  padding: 64px 0 28px;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.site-footer a { color: #c8c4b4; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand .brand,
.brand-footer {
  color: #fff;
  margin-bottom: 14px;
}

.brand-footer .brand-mark { color: #fff; }
.brand-footer .brand-dot { color: var(--gold); }

.age-badge-footer { margin-bottom: 18px; }

.footer-disclaimer {
  font-size: .82rem;
  line-height: 1.6;
  color: #a9a597;
  margin: 0;
  max-width: 44ch;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .92rem;
}

.footer-phones {
  list-style: none;
  padding: 14px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-phones li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .82rem;
}

.footer-phones span {
  color: #8c8979;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}

.footer-phones a {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: .92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: .82rem;
  color: #8c8979;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 23, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fade-in .2s ease;
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 86vh;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 38px 40px 32px;
  overflow-y: auto;
  animation: pop-in .25s cubic-bezier(.16,1,.3,1);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pop-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  transition: background .2s ease, color .2s ease;
}

.modal-close:hover { background: var(--bg-alt); color: var(--ink); }

.modal-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  padding-right: 32px;
}

.modal-body p {
  font-size: .96rem;
  color: var(--ink-2);
  margin-bottom: 1em;
}

.modal-body p strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.04rem;
  margin-top: 6px;
}

body.modal-open { overflow: hidden; }

/* Responsive */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero { padding: 56px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 320px; max-width: 460px; margin: 0 auto; }

  .section { padding: 64px 0; }

  .operator {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px;
  }
  .op-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px dashed var(--line);
    padding-top: 16px;
    margin-top: 4px;
  }
  .op-rating { order: 1; }
  .op-anj { order: 2; }
  .op-cta-wrap { order: 3; flex: 1 1 100%; }

  .markets { grid-template-columns: repeat(2, 1fr); }
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .age-strip-inner { padding: 8px 18px; font-size: .72rem; }

  .header-inner { padding: 12px 18px; gap: 12px; }
  .brand-text { font-size: 1rem; }
  .age-badge { display: none; }

  .hero { padding: 44px 0; }
  .hero-lead { font-size: 1rem; }
  .btn { padding: 12px 18px; font-size: .9rem; }
  .hero-visual { min-height: 280px; }
  .hero-card-main { width: 84%; padding: 14px; }
  .hero-card-stat { width: 66%; padding: 14px; }
  .hero-team strong { font-size: 1.2rem; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }

  .markets { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr; }
  .market-card, .method-item { padding: 22px; }

  .op-rank { width: 48px; height: 48px; font-size: 1.3rem; }
  .operator { grid-template-columns: 48px 1fr; padding: 18px; gap: 14px; }
  .op-rating-num { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .site-footer { padding: 44px 0 24px; }
  .footer-bottom { flex-direction: column; }

  .modal-panel { padding: 28px 22px 24px; max-height: 92vh; }
  .modal-panel h2 { font-size: 1.3rem; }
}

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