/* =========================================================
   Matchexch9 — "Match Day Dark" Design System
   Charcoal + muted teal · sports-bar atmosphere
   Fonts: Saira (headings 700) · Yantramanav (body 400-500)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #3c6e71;      /* muted teal          */
  --primary-dark: #2c5254; /* deep teal           */
  --accent: #5fa8ab;       /* brighter teal       */
  --accent-soft: #7fc4c7;  /* light teal          */
  --bg-body: #353535;      /* charcoal            */
  --bg-card: #404040;      /* card charcoal       */
  --bg-card-2: #464646;    /* raised card         */
  --bg-elevated: #4a4a4a;  /* inputs / rows       */
  --line: #565656;         /* borders / dividers  */
  --text: #ffffff;         /* primary text        */
  --text-muted: #b9bec0;   /* secondary text      */
  --text-dim: #8b9092;     /* tertiary text       */
  --gold: #d4af37;         /* logo gold           */
  --gold-2: #f2d477;       /* light gold          */
  --whatsapp: #25d366;     /* whatsapp green      */
  --danger: #e05c5c;
  --success: #58c07a;
  --warning: #e0b64d;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .45);
  --glow-teal: 0 0 0 1px rgba(95, 168, 171, .35), 0 8px 30px rgba(60, 110, 113, .35);

  --maxw: 1180px;
  --nav-h: 74px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-head: "Saira", system-ui, sans-serif;
  --font-body: "Yantramanav", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(60, 110, 113, .22), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(95, 168, 171, .10), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-soft); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .3px;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
strong { color: var(--text); font-weight: 500; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--accent); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-tint { background: linear-gradient(180deg, rgba(60,110,113,.10), rgba(60,110,113,0)); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mw-720 { max-width: 720px; }
.mw-820 { max-width: 820px; }
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .82rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--glow-teal); }
.btn-primary:hover { background: var(--accent); color: #10201f; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a2410;
  box-shadow: 0 8px 24px rgba(212, 175, 55, .30);
}
.btn-gold:hover { color: #2a2410; box-shadow: 0 12px 30px rgba(212, 175, 55, .45); }
.btn-outline { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-soft); }
.btn-whatsapp { background: var(--whatsapp); color: #04310f; box-shadow: 0 8px 24px rgba(37, 211, 102, .28); }
.btn-whatsapp:hover { color: #04310f; box-shadow: 0 12px 30px rgba(37, 211, 102, .42); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(43, 43, 43, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; display: block; }

/* single-row nav: 4 links + one WhatsApp CTA, all inline & centered */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.nav-links a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 14px;
  line-height: 1;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav-links a:not(.btn).active { color: #fff; }
.nav-links a:not(.btn).active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-links .btn-whatsapp {
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: .4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links .btn-whatsapp svg { width: 16px; height: 16px; fill: currentColor; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  flex-shrink: 0; background: none; border: none; cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* tighter desktop tier so the single row fits down to the 768px breakpoint */
@media (max-width: 1010px) and (min-width: 769px) {
  .nav { gap: 12px; }
  .nav-links { gap: 11px; }
  .nav-links a:not(.btn) { font-size: 13px; letter-spacing: 0; }
  .nav-links .btn-whatsapp { padding: 8px 11px; gap: 6px; }
  .nav-links .btn-whatsapp svg { width: 15px; height: 15px; }
  .brand img { height: 30px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(60px, 9vw, 110px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 380px at 80% 20%, rgba(60,110,113,.35), transparent 65%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.014) 0 2px, transparent 2px 26px);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .text-gold { display: inline-block; }
.hero-lead { font-size: 1.18rem; color: var(--text-muted); margin-bottom: 26px; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; font-size: .82rem; color: var(--text-muted);
  font-family: var(--font-head); font-weight: 500; letter-spacing: .3px;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* hero visual scoreboard card */
.scoreboard {
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.scoreboard::after {
  content: "LIVE"; position: absolute; top: 18px; right: 18px;
  font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: 2px;
  color: #fff; background: var(--danger); padding: 3px 10px; border-radius: 4px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.sb-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); font-size: .8rem; margin-bottom: 18px; }
.sb-team { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.sb-team:last-of-type { border-bottom: none; }
.sb-team .name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; display: flex; align-items: center; gap: 10px; }
.sb-team .flag { width: 30px; height: 22px; border-radius: 4px; display: inline-grid; place-items: center; font-size: .7rem; font-weight: 700; background: var(--primary); color: #fff; }
.sb-team .score { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--gold-2); }
.sb-team .overs { font-size: .82rem; color: var(--text-dim); }
.sb-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--accent-soft); font-family: var(--font-head); letter-spacing: .5px; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(95,168,171,.5); box-shadow: var(--shadow); }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: .98rem; }

.feature-card { text-align: left; }
.step-num {
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem;
  color: rgba(95,168,171,.25); line-height: 1; margin-bottom: 8px;
}

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 24px 16px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2.3rem; color: var(--gold-2); line-height: 1; }
.stat .label { font-size: .88rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Tools shared ---------- */
.tool {
  background: linear-gradient(165deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tool-head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
  background: rgba(60,110,113,.12);
}
.tool-head .t-icon {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent)); font-size: 1.35rem; flex-shrink: 0;
}
.tool-head h3 { margin: 0; }
.tool-head .t-sub { font-size: .85rem; color: var(--text-dim); }
.tool-body { padding: 26px; }
.tool-badge {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .68rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-2);
  border: 1px solid rgba(212,175,55,.4); border-radius: 4px; padding: 3px 8px; margin-left: auto;
}

/* form controls */
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .85rem; letter-spacing: .5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.control, select.control, input.control {
  width: 100%; padding: 13px 15px; background: var(--bg-elevated);
  border: 1px solid var(--line); border-radius: var(--radius-sm); color: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(95,168,171,.2); }
select.control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235fa8ab' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: end; }
.vs-badge { font-family: var(--font-head); font-weight: 700; color: var(--gold); padding-bottom: 13px; font-size: 1.1rem; }

/* range slider */
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--bg-elevated); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.4); border: 2px solid #2a2410; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 2px solid #2a2410; }
.range-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.range-val { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--gold-2); }

/* scorecard table */
.scorecard { width: 100%; border-collapse: collapse; margin-top: 6px; font-size: .95rem; }
.scorecard th, .scorecard td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.scorecard th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: .74rem; color: var(--text-dim); }
.scorecard td.num, .scorecard th.num { text-align: right; font-variant-numeric: tabular-nums; }
.scorecard tr:last-child td { border-bottom: none; }
.innings-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 12px; background: rgba(60,110,113,.15); border-radius: var(--radius-sm); margin-top: 10px; }
.innings-total .big { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--gold-2); }
.result-banner { text-align: center; padding: 18px; margin-top: 18px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: .5px; }
.ball-log { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 4px; }
.ball {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  background: var(--bg-elevated); border: 1px solid var(--line);
  animation: pop .25s var(--ease);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ball.four { background: rgba(88,192,122,.2); border-color: var(--success); color: var(--success); }
.ball.six { background: rgba(212,175,55,.22); border-color: var(--gold); color: var(--gold-2); }
.ball.wkt { background: rgba(224,92,92,.2); border-color: var(--danger); color: var(--danger); }
.ball.dot { color: var(--text-dim); }

/* odds tracker */
.odds-wrap { position: relative; }
.odds-chart { width: 100%; height: 300px; display: block; background: rgba(0,0,0,.15); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.odds-legend { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 16px; font-size: .88rem; }
.odds-legend span { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); }
.odds-legend i { width: 16px; height: 3px; border-radius: 2px; display: inline-block; }
.odds-readout { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.odds-readout .box { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.odds-readout .box .v { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
.odds-readout .box .k { font-size: .76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-top: 2px; }

/* bet wizard result */
.wizard-out { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.stake-card { text-align: center; padding: 20px 14px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-elevated); transition: .25s var(--ease); }
.stake-card.rec { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(212,175,55,.4); }
.stake-card .tier { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; margin-bottom: 8px; }
.stake-card.c1 .tier { color: var(--accent-soft); }
.stake-card.c2 .tier { color: var(--gold-2); }
.stake-card.c3 .tier { color: var(--danger); }
.stake-card .amt { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; line-height: 1; }
.stake-card .pct { font-size: .82rem; color: var(--text-dim); margin-top: 6px; }
.wizard-note { margin-top: 18px; padding: 14px 16px; background: rgba(224,182,77,.1); border: 1px solid rgba(224,182,77,.3); border-radius: var(--radius-sm); font-size: .88rem; color: var(--warning); }
.wizard-note strong { color: var(--gold-2); }

/* ---------- Providers ---------- */
.provider-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.provider { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-card); transition: .25s var(--ease); }
.provider:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.provider img { width: 100%; aspect-ratio: 5/3; object-fit: cover; }
.provider .p-body { padding: 16px 18px; }
.provider h4 { margin-bottom: 4px; }
.provider p { font-size: .86rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--bg-card); overflow: hidden; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.faq-q:hover { color: var(--accent-soft); }
.faq-q .ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--accent); display: grid; place-items: center; position: relative; transition: .3s var(--ease); }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-q .ico::before { width: 12px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .ico { background: var(--accent); }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background: #10201f; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; }
.faq-a-inner p { margin-bottom: 0; }

/* ---------- Auth (login / signup) ---------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.auth-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.auth-card h2 { font-size: 1.7rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--text-muted); margin-bottom: 24px; font-size: .96rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-muted); margin: 6px 0 20px; }
.checkbox-row input { margin-top: 4px; accent-color: var(--accent); }
.divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--text-dim); font-size: .82rem; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.info-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); color: var(--text-muted); font-size: .96rem; }
.info-list li:last-child { border-bottom: none; }
.info-list .check { color: var(--success); flex-shrink: 0; font-weight: 700; }

/* ---------- App page ---------- */
.app-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.phone {
  width: 260px; margin-inline: auto; aspect-ratio: 9/19; border-radius: 32px;
  background: linear-gradient(160deg, #2a2a2a, #1c1c1c); border: 8px solid #1a1a1a;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden; padding: 16px 12px;
}
.phone::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; background: #111; border-radius: 999px; }
.phone-screen { height: 100%; border-radius: 20px; background: linear-gradient(180deg, var(--primary-dark), #222); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 20px; }
.phone-screen img { width: 130px; }
.phone-screen .pnum { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--gold-2); }
.download-steps { counter-reset: step; }
.download-steps li { position: relative; padding: 16px 0 16px 56px; border-bottom: 1px dashed var(--line); }
.download-steps li:last-child { border-bottom: none; }
.download-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 14px; width: 38px; height: 38px; border-radius: 10px; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.download-steps li strong { display: block; margin-bottom: 2px; }

/* ---------- Content / legal pages ---------- */
.page-hero { padding: 60px 0 42px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(60,110,113,.14), transparent); }
.breadcrumb { font-size: .84rem; color: var(--text-dim); margin-bottom: 12px; }
.breadcrumb a { color: var(--text-muted); }
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; color: var(--accent-soft); }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 18px; padding-left: 4px; }
.prose ul li { position: relative; padding: 6px 0 6px 26px; color: var(--text-muted); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.prose a { text-decoration: underline; }
.prose .updated { font-size: .86rem; color: var(--text-dim); margin-bottom: 30px; }
.callout { border-left: 3px solid var(--gold); background: rgba(212,175,55,.08); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 22px 0; }
.callout p { margin: 0; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius-lg); padding: 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 24px); }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #2b2b2b; border-top: 1px solid var(--line); padding: 56px 0 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 40px; }
.footer-grid h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: .92rem; margin-bottom: 16px; color: #fff; }
.footer-grid img { height: 32px; margin-bottom: 16px; }
.footer-grid p { font-size: .9rem; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: var(--text-muted); font-size: .92rem; }
.footer-grid ul a:hover { color: var(--accent-soft); }
.age-badge { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--danger); color: var(--danger); font-family: var(--font-head); font-weight: 700; font-size: .82rem; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--text-dim); }
.footer-bottom .foot-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent-soft); }
.disclaimer-strip { background: #242424; text-align: center; padding: 14px 22px; font-size: .8rem; color: var(--text-dim); border-top: 1px solid var(--line); }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .auth-wrap, .app-hero { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #2b2b2b; border-bottom: 1px solid var(--line);
    padding: 14px 18px 22px; transform: translateY(-150%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a:not(.btn) { padding: 14px 10px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav-links a:not(.btn):hover { background: rgba(255,255,255,.05); }
  .nav-links a:not(.btn).active::after { display: none; }
  .nav-links .btn-whatsapp { margin-top: 12px; width: 100%; padding: 14px; font-size: 15px; justify-content: center; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .provider-grid, .stats,
  .wizard-out, .odds-readout { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .field-row .vs-badge { display: none; }
  .cta-band { padding: 34px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .card, .auth-card, .tool-body { padding: 22px; }
  .odds-readout { grid-template-columns: repeat(3,1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
