/* =========================================================
   OddsRadar — editorial sports-betting aesthetic
   Banner-matched navy + gold, Fraunces display serif
   ========================================================= */

:root {
  --navy-950: #060F1E;
  --navy-900: #0A1628;
  --navy-850: #0C1D35;
  --navy-800: #0F2A44;
  --navy-700: #163858;
  --navy-600: #1F3A5C;
  --navy-500: #2A4D75;

  --gold-600: #E5A71F;
  --gold-500: #F5B82E;
  --gold-400: #FFCE5A;
  --gold-300: #FFE09A;
  --gold-tint: rgba(245, 184, 46, 0.12);

  --cream-50: #FAF7F0;
  --cream-100: #F2ECDC;
  --cream-200: #E8E0C8;

  --ink: #0A1628;
  --ink-2: #3C4A5C;
  --ink-3: #6B7889;
  --ink-4: #A0ABBB;

  --line: rgba(10, 22, 40, 0.08);
  --line-dark: rgba(245, 184, 46, 0.15);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Grainy paper texture on cream surfaces */
.hero,
.offers-section,
.cta-section {
  position: relative;
}

.odds-section::before,
.offers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.odds-section .container,
.offers-section .container { position: relative; z-index: 2; }

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--navy-950);
  color: var(--cream-100);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  gap: 36px;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-item b {
  color: var(--gold-500);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 10.5px;
}

.ticker-item em {
  color: var(--gold-300);
  font-style: normal;
  font-weight: 700;
  margin-left: 6px;
  font-size: 13px;
}

.ticker-dot {
  color: var(--gold-500);
  opacity: 0.5;
  font-size: 8px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(245, 184, 46, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.logo-mark { display: flex; flex-shrink: 0; }
.logo-accent { color: var(--gold-500); font-style: italic; }

.main-nav {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--cream-200);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.main-nav a:hover { color: var(--gold-500); }
.main-nav a:hover::after { transform: scaleX(1); }

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

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-200);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.live-indicator.light { color: var(--ink-2); }

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 2px 8px rgba(245, 184, 46, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 8px 20px rgba(245, 184, 46, 0.4);
}

.btn-primary .btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 184, 46, 0.4);
  color: var(--gold-300);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 15px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background:
    radial-gradient(ellipse 1000px 600px at 80% 20%, rgba(245, 184, 46, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%);
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 184, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 46, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-radar {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.9;
}

.radar-sweep { animation: radar-spin 6s linear infinite; }
@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.blip { opacity: 0; animation: blip-pulse 4s ease-in-out infinite; }
.blip-1 { animation-delay: 0s; }
.blip-2 { animation-delay: 0.8s; }
.blip-3 { animation-delay: 1.6s; }
.blip-4 { animation-delay: 2.4s; }
.blip-5 { animation-delay: 3.2s; }

@keyframes blip-pulse {
  0%, 100% { opacity: 0; }
  10% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  animation: fade-in-up 0.8s ease 0.1s backwards;
}

.eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 40px;
}

.hero-title span { display: block; }

.line-a { animation: fade-in-up 0.9s ease 0.2s backwards; }
.line-b {
  font-style: italic;
  font-weight: 400;
  color: var(--cream-100);
  animation: fade-in-up 0.9s ease 0.35s backwards;
  padding-left: 0.08em;
}
.line-c {
  color: var(--gold-500);
  animation: fade-in-up 0.9s ease 0.5s backwards;
}
.line-c em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-300);
  opacity: 0.85;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
  animation: fade-in-up 0.9s ease 0.7s backwards;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-100);
  max-width: 440px;
  font-weight: 400;
}

.hero-sub strong {
  color: var(--gold-300);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 184, 46, 0.15);
  animation: fade-in-up 0.9s ease 0.85s backwards;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(245, 184, 46, 0.15);
  margin: 0 auto;
}

.stat { padding: 4px 16px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--gold-300);
}

.stat-unit {
  font-size: 0.5em;
  color: var(--gold-300);
  font-weight: 400;
  margin-left: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--cream-200);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-3);
  font-weight: 600;
}

.kicker.dark { color: var(--gold-300); }

.kicker-num {
  background: var(--ink);
  color: var(--cream-50);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.kicker.dark .kicker-num {
  background: var(--gold-500);
  color: var(--navy-900);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--ink);
}

.section-title.light { color: #fff; }

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-600);
}

.section-title.light em { color: var(--gold-500); }

.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   ODDS SECTION
   ========================================================= */
.odds-section {
  padding: 100px 0;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.tab-icon { font-size: 15px; line-height: 1; }

.tab:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.tab.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.odds-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10, 22, 40, 0.04),
    0 10px 40px rgba(10, 22, 40, 0.08);
}

.odds-header-bar {
  background: linear-gradient(180deg, #FAFBFC 0%, #F2F4F7 100%);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.odds-header-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.odds-header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.odds-format {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.odds-table-scroll { overflow-x: auto; }

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 780px;
}

.odds-table thead {
  background: var(--navy-900);
  color: #fff;
}

.odds-table th {
  padding: 16px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--cream-200);
}

.odds-table th.col-event { text-align: left; padding-left: 24px; }
.odds-table th.col-best { color: var(--gold-500); }

.odds-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.odds-table tbody tr:last-child { border-bottom: none; }
.odds-table tbody tr:hover { background: var(--cream-50); }

.odds-table td {
  padding: 18px 12px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
}

.odds-table td.event-cell {
  text-align: left;
  padding-left: 24px;
  font-family: var(--font-body);
  font-weight: 500;
}

.event-cell .league {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.event-cell .teams {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.event-cell .time {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.selection-cell {
  text-align: left !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--ink-2) !important;
  font-weight: 500 !important;
}

.odds-cell { font-variant-numeric: tabular-nums; transition: all 0.2s; }

.best-odds {
  background: var(--gold-tint) !important;
  color: var(--navy-900) !important;
  font-weight: 700 !important;
  position: relative;
}

.best-odds::after {
  content: '';
  position: absolute;
  left: 8px; right: 8px;
  bottom: 6px;
  height: 2px;
  background: var(--gold-500);
  opacity: 0.6;
}

.best-cell {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%) !important;
  color: var(--navy-900) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  position: relative;
}

.disclaimer-small {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.3px;
}

/* =========================================================
   OFFERS
   ========================================================= */
.offers-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10, 22, 40, 0.18);
  border-color: var(--navy-800);
}

.offer-card.featured {
  border: 1.5px solid var(--gold-500);
  background:
    linear-gradient(180deg, rgba(255, 251, 235, 1) 0%, #FFFFFF 30%);
  box-shadow: 0 4px 24px rgba(245, 184, 46, 0.15);
}

.offer-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-500), transparent 50%, var(--gold-500));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}

.badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-900);
  color: var(--gold-500);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  border: 1px solid var(--gold-500);
}

.offer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.offer-book {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.offer-stars {
  color: var(--gold-500);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.star-half { opacity: 0.3; }

.offer-deal {
  margin-bottom: 20px;
  flex-grow: 1;
}

.offer-stake {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.offer-get {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.5px;
}

.offer-card.featured .offer-get { color: var(--navy-900); }

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  text-align: left;
  padding: 12px 14px;
  background: var(--cream-50);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.offer-features span {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.offer-features span::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-600);
  font-weight: 700;
}

.offer-btn { width: 100%; margin-bottom: 16px; }

.offer-tc {
  font-size: 10.5px;
  color: var(--ink-3);
  line-height: 1.5;
  letter-spacing: 0.1px;
}

/* =========================================================
   WHY — dark section with big serif
   ========================================================= */
.why-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 184, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 46, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  pointer-events: none;
}

.why-section .container { position: relative; z-index: 2; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 184, 46, 0.15);
  border: 1px solid rgba(245, 184, 46, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}

.why-item {
  background: var(--navy-900);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}

.why-item:hover { background: var(--navy-850); }

.why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-500);
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-weight: 600;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.why-item p {
  font-size: 15px;
  color: var(--cream-200);
  line-height: 1.6;
}

.quote-strip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(245, 184, 46, 0.06);
  border-left: 2px solid var(--gold-500);
  border-radius: var(--radius);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.5;
  color: var(--gold-500);
  margin-top: 20px;
  font-style: italic;
  flex-shrink: 0;
}

.quote-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--cream-100);
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  padding: 100px 0;
  background: var(--gold-500);
  color: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta-inner h2 em {
  font-style: italic;
  font-weight: 400;
}

.cta-inner p {
  font-size: 18px;
  margin-bottom: 36px;
  color: var(--navy-800);
}

.cta-inner .btn-primary {
  background: var(--navy-900);
  color: var(--gold-500);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.25);
}

.cta-inner .btn-primary:hover {
  background: var(--navy-950);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.35);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-950);
  color: var(--cream-200);
  padding: 72px 0 28px;
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-700);
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--cream-200);
  max-width: 280px;
  line-height: 1.4;
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links h4 {
  color: var(--gold-500);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--cream-200);
  padding: 5px 0;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--gold-500); }

.responsible {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.rg-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.rg-badge {
  background: var(--gold-500);
  color: var(--navy-900);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.rg-text p {
  font-size: 13px;
  color: var(--cream-200);
  line-height: 1.5;
}

.rg-text strong { color: #fff; font-weight: 600; }

.rg-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rg-logos span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--cream-200);
  padding: 7px 12px;
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--ink-4);
  padding-top: 20px;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero-radar { opacity: 0.4; right: -200px; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats .stat-divider { display: none; }
  .hero-stats .stat { padding: 16px 0; border-top: 1px solid rgba(245, 184, 46, 0.1); }

  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 36px; }

  .odds-section, .offers-section, .why-section, .cta-section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .offers-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  .responsible { flex-direction: column; align-items: flex-start; }

  .quote-strip { padding: 20px; }
  .quote-strip p { font-size: 16px; }
}
