/* DaytoBet FB promo — teal/slate look, FB Ads–safe framing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #0c1218;
  --bg-sidebar: #080d12;
  --bg-card: #141c24;
  --bg-card-hover: #1a2430;
  --bg-elevated: #1e2a36;
  --accent: #2dd4bf;
  --accent-deep: #0d9488;
  --accent-blue: #38bdf8;
  --accent-green: #34d399;
  --accent-red: #f87171;
  --text-primary: #f0f4f8;
  --text-secondary: #8fa3b5;
  --text-muted: #5a6f82;
  --border: rgba(148, 180, 200, 0.1);
  --border-strong: rgba(148, 180, 200, 0.18);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 40px rgba(0, 0, 0, 0.45);
  --gradient-brand: linear-gradient(135deg, #0d9488 0%, #14b8a6 45%, #38bdf8 100%);
  --font-display: "Outfit", system-ui, sans-serif;
  --font: "Source Sans 3", system-ui, sans-serif;
  --header-h: 64px;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--header-h);
  padding: 0 16px;
  background: rgba(8, 13, 18, 0.9);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.35px;
}

.brand-title .accent,
.hero-brand-name .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.header-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* —— Language toggle —— */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.lang-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 6px 11px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.is-active {
  color: #042f2e;
  background: var(--gradient-brand);
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.35);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #042f2e;
  padding: 10px 20px;
  box-shadow: 0 2px 18px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 18px;
  border: 1px solid rgba(143, 163, 181, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 12px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 40px) 20px 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 50% at 15% 0%, rgba(13, 148, 136, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 95% 65%, rgba(56, 189, 248, 0.1), transparent 50%),
    linear-gradient(180deg, #0c1218 0%, #0a1518 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(148, 180, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 180, 200, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-brand-lockup img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.bonus-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.35);
  animation: chipIn 0.7s ease both;
}

@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bonus-chip-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.bonus-chip-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 14px;
  max-width: 24ch;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 40ch;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.5;
}

/* Market mock visual */
.hero-visual {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.market-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.market-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.market-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.12);
  padding: 4px 10px;
  border-radius: 8px;
}

.market-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.market-mock-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.market-mock-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.odds-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.odds-row {
  display: grid;
  grid-template-columns: 40px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.odds-label {
  font-size: 12px;
  font-weight: 700;
}

.odds-label.yes {
  color: #6ee7b7;
}

.odds-label.no {
  color: #fca5a5;
}

.odds-track {
  height: 8px;
  background: var(--bg-elevated);
  border-radius: 999px;
  overflow: hidden;
}

.odds-fill {
  height: 100%;
  width: var(--w);
  border-radius: 999px;
  animation: growBar 1.2s ease-out both;
}

.odds-fill.yes {
  background: linear-gradient(90deg, #059669, #34d399);
}

.odds-fill.no {
  background: linear-gradient(90deg, #dc2626, #f87171);
}

@keyframes growBar {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}

.odds-pct {
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  color: var(--text-secondary);
}

.market-mock-btns {
  display: flex;
  gap: 10px;
}

.btn-yes,
.btn-no {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 0.01em;
}

.btn-yes {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.16), rgba(52, 211, 153, 0.05));
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.btn-no {
  background: linear-gradient(145deg, rgba(248, 113, 113, 0.15), rgba(248, 113, 113, 0.05));
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.28);
}

/* —— Stats —— */
.stats {
  padding: 0 20px 48px;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* —— Sections —— */
.section {
  padding: 72px 20px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 20px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.step:hover {
  border-color: rgba(45, 212, 191, 0.28);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  background: var(--gradient-brand);
  color: #042f2e;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(13, 148, 136, 0.18), transparent 55%),
    var(--bg-dark);
}

.final-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.final-cta-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #042f2e;
  background: var(--gradient-brand);
  border-radius: 999px;
  letter-spacing: -0.01em;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.final-cta p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.final-cta .btn {
  margin-bottom: 18px;
}

.final-cta-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
  max-width: 44ch;
  margin-inline: auto;
  line-height: 1.5;
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Desktop —— */
@media (min-width: 768px) {
  .site-header {
    padding: 0 32px;
  }

  .header-nav {
    display: flex;
  }

  .hero {
    padding: calc(var(--header-h) + 48px) 32px 72px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .hero-visual {
    margin-inline: 0;
    justify-self: end;
  }

  .stats {
    padding: 8px 32px 56px;
  }

  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .section {
    padding: 88px 32px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-headline {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .header-cta .btn-ghost {
    display: none;
  }

  .lang-btn {
    padding: 6px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .bonus-chip {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .market-mock,
  .pulse,
  .odds-fill {
    animation: none;
  }
}
