﻿:root {
  --bg: #0d0d0d;
  --panel: rgba(16, 16, 16, .86);
  --panel-2: rgba(24, 24, 24, .72);
  --line: rgba(212, 175, 55, .24);
  --gold: #d4af37;
  --gold-2: #b8860b;
  --text: #f4f0e6;
  --muted: #b5b5b5;
  --soft: #777777;
  --red: #ff5f63;
  --green: #28d483;
  --blue: #5fb7ff;
  --radius: 8px;
  --radius-lg: 16px;
  --glass: rgba(8, 11, 14, .68);
  --glass-strong: rgba(8, 10, 13, .84);
  --line-soft: rgba(255, 255, 255, .075);
  --gold-glow: rgba(212, 175, 55, .18);
  --shadow-deep: 0 28px 90px rgba(0, 0, 0, .42);
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body { margin: 0; color: var(--text); font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif; font-weight: 400; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.app-body {
  background:
    radial-gradient(circle at 70% -8%, rgba(212,175,55,.14), transparent 32rem),
    linear-gradient(135deg, rgba(184,134,11,.09), transparent 22rem),
    linear-gradient(180deg, #0d0d0d, #050505 70%);
  min-height: 100vh;
}
.app-shell { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: 100vh; }
.auth-shell { display: block; }
.sidebar {
  position: sticky; top: 0; height: 100vh; padding: 22px 18px;
  background: linear-gradient(180deg, rgba(13,13,13,.96), rgba(8,8,8,.94));
  border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px;
}
.brand, .top-logo { display: flex; align-items: center; gap: 10px; font-family: Rajdhani, Montserrat, sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand span, .top-logo span { color: var(--gold); }
.nav { display: grid; gap: 8px; }
.nav a {
  padding: 12px 13px; border-radius: var(--radius); color: #d8d8d8; border: 1px solid transparent;
  background: linear-gradient(90deg, rgba(255,255,255,.026), transparent);
  font-size: 14px; font-weight: 400;
}
.nav a:hover { border-color: var(--line); color: #fff; background: rgba(212,175,55,.08); }
.nav-section { margin: 14px 10px 2px; font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 500; }
.sidebar-legal { margin-top: auto; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--muted); font-size: 12px; background: rgba(212,175,55,.055); }
.sidebar-legal strong { color: var(--gold); }
.logout-link { color: var(--muted); font-size: 14px; }
.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--radius);
  color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(184,134,11,.045));
  font-weight: 500;
}
.logout-button:before { content: none; }
.logout-button:hover { background: rgba(212,175,55,.14); color: #fff; }
.app-main { min-width: 0; padding: 18px 22px; }
.auth-main { padding: 0; }
.topbar {
  position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: auto minmax(220px, 1fr) auto; gap: 16px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(13,13,13,.84); backdrop-filter: blur(18px); box-shadow: 0 18px 45px rgba(0,0,0,.24);
}
.top-logo img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
.top-search { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.075); border-radius: var(--radius); padding: 0 12px; }
.top-search input { width: 100%; height: 42px; background: transparent; border: 0; color: var(--text); outline: 0; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 42px; height: 42px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(212,175,55,.07); color: var(--gold); cursor: pointer; }
.hamburger { display: none; }
.bell { position: relative; }
.bell small { position: absolute; top: -5px; right: -5px; background: var(--red); color: #fff; min-width: 18px; border-radius: 20px; font-size: 11px; }
.user-chip { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.user-chip img, .avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.gold-button, .ghost-button, .danger-button {
  border: 0; border-radius: var(--radius); padding: 12px 16px; cursor: pointer; font-weight: 500;
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
}
.gold-button { color: #0d0d0d; background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 10px 28px rgba(212,175,55,.16); }
.gold-button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.ghost-button { border: 1px solid var(--line); color: var(--gold); background: rgba(212,175,55,.06); }
.danger-button { background: rgba(255,95,99,.15); color: #ffb8ba; border: 1px solid rgba(255,95,99,.28); }
.compact { padding: 9px 12px; font-size: 14px; }
.page { padding-top: 20px; }
.page-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin: 8px 0 18px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 500; }
h1, h2, h3 { margin: 0; line-height: 1.08; font-family: Rajdhani, Montserrat, sans-serif; font-weight: 500; letter-spacing: .015em; }
h1 { font-size: clamp(30px, 4vw, 50px); }
h2 { font-size: 25px; }
h3 { font-size: 19px; }
.muted { color: var(--muted); }
.grid-dashboard { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 18px; align-items: start; }
.feed, .stack { display: grid; gap: 14px; }
.dashboard-feed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.card, .tip-card, .panel, .stat-card {
  border: 1px solid rgba(212,175,55,.18); border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(21,21,21,.84), rgba(10,10,10,.9));
  box-shadow: 0 18px 48px rgba(0,0,0,.22); backdrop-filter: blur(14px);
}
.card, .panel, .stat-card { padding: 18px; }
.hero-card { overflow: hidden; min-height: 260px; background-size: cover; background-position: center; position: relative; display: flex; align-items: end; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); }
.hero-card:before { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(13,13,13,.92), rgba(13,13,13,.35)); }
.hero-card > div { position: relative; max-width: 620px; }
.dashboard-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0d0d;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.slider-slide {
  position: relative;
  aspect-ratio: 2048 / 547;
  min-height: 220px;
  display: block;
}
.slider-slide img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.slider-slide:after { display: none; }
.slider-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 34px 38px;
}
.slider-copy p {
  max-width: 560px;
  margin: 12px 0 10px;
  color: #e0e0e0;
}
.slider-copy small {
  display: inline-flex;
  color: var(--gold);
  background: rgba(13,13,13,.62);
  border: 1px solid rgba(212,175,55,.26);
  border-radius: 999px;
  padding: 7px 11px;
}
.slider-dots {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}
.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}
.slider-dots span.active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}
.slider-note {
  margin: 8px 2px 0;
  color: var(--soft);
  font-size: 12px;
}
.worldcup-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(212,175,55,.13), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 18rem);
}
.worldcup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(13,13,13,.88), rgba(13,13,13,.52)),
    url('/assets/images/login-bg.png') right center / cover no-repeat;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.worldcup-hero h1 {
  margin-top: 10px;
  font-size: clamp(38px, 6vw, 74px);
}
.worldcup-hero p {
  max-width: 720px;
  color: #e4e4e4;
  font-size: 18px;
}
.countdown-card {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--radius);
  background: rgba(13,13,13,.7);
}
.countdown-card strong { font-family: Rajdhani, Montserrat, sans-serif; font-size: 25px; font-weight: 500; }
.countdown-card small { color: var(--gold); font-size: 22px; font-family: Rajdhani, Montserrat, sans-serif; }
.worldcup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.worldcup-main { display: grid; gap: 16px; }
.wc-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 14px;
}
.consensus-card {
  background:
    linear-gradient(145deg, rgba(212,175,55,.11), rgba(10,10,10,.9)),
    #0d0d0d;
}
.consensus-card p strong { color: var(--gold); }
.worldcup-matches { display: grid; gap: 16px; }
.wc-match-card {
  padding: 16px;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(21,21,21,.84), rgba(10,10,10,.92));
}
.wc-match-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}
.wc-match-head h2 { margin-top: 10px; }
.wc-match-stats {
  min-width: 92px;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(212,175,55,.06);
}
.wc-match-stats strong { display: block; color: var(--gold); font-size: 28px; font-family: Rajdhani, Montserrat, sans-serif; }
.wc-match-stats span { color: var(--muted); font-size: 12px; }
.wc-tip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.wc-pass-card {
  background: linear-gradient(145deg, rgba(212,175,55,.13), rgba(9,9,9,.94));
}
.worldcup-side { top: 92px; }
.inline-form { margin-top: 14px; }
.packages-grid { align-items: stretch; }
.package-card { align-content: start; }
.featured-package { border-color: rgba(212,175,55,.42); background: linear-gradient(145deg, rgba(212,175,55,.13), rgba(10,10,10,.92)); }
.package-price { display: block; color: var(--gold); font-family: Rajdhani, Montserrat, sans-serif; font-size: 30px; font-weight: 500; }
.clean-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.tip-card .tip-pick-card {
  padding: 14px;
  box-shadow: none;
  background: rgba(255,255,255,.035);
}
.tip-card .tip-pick-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filters { display: grid; grid-template-columns: repeat(4, minmax(130px, 1fr)); gap: 10px; margin-bottom: 14px; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: var(--text); border-radius: var(--radius); padding: 11px 12px; outline: 0; font-weight: 400; }
select option { background: #111216; }
label { display: grid; gap: 7px; color: #d7d7d7; font-size: 14px; font-weight: 400; }
.form-grid { display: grid; gap: 14px; }
.form-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tip-card { padding: 16px; display: grid; gap: 13px; }
.tip-top, .tip-bottom, .tipster-line, .meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tip-top { justify-content: space-between; }
.sport-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); background: rgba(212,175,55,.09); border: 1px solid var(--line); }
.badge { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; font-size: 12px; font-weight: 500; border: 1px solid rgba(255,255,255,.12); color: #ddd; }
.badge.gold { color: #140d02; background: var(--gold); }
.badge.wc { color: #0d0d0d; background: linear-gradient(135deg, #f4df8d, var(--gold)); border-color: rgba(212,175,55,.45); }
.badge.free { color: #b8ffe0; background: rgba(40,212,131,.13); border-color: rgba(40,212,131,.3); }
.badge.live { color: #001827; background: var(--blue); }
.badge.won { color: #002314; background: var(--green); }
.badge.lost { color: #fff; background: var(--red); }
.badge.push, .badge.upcoming { color: var(--gold); background: rgba(212,175,55,.1); }
.pick-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pick-box div { padding: 12px; border-radius: var(--radius); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.075); color: var(--soft); }
.pick-box strong { display: block; color: var(--gold); margin-top: 3px; font-weight: 500; }
.locked { border: 1px dashed rgba(212,175,55,.42); background: rgba(212,175,55,.06); padding: 14px; border-radius: var(--radius); }
.locked-odds-grid { grid-template-columns: 1.15fr .85fr; }
.daily-free-panel {
  border-color: rgba(40,212,131,.34);
  background:
    linear-gradient(145deg, rgba(40,212,131,.08), rgba(212,175,55,.06)),
    linear-gradient(145deg, rgba(21,21,21,.92), rgba(10,10,10,.94));
  box-shadow: 0 18px 55px rgba(0,0,0,.32), inset 0 0 0 1px rgba(40,212,131,.08);
}
.daily-free-panel > .badge {
  margin-bottom: 12px;
  font-size: 13px;
}
.featured-free-tip {
  border-color: rgba(40,212,131,.34);
}
.side-panel { display: grid; gap: 14px; position: sticky; top: 92px; }
.mini-list { display: grid; gap: 12px; }
.mini-item { display: flex; align-items: center; gap: 10px; }
.mini-item img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.stats-grid, .tipster-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stat-card strong { display: block; font-family: Rajdhani, Montserrat, sans-serif; font-size: 28px; font-weight: 500; color: var(--gold); }
.tipster-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tipster-card { display: grid; gap: 13px; }
.tipster-head { display: flex; gap: 12px; align-items: center; }
.tipster-head img, .profile-avatar { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-row span { background: rgba(255,255,255,.045); padding: 10px; border-radius: var(--radius); color: var(--muted); font-size: 12px; }
.metric-row strong { color: var(--text); display: block; font-size: 15px; font-weight: 500; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 13px; border-bottom: 1px solid rgba(255,255,255,.07); text-align: left; vertical-align: top; }
th { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}
.login-page:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url('/assets/images/login-bg.png?v=202604241140') right center / cover no-repeat;
}
.login-page:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(13,13,13,.34), rgba(13,13,13,.06) 22rem, transparent 42rem),
    linear-gradient(90deg, rgba(13,13,13,.22) 0%, rgba(13,13,13,.08) 42%, rgba(13,13,13,0) 100%);
  pointer-events: none;
}
.login-card { position: relative; z-index: 2; width: min(430px, 100%); padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7,7,9,.82); backdrop-filter: blur(16px); box-shadow: 0 25px 90px rgba(0,0,0,.42); }
.checkout-card { width: min(680px, 100%); }
.checkout-form { margin-top: 14px; }
.check-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.check-line input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex: 0 0 auto; }
.login-logo { width: 128px; height: 128px; object-fit: cover; margin: 0 auto 12px; border-radius: 50%; border: 1px solid var(--line); }
.demo-box { display: grid; gap: 6px; margin-top: 16px; padding: 14px; border-radius: var(--radius); background: rgba(255,255,255,.045); color: var(--muted); font-size: 13px; }
.demo-box strong { color: var(--gold); }
.legal, .app-footer { color: var(--muted); font-size: 12px; }
.flash { margin: 14px 0; padding: 12px 14px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); }
.flash.success { color: #b8ffe0; background: rgba(40,212,131,.12); }
.flash.error { color: #ffd1d2; background: rgba(255,95,99,.12); }
.app-footer { display: flex; gap: 16px; flex-wrap: wrap; padding: 24px 0 6px; }
@media (max-width: 1120px) {
  .grid-dashboard { grid-template-columns: 1fr; }
  .worldcup-layout, .worldcup-hero { grid-template-columns: 1fr; }
  .side-panel { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tipster-grid, .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .dashboard-feed { grid-template-columns: 1fr; }
  .wc-feature-grid, .wc-tip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: fixed; z-index: 40; left: 0; transform: translateX(-105%); transition: transform .2s ease; width: min(86vw, 310px); }
  .sidebar-open .sidebar { transform: translateX(0); }
  .mobile-backdrop { display: none; position: fixed; inset: 0; z-index: 35; background: rgba(0,0,0,.55); }
  .sidebar-open .mobile-backdrop { display: block; }
  .hamburger { display: inline-grid; place-items: center; }
  .app-main { padding: 12px; }
  .topbar { grid-template-columns: auto 1fr auto; }
  .top-logo span, .user-chip span, .top-actions .gold-button, .bell { display: none; }
  .top-search { grid-column: 1 / -1; order: 2; }
  .page-head { display: grid; align-items: start; }
  .filters, .form-two, .pick-box, .stats-grid, .tipster-grid, .side-panel { grid-template-columns: 1fr; }
  .hero-card { min-height: 220px; padding: 20px; }
  .slider-slide { min-height: 150px; aspect-ratio: 16 / 5.6; }
  .slider-copy { padding: 24px 20px 54px; }
  .slider-dots { left: 20px; right: auto; }
  .worldcup-hero { padding: 20px; }
  .wc-match-head { display: grid; }
}

/* 2026-04 premium glass refresh */
.app-body {
  background:
    radial-gradient(circle at 86% -6%, rgba(212,175,55,.22), transparent 28rem),
    radial-gradient(circle at 12% 12%, rgba(184,134,11,.09), transparent 24rem),
    linear-gradient(180deg, #0d0d0d 0%, #050505 55%, #020202 100%);
}

.app-shell { grid-template-columns: 280px minmax(0, 1fr); }

.sidebar {
  padding: 28px 18px 20px;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(7,9,11,.93), rgba(4,5,6,.96)),
    radial-gradient(circle at 55% 0%, rgba(212,175,55,.08), transparent 18rem);
  border-right-color: rgba(212,175,55,.16);
  box-shadow: inset -1px 0 0 rgba(255,255,255,.04), 24px 0 70px rgba(0,0,0,.28);
}

.brand {
  padding: 0 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand img {
  width: 58px;
  height: 58px;
  box-shadow: 0 0 0 5px rgba(212,175,55,.035), 0 14px 30px rgba(0,0,0,.34);
}

.nav { gap: 10px; }

.nav a {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 12px;
  border-color: rgba(255,255,255,.035);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(255,255,255,.012);
  color: rgba(244,240,230,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav a:hover {
  color: #fff;
  transform: translateX(2px);
  border-color: rgba(212,175,55,.42);
  background:
    linear-gradient(90deg, rgba(212,175,55,.12), rgba(212,175,55,.025)),
    rgba(255,255,255,.025);
  box-shadow: 0 0 0 1px rgba(212,175,55,.08), inset 0 1px 0 rgba(255,255,255,.06);
}

.nav-section {
  margin-top: 18px;
  color: rgba(212,175,55,.92);
}

.sidebar-legal,
.logout-button {
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(212,175,55,.09), rgba(255,255,255,.02)),
    rgba(7,9,11,.72);
  border-color: rgba(212,175,55,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.logout-button {
  min-height: 46px;
  letter-spacing: .01em;
}

.app-main { padding: 26px 28px; }

.topbar {
  padding: 12px 14px;
  border-radius: 16px;
  border-color: rgba(212,175,55,.18);
  background:
    linear-gradient(135deg, rgba(10,12,15,.78), rgba(5,6,8,.68)),
    rgba(5,7,9,.72);
  backdrop-filter: blur(24px) saturate(125%);
  box-shadow: 0 22px 75px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.055);
}

.top-logo img,
.user-chip img,
.avatar {
  box-shadow: 0 0 0 3px rgba(212,175,55,.05), 0 10px 24px rgba(0,0,0,.34);
}

.top-search {
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

input, select, textarea {
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.027)),
    rgba(5,7,9,.62);
  border-color: rgba(255,255,255,.095);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

input:focus,
select:focus,
textarea:focus,
.top-search:focus-within {
  border-color: rgba(212,175,55,.42);
  box-shadow: 0 0 0 3px rgba(212,175,55,.075), inset 0 1px 0 rgba(255,255,255,.04);
}

.gold-button,
.ghost-button,
.danger-button,
.icon-button {
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.gold-button {
  color: #0b0b0b;
  background: linear-gradient(135deg, #e2bd45, #b8860b);
  box-shadow: 0 12px 34px rgba(212,175,55,.22), inset 0 1px 0 rgba(255,255,255,.24);
}

.ghost-button,
.icon-button {
  background: rgba(212,175,55,.055);
  border: 1px solid rgba(212,175,55,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.ghost-button:hover,
.icon-button:hover {
  border-color: rgba(212,175,55,.42);
  background: rgba(212,175,55,.105);
  transform: translateY(-1px);
}

.page { padding-top: 22px; }

.card,
.tip-card,
.panel,
.stat-card,
.wc-match-card,
.table-wrap,
.login-card {
  border-radius: var(--radius-lg);
  border-color: rgba(212,175,55,.16);
  background:
    linear-gradient(145deg, rgba(14,17,20,.72), rgba(4,5,7,.88)),
    rgba(7,9,11,.72);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,.045);
  backdrop-filter: blur(22px) saturate(118%);
}

.card:hover,
.tip-card:hover,
.panel:hover,
.stat-card:hover,
.wc-match-card:hover {
  border-color: rgba(212,175,55,.28);
}

.stat-card {
  min-height: 102px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 88% 0%, rgba(212,175,55,.105), transparent 12rem),
    linear-gradient(145deg, rgba(15,18,21,.74), rgba(5,6,8,.88));
}

.stat-card strong { font-size: 31px; }

.dashboard-slider {
  border-radius: 16px;
  border-color: rgba(212,175,55,.2);
  background: rgba(5,7,9,.78);
  box-shadow: 0 30px 95px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.045);
}

.slider-slide { min-height: 176px; }
.slider-slide img { filter: saturate(.96) contrast(1.02); }
.slider-note { padding-left: 2px; }

.worldcup-hero {
  border-radius: 18px;
  border-color: rgba(212,175,55,.2);
  background:
    linear-gradient(90deg, rgba(5,7,9,.9), rgba(5,7,9,.5) 52%, rgba(5,7,9,.76)),
    radial-gradient(circle at 82% 8%, rgba(212,175,55,.2), transparent 20rem),
    url('/assets/images/login-bg.png') right center / cover no-repeat;
  box-shadow: 0 30px 95px rgba(0,0,0,.43), inset 0 1px 0 rgba(255,255,255,.05);
}

.countdown-card,
.wc-match-stats {
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(212,175,55,.11), rgba(255,255,255,.02)),
    rgba(5,7,9,.66);
  border-color: rgba(212,175,55,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.daily-free-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border-color: rgba(212,175,55,.36);
  background:
    radial-gradient(circle at 12% 0%, rgba(212,175,55,.22), transparent 18rem),
    radial-gradient(circle at 88% 16%, rgba(40,212,131,.12), transparent 17rem),
    linear-gradient(145deg, rgba(18,20,18,.78), rgba(5,7,9,.9));
  box-shadow: 0 30px 95px rgba(0,0,0,.46), 0 0 0 1px rgba(40,212,131,.08), inset 0 1px 0 rgba(255,255,255,.055);
}

.daily-free-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(212,175,55,.08), transparent 35%, rgba(255,255,255,.025));
}

.daily-free-panel > * { position: relative; }

.daily-free-panel > .badge {
  padding: 7px 11px;
  background: rgba(40,212,131,.16);
  border-color: rgba(40,212,131,.44);
  box-shadow: 0 0 0 4px rgba(40,212,131,.035);
}

.tip-card {
  padding: 18px;
  gap: 14px;
  min-height: 0;
}

.tip-card.featured-free-tip {
  border-color: rgba(40,212,131,.34);
  box-shadow: 0 28px 85px rgba(0,0,0,.42), 0 0 0 1px rgba(40,212,131,.065), inset 0 1px 0 rgba(255,255,255,.05);
}

.sport-icon {
  background:
    radial-gradient(circle at 50% 30%, rgba(212,175,55,.2), transparent 62%),
    rgba(212,175,55,.065);
  border-color: rgba(212,175,55,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.badge {
  border-radius: 999px;
  padding: 6px 10px;
  border-color: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.badge.gold,
.badge.wc {
  background: linear-gradient(135deg, #f1d86d, #d4af37);
}

.badge.free {
  color: #caffdf;
  background: rgba(40,212,131,.14);
}

.pick-box div,
.tip-card .tip-pick-card,
.metric-row span {
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.025)),
    rgba(5,7,9,.55);
  border: 1px solid rgba(255,255,255,.085);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.locked {
  border-radius: 14px;
  border-color: rgba(212,175,55,.38);
  background:
    radial-gradient(circle at 12% 0%, rgba(212,175,55,.16), transparent 14rem),
    linear-gradient(145deg, rgba(212,175,55,.075), rgba(8,9,10,.76));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.side-panel .panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(212,175,55,.1), transparent 12rem),
    linear-gradient(145deg, rgba(14,17,20,.72), rgba(4,5,7,.88));
}

.mini-item {
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.018);
}

.mini-item img {
  box-shadow: 0 0 0 3px rgba(212,175,55,.035);
}

.filters {
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(255,255,255,.04);
}

th,
td { border-bottom-color: rgba(255,255,255,.055); }

.flash {
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 46px rgba(0,0,0,.28);
}

.login-card {
  width: min(410px, 100%);
  background:
    linear-gradient(145deg, rgba(7,9,11,.78), rgba(4,5,7,.9)),
    rgba(7,7,9,.76);
}

@media (max-width: 1120px) {
  .app-shell { grid-template-columns: 260px minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .app-shell { grid-template-columns: 1fr; }
  .app-main { padding: 14px; }
  .sidebar { width: min(88vw, 320px); }
  .topbar { border-radius: 14px; }
  .slider-slide { min-height: 136px; }
  .daily-free-panel,
  .worldcup-hero { border-radius: 16px; }
  .filters { padding: 8px; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

.editorial-body {
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  color: #111827;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.editorial-body h1,
.editorial-body h2,
.editorial-body h3,
.editorial-body h4 {
  font-family: Sora, Inter, sans-serif;
  color: #111827;
  letter-spacing: 0;
}

.editorial-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(18px);
}

.editorial-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.editorial-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
}

.editorial-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
}

.editorial-nav a:hover {
  color: #0f172a;
}

.editorial-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.editorial-button:hover {
  transform: translateY(-1px);
}

.editorial-button-primary {
  color: #111827;
  background: #d4af37;
  box-shadow: 0 14px 30px rgba(212,175,55,.28);
}

.editorial-button-secondary {
  color: #0f172a;
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
}

.editorial-button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px;
}

.editorial-inline-form {
  display: inline-flex;
}

.editorial-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px) 0 42px;
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(212,175,55,.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: #8a6a0a;
  background: #fff9e8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.editorial-hero h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  font-weight: 800;
}

.editorial-hero p,
.editorial-section-head p,
.newsletter-section p,
.pass-offer-card p,
.editorial-footer p {
  color: #4b5563;
  line-height: 1.75;
}

.editorial-hero-copy > p {
  max-width: 640px;
  font-size: clamp(18px, 2vw, 22px);
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.editorial-hero-media {
  position: relative;
}

.editorial-hero-media img,
.daily-image img,
.analysis-card img,
.featured-cover img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.editorial-hero-media img {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(15,23,42,.16);
}

.hero-info-card {
  position: absolute;
  left: -26px;
  right: 26px;
  bottom: 24px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(15,23,42,.14);
  backdrop-filter: blur(14px);
}

.hero-info-card span,
.pass-offer-card h3 {
  display: block;
  color: #0f172a;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.editorial-section {
  margin-top: clamp(54px, 8vw, 96px);
}

.editorial-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.editorial-section-head h2,
.featured-content h2,
.pass-editorial-section h2,
.newsletter-section h2 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

.daily-editorial-card,
.featured-article,
.pass-editorial-section,
.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.daily-image img,
.featured-cover img {
  aspect-ratio: 16 / 11;
  border-radius: 22px;
}

.editorial-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.editorial-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #0f172a;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 800;
}

.editorial-badge.free {
  color: #065f46;
  background: #d1fae5;
}

.editorial-badge.premium {
  color: #111827;
  background: #f6dc7b;
}

.daily-content h3 {
  margin: 16px 0 8px;
  font-size: clamp(27px, 4vw, 44px);
}

.editorial-muted {
  color: #4b5563;
}

.daily-data-grid,
.result-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.daily-data-grid div,
.result-card-grid div {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f7f7f5;
}

.daily-data-grid span,
.result-card-grid span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.daily-data-grid strong,
.result-card-grid strong {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

.editorial-link {
  color: #8a6a0a;
  font-weight: 800;
}

.analysis-grid,
.premium-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.analysis-card,
.premium-editorial-card,
.pass-offer-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15,23,42,.07);
}

.analysis-card img {
  aspect-ratio: 4 / 3;
}

.analysis-card > div,
.premium-editorial-card,
.pass-offer-card {
  padding: 20px;
}

.analysis-card h3,
.premium-editorial-card h3 {
  margin: 14px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.analysis-card p,
.premium-editorial-card p,
.featured-content p {
  color: #4b5563;
  line-height: 1.7;
}

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

.premium-editorial-section {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: #f7f7f5;
}

.premium-locked,
.premium-unlocked {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f9fafb;
}

.premium-locked strong,
.premium-unlocked strong {
  color: #0f172a;
  font-family: Sora, Inter, sans-serif;
}

.featured-article {
  background: #0f172a;
}

.featured-article h2,
.featured-article .featured-content,
.featured-article .featured-content p,
.featured-article li {
  color: #ffffff;
}

.featured-content ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding-left: 20px;
}

.pass-editorial-section {
  background: #ffffff;
}

.pass-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.pass-feature-grid span {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f7f7f5;
  color: #111827;
  font-weight: 700;
}

.pass-offer-card {
  background: #f7f7f5;
}

.result-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.editorial-empty {
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #f7f7f5;
  color: #4b5563;
}

.newsletter-section {
  background: #f7f7f5;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form input[type="email"] {
  height: 52px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
}

.newsletter-form label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #4b5563;
}

.newsletter-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d4af37;
}

.editorial-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 36px clamp(18px, 4vw, 54px);
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.editorial-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #4b5563;
  font-weight: 700;
}

.responsible-note {
  grid-column: 1 / -1;
  max-width: 820px;
  font-size: 13px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1020px) {
  .editorial-header,
  .editorial-hero,
  .daily-editorial-card,
  .featured-article,
  .pass-editorial-section,
  .newsletter-section,
  .editorial-footer {
    grid-template-columns: 1fr;
  }

  .editorial-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .editorial-header-cta,
  .editorial-header form,
  .editorial-header form .editorial-header-cta {
    width: 100%;
  }

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

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

/* QA final overrides - keep this block last */
:root {
  --brand-gold: #D4AF37;
  --brand-gold-deep: #B8860B;
  --brand-black: #0D0D0D;
  --brand-graphite: #151515;
  --brand-panel: #1E1E1E;
  --brand-text: #F5F3EE;
  --brand-muted: #B8B8B8;
  --brand-grey: #777777;
}

html {
  background: var(--brand-black);
}

.launch-body {
  background:
    radial-gradient(circle at 50% -120px, rgba(212, 175, 55, .22), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(245,243,238,.05), transparent 24%),
    linear-gradient(180deg, #080808 0%, var(--brand-black) 34%, var(--brand-graphite) 72%, #080808 100%) !important;
  color: var(--brand-text) !important;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.launch-body::before {
  background:
    linear-gradient(rgba(212,175,55,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.025) 1px, transparent 1px) !important;
  background-size: 44px 44px !important;
  opacity: .38;
}

.launch-header {
  width: min(100% - 34px, 1180px) !important;
  min-height: 86px !important;
  margin-top: 22px !important;
  padding: 9px 16px 9px 20px !important;
  grid-template-columns: 210px minmax(0, 1fr) auto !important;
  gap: 20px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(212, 175, 55, .18) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    var(--brand-black) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.52), inset 0 -1px 0 rgba(212,175,55,.22) !important;
  backdrop-filter: blur(10px) !important;
}

/* Header + hero top alignment refinement */
.launch-page {
  width: min(100% - 36px, 1240px) !important;
  margin-top: -108px !important;
}

.launch-header {
  z-index: 100 !important;
  margin-top: 24px !important;
  background: linear-gradient(180deg, rgba(22,22,22,.86), rgba(10,10,10,.78)) !important;
  border: 1px solid rgba(212,175,55,.58) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(0,0,0,.4) !important;
}

.launch-header::before {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.95), transparent) !important;
}

.launch-brand img {
  width: 188px !important;
  height: 118px !important;
  margin: -34px 0 -32px -20px !important;
}

.launch-header::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.7), transparent);
}

.launch-brand {
  color: var(--brand-text) !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 0 !important;
}

.launch-brand img {
  width: 172px !important;
  height: 108px !important;
  margin: -27px 0 -25px -12px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 11px 16px rgba(0,0,0,.58)) !important;
}

.launch-nav {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: clamp(20px, 2.4vw, 34px) !important;
  color: var(--brand-text) !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
}

.launch-nav a {
  padding: 25px 0 22px !important;
  color: var(--brand-text) !important;
  opacity: .92;
}

.launch-nav a::after {
  bottom: 14px !important;
  height: 2px !important;
  background: var(--brand-gold) !important;
  box-shadow: 0 0 16px rgba(212,175,55,.42) !important;
  transform-origin: left !important;
}

.launch-nav a:hover,
.launch-nav a.is-active {
  color: var(--brand-gold) !important;
  opacity: 1 !important;
}

.launch-nav a.is-active::after {
  transform: scaleX(1) !important;
}

.launch-header-cta {
  display: inline-flex !important;
  min-width: 116px !important;
  min-height: 46px !important;
  padding: 12px 18px !important;
  border-radius: 5px !important;
}

.launch-button {
  border-radius: 7px !important;
  font-family: "Rajdhani", "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
}

.launch-button-primary {
  background: linear-gradient(135deg, #E7C65A 0%, var(--brand-gold) 44%, var(--brand-gold-deep) 100%) !important;
  color: var(--brand-black) !important;
  box-shadow: 0 13px 26px rgba(212,175,55,.26), inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.launch-button-secondary {
  background: rgba(13,13,13,.72) !important;
  color: var(--brand-text) !important;
  border: 1px solid rgba(212,175,55,.55) !important;
}

.launch-page {
  color: var(--brand-text) !important;
}

.launch-hero {
  min-height: calc(100vh - 116px) !important;
  position: relative;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr) !important;
  gap: clamp(34px, 5vw, 74px) !important;
  padding-top: clamp(74px, 8vw, 108px) !important;
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 36px -30px 28px;
  z-index: -1;
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(212,175,55,.14), transparent 20% 78%, rgba(212,175,55,.08)),
    radial-gradient(circle at 68% 16%, rgba(245,243,238,.1), transparent 23%),
    rgba(21,21,21,.46);
  box-shadow: inset 0 0 80px rgba(0,0,0,.34);
}

.launch-hero h1,
.launch-section h2,
.launch-pass h2,
.launch-newsletter h2,
.launch-daily-content h3,
.launch-tip-card h3,
.launch-analysis-card h3,
.launch-premium-card h3,
.launch-steps h3,
.launch-school-grid h3 {
  color: var(--brand-text) !important;
  font-family: "Rajdhani", "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .01em !important;
}

.launch-hero h1 {
  max-width: 760px !important;
  color: var(--brand-text) !important;
  font-size: clamp(54px, 7vw, 90px) !important;
  line-height: .92 !important;
  text-shadow: 0 20px 42px rgba(0,0,0,.45) !important;
}

.launch-hero h1::after {
  content: "ODDS. FORMA. DÖNTÉS.";
  display: block;
  margin-top: 18px;
  color: var(--brand-gold);
  font-size: clamp(27px, 2.6vw, 40px);
  line-height: .96;
}

.launch-hero-copy p,
.launch-section-head p,
.launch-pass p,
.launch-newsletter p,
.launch-tip-card p,
.launch-analysis-card p,
.launch-premium-card p,
.launch-school-grid p,
.launch-steps p,
.launch-faq p,
.launch-disclaimer,
.launch-card-meta,
.launch-card-label,
.launch-tip-grid span,
.launch-tip-row span,
.launch-result-grid span {
  color: var(--brand-muted) !important;
}

.launch-badge,
.launch-kicker {
  background: rgba(212,175,55,.11) !important;
  border-color: rgba(212,175,55,.42) !important;
  color: var(--brand-gold) !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .13em !important;
}

.launch-hero-visual {
  min-height: 540px !important;
}

.launch-hero-visual > img {
  border-radius: 18px !important;
  filter: saturate(.9) contrast(1.08) brightness(.56) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.58), 0 0 0 1px rgba(212,175,55,.2) !important;
}

.launch-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(0,0,0,.68), transparent 38%),
    linear-gradient(25deg, transparent 0 48%, rgba(212,175,55,.17) 48.2%, transparent 50.4%),
    linear-gradient(18deg, transparent 0 66%, rgba(212,175,55,.16) 66.2%, transparent 67.2%);
}

.launch-floating-card,
.launch-mini-stats span,
.launch-daily-card,
.launch-tip-card,
.launch-analysis-card,
.launch-premium-card,
.launch-school-grid article,
.launch-steps article,
.launch-result-grid div,
.launch-result-table,
.launch-newsletter,
.launch-faq details {
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--brand-graphite) !important;
  border: 1px solid rgba(212,175,55,.2) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.34) !important;
}

.launch-floating-card {
  z-index: 2;
  background: rgba(13,13,13,.88) !important;
}

.launch-floating-card strong,
.launch-tip-grid strong,
.launch-tip-row strong,
.launch-result-grid strong,
.launch-locked strong,
.launch-unlocked strong,
.launch-analysis-card small,
.launch-text-link,
.launch-result-table .is-won {
  color: var(--brand-gold) !important;
}

.launch-daily-card,
.launch-newsletter {
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(212,175,55,.10), rgba(255,255,255,.025) 36%, rgba(0,0,0,.18)),
    var(--brand-panel) !important;
}

.launch-daily-card > img,
.launch-analysis-card img {
  border-radius: 16px !important;
  filter: saturate(.82) contrast(1.06) brightness(.68) !important;
}

.launch-tip-grid div {
  background: rgba(13,13,13,.62) !important;
  border-color: rgba(212,175,55,.18) !important;
  border-radius: 12px !important;
}

.launch-pass {
  border-radius: 22px !important;
  border: 1px solid rgba(212,175,55,.28) !important;
  background:
    linear-gradient(115deg, rgba(212,175,55,.13), transparent 32%),
    linear-gradient(180deg, #151515, #0D0D0D) !important;
}

.launch-price-card {
  border: 1px solid rgba(212,175,55,.28) !important;
  border-radius: 18px !important;
  background: linear-gradient(160deg, #F5F3EE, #D4AF37 150%) !important;
  color: var(--brand-black) !important;
}

.launch-newsletter-form input {
  border-radius: 7px !important;
  background: #0D0D0D !important;
  border-color: rgba(212,175,55,.26) !important;
  color: var(--brand-text) !important;
}

.launch-footer {
  border-top-color: rgba(212,175,55,.22) !important;
  color: var(--brand-muted) !important;
}

.launch-mobile-cta {
  background: rgba(13,13,13,.94) !important;
  border-top-color: rgba(212,175,55,.22) !important;
}

@media (max-width: 1100px) {
  .launch-header {
    grid-template-columns: 1fr auto !important;
    min-height: 78px !important;
  }

  .launch-brand img {
    width: 142px !important;
    height: 90px !important;
    margin: -20px 0 -19px -8px !important;
  }

  .launch-menu-toggle {
    display: inline-flex !important;
    border-color: rgba(212, 175, 55, .28) !important;
    background: rgba(255,255,255,.06) !important;
  }

  .launch-menu-toggle span {
    background: var(--brand-gold) !important;
  }

  .launch-nav {
    grid-column: 1 / -1 !important;
    display: none !important;
    background: rgba(255,255,255,.03) !important;
    border-radius: 8px !important;
    padding: 10px 14px 14px !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .launch-nav.is-open {
    display: flex !important;
  }

  .launch-header-cta {
    display: none !important;
  }

  .launch-brand span {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .launch-header {
    width: min(100% - 22px, 1180px) !important;
    margin-top: 10px !important;
    padding: 8px 10px 8px 14px !important;
    border-radius: 8px !important;
  }

  .launch-brand img {
    width: 118px !important;
    height: 76px !important;
    margin: -16px 0 -15px -6px !important;
  }

  .launch-hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding-top: 48px !important;
  }

  .launch-hero::before {
    inset: 18px -12px 14px !important;
    border-radius: 20px !important;
  }

  .launch-hero h1 {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  .launch-hero h1::after {
    font-size: clamp(24px, 8vw, 34px) !important;
  }

  .launch-hero-visual {
    min-height: auto !important;
  }

  .launch-hero-visual > img {
    position: static !important;
    aspect-ratio: 1 / .88 !important;
  }

  .launch-floating-card {
    position: static !important;
    width: auto !important;
    margin-top: 12px !important;
  }

  .launch-mini-stats {
    position: static !important;
    width: auto !important;
    margin-top: 12px !important;
  }
}

@media (max-width: 680px) {
  .editorial-page {
    width: min(100% - 24px, 1180px);
    padding-top: 22px;
  }

  .editorial-hero h1 {
    font-size: 42px;
  }

  .hero-info-card {
    position: static;
    margin-top: 12px;
  }

  .editorial-actions,
  .editorial-actions .editorial-button,
  .editorial-actions form,
  .premium-locked .editorial-button,
  .premium-locked form {
    width: 100%;
  }

  .daily-data-grid,
  .analysis-grid,
  .premium-editorial-grid,
  .pass-feature-grid,
  .result-card-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 50;
    display: block;
    padding: 10px 14px;
    background: rgba(255,255,255,.94);
    border-top: 1px solid #e5e7eb;
  }

  .mobile-sticky-cta .editorial-button,
  .mobile-sticky-cta form {
    width: 100%;
  }
}

/* Brand board final pass: black-gold sports betting identity */
:root {
  --brand-gold: #D4AF37;
  --brand-gold-deep: #B8860B;
  --brand-black: #0D0D0D;
  --brand-graphite: #151515;
  --brand-panel: #1E1E1E;
  --brand-text: #F5F3EE;
  --brand-muted: #B8B8B8;
  --brand-grey: #777777;
}

.launch-body {
  background:
    radial-gradient(circle at 50% -120px, rgba(212, 175, 55, .24), transparent 34%),
    radial-gradient(circle at 14% 8%, rgba(255,255,255,.06), transparent 24%),
    linear-gradient(180deg, #090909 0%, #0D0D0D 28%, #151515 68%, #0D0D0D 100%);
  color: var(--brand-text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

.launch-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(212,175,55,.08) 18.15%, transparent 18.8% 43%, rgba(212,175,55,.05) 43.15%, transparent 43.65%),
    radial-gradient(circle at 50% 12%, rgba(245,243,238,.08), transparent 18%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.54));
  opacity: .85;
}

.launch-header {
  width: min(100% - 34px, 1180px);
  min-height: 86px;
  margin-top: 22px;
  padding: 9px 16px 9px 20px;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 20px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, .18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    var(--brand-black);
  box-shadow: 0 16px 34px rgba(0,0,0,.52), inset 0 -1px 0 rgba(212,175,55,.22);
}

.launch-header::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.7), transparent);
  opacity: .75;
}

.launch-brand img {
  width: 172px;
  height: 108px;
  margin: -27px 0 -25px -12px;
  filter: drop-shadow(0 11px 16px rgba(0,0,0,.58));
}

.launch-nav {
  justify-content: flex-start;
  gap: clamp(20px, 2.4vw, 34px);
  color: var(--brand-text);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.launch-nav a {
  padding: 25px 0 22px;
  color: var(--brand-text);
  opacity: .92;
}

.launch-nav a::after {
  bottom: 14px;
  height: 2px;
  background: var(--brand-gold);
  box-shadow: 0 0 16px rgba(212,175,55,.42);
  transform-origin: left;
}

.launch-nav a:hover,
.launch-nav a.is-active {
  color: var(--brand-gold);
  opacity: 1;
}

.launch-nav a.is-active::after {
  transform: scaleX(1);
}

.launch-header-cta {
  min-width: 116px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 5px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.launch-button {
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
  border-radius: 7px;
}

.launch-button-primary {
  background: linear-gradient(135deg, #E7C65A 0%, var(--brand-gold) 44%, var(--brand-gold-deep) 100%);
  color: var(--brand-black);
  box-shadow: 0 13px 26px rgba(212,175,55,.26), inset 0 1px 0 rgba(255,255,255,.34);
}

.launch-button-primary:hover {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-deep));
}

.launch-button-secondary {
  background: rgba(13,13,13,.72);
  color: var(--brand-text);
  border: 1px solid rgba(212,175,55,.55);
}

.launch-hero {
  min-height: calc(100vh - 116px);
  position: relative;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  padding-top: clamp(74px, 8vw, 110px);
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 36px -30px 28px;
  z-index: -1;
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(212,175,55,.14), transparent 20% 78%, rgba(212,175,55,.08)),
    radial-gradient(circle at 68% 16%, rgba(245,243,238,.1), transparent 23%),
    rgba(21,21,21,.46);
  box-shadow: inset 0 0 80px rgba(0,0,0,.34);
}

.launch-hero h1,
.launch-section h2,
.launch-pass h2,
.launch-newsletter h2,
.launch-daily-content h3,
.launch-tip-card h3,
.launch-analysis-card h3,
.launch-premium-card h3,
.launch-steps h3,
.launch-school-grid h3 {
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--brand-text);
}

.launch-hero h1 {
  font-size: clamp(54px, 7vw, 90px);
  line-height: .92;
  max-width: 760px;
  text-shadow: 0 20px 42px rgba(0,0,0,.45);
}

.launch-hero h1::after {
  content: "ODDS. FORMA. DÖNTÉS.";
  display: block;
  margin-top: 18px;
  color: var(--brand-gold);
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: .96;
}

.launch-hero-copy p,
.launch-section-head p,
.launch-pass p,
.launch-newsletter p {
  color: var(--brand-muted);
  font-size: 16px;
}

.launch-badge,
.launch-kicker {
  background: rgba(212,175,55,.11);
  border-color: rgba(212,175,55,.42);
  color: var(--brand-gold);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: .13em;
}

.launch-hero-visual {
  min-height: 560px;
}

.launch-hero-visual > img {
  border-radius: 18px;
  filter: saturate(.86) contrast(1.08) brightness(.62);
  box-shadow: 0 24px 80px rgba(0,0,0,.58), 0 0 0 1px rgba(212,175,55,.2);
}

.launch-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(0,0,0,.68), transparent 38%),
    linear-gradient(25deg, transparent 0 48%, rgba(212,175,55,.17) 48.2%, transparent 50.4%),
    linear-gradient(18deg, transparent 0 66%, rgba(212,175,55,.16) 66.2%, transparent 67.2%);
}

.launch-floating-card,
.launch-mini-stats span,
.launch-daily-card,
.launch-tip-card,
.launch-analysis-card,
.launch-premium-card,
.launch-school-grid article,
.launch-steps article,
.launch-result-grid div,
.launch-result-table,
.launch-newsletter,
.launch-faq details {
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--brand-graphite);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
}

.launch-daily-card,
.launch-newsletter {
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(212,175,55,.10), rgba(255,255,255,.025) 36%, rgba(0,0,0,.18)),
    var(--brand-panel);
}

.launch-daily-card > img,
.launch-analysis-card img {
  border-radius: 16px;
  filter: saturate(.82) contrast(1.06) brightness(.68);
}

.launch-tip-grid div {
  background: rgba(13,13,13,.62);
  border-color: rgba(212,175,55,.18);
  border-radius: 12px;
}

.launch-tip-grid strong,
.launch-tip-row strong,
.launch-result-grid strong,
.launch-floating-card strong,
.launch-locked strong,
.launch-unlocked strong {
  color: var(--brand-gold);
}

.launch-tip-grid span,
.launch-tip-row span,
.launch-result-grid span,
.launch-card-meta,
.launch-card-label,
.launch-tip-card p,
.launch-analysis-card p,
.launch-premium-card p,
.launch-school-grid p,
.launch-steps p,
.launch-faq p,
.launch-disclaimer {
  color: var(--brand-muted);
}

.launch-text-link,
.launch-analysis-card small,
.launch-result-table .is-won {
  color: var(--brand-gold);
}

.launch-pass {
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,.28);
  background:
    linear-gradient(115deg, rgba(212,175,55,.13), transparent 32%),
    linear-gradient(180deg, #151515, #0D0D0D);
}

.launch-price-card {
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 18px;
  background:
    linear-gradient(160deg, #F5F3EE, #D4AF37 150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 22px 54px rgba(0,0,0,.32);
}

.launch-newsletter-form input {
  border-radius: 7px;
  background: #0D0D0D;
  border-color: rgba(212,175,55,.26);
  color: var(--brand-text);
}

.launch-footer {
  border-top-color: rgba(212,175,55,.22);
  color: var(--brand-muted);
}

.launch-footer nav,
.launch-footer .launch-brand {
  color: var(--brand-text);
}

@media (max-width: 1100px) {
  .launch-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .launch-brand img {
    width: 142px;
    height: 90px;
    margin: -20px 0 -19px -8px;
  }

  .launch-nav {
    gap: 0;
  }

  .launch-nav a {
    padding: 13px 8px;
  }
}

@media (max-width: 680px) {
  .launch-header {
    width: min(100% - 22px, 1180px);
    margin-top: 10px;
    padding: 8px 10px 8px 14px;
  }

  .launch-brand img {
    width: 118px;
    height: 76px;
    margin: -16px 0 -15px -6px;
  }

  .launch-hero {
    padding-top: 48px;
  }

  .launch-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .launch-hero h1::after {
    font-size: clamp(24px, 8vw, 34px);
  }
}

/* Dark logo-led launch theme */
.launch-body {
  background:
    radial-gradient(circle at 8% -8%, rgba(213, 176, 86, .22), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(236, 208, 138, .12), transparent 30%),
    linear-gradient(180deg, #05080b 0%, #0b0f15 42%, #11151c 100%);
  color: #f3f2ee;
}

.launch-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 78%);
}

.launch-header {
  width: min(100% - 32px, 1200px);
  min-height: 104px;
  margin-top: 22px;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(213, 176, 86, .22);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,0)),
    #080a0d;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.launch-brand {
  color: #fff;
  font-size: 0;
}

.launch-brand img {
  width: 180px;
  height: 112px;
  margin: -25px 0 -25px -8px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.46));
}

.launch-nav {
  justify-content: flex-start;
  gap: 30px;
  color: #f3f2ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.launch-nav a {
  padding: 17px 0;
}

.launch-nav a:hover {
  color: var(--tz-gold-light);
}

.launch-nav a::after {
  bottom: 8px;
  height: 3px;
  background: var(--tz-gold);
  transform-origin: left;
}

.launch-header-cta {
  min-width: 108px;
  border-radius: 6px;
  min-height: 48px;
  text-transform: uppercase;
}

.launch-page {
  color: #f3f2ee;
}

.launch-hero h1,
.launch-section h2,
.launch-daily-content h3,
.launch-tip-card h3,
.launch-analysis-card h3,
.launch-premium-card h3,
.launch-steps h3,
.launch-school-grid h3,
.launch-floating-card strong,
.launch-tip-grid strong,
.launch-tip-row strong,
.launch-result-grid strong {
  color: #fff;
}

.launch-hero-copy p,
.launch-section-head p,
.launch-pass p,
.launch-newsletter p,
.launch-tip-card p,
.launch-premium-card p,
.launch-school-grid p,
.launch-steps p,
.launch-analysis-card p,
.launch-floating-card p,
.launch-card-label,
.launch-card-meta,
.launch-tip-grid span,
.launch-tip-row span,
.launch-result-grid span,
.launch-disclaimer {
  color: rgba(243, 242, 238, .7);
}

.launch-badge,
.launch-kicker {
  background: rgba(213, 176, 86, .13);
  border-color: rgba(213, 176, 86, .34);
  color: var(--tz-gold-light);
}

.launch-button-secondary {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(213, 176, 86, .28);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.launch-trust span,
.launch-tip-grid div,
.launch-result-grid div,
.launch-tip-card,
.launch-premium-card,
.launch-school-grid article,
.launch-steps article,
.launch-analysis-card,
.launch-faq details,
.launch-result-table,
.launch-floating-card {
  border-color: rgba(213, 176, 86, .2);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #0d1117;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.launch-trust span {
  color: rgba(243, 242, 238, .76);
}

.launch-hero-visual > img,
.launch-daily-card > img,
.launch-analysis-card img {
  filter: saturate(.9) contrast(1.04) brightness(.78);
}

.launch-hero-visual > img {
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
}

.launch-floating-card {
  background: rgba(8, 10, 13, .86);
  backdrop-filter: blur(16px);
}

.launch-mini-stats span,
.launch-locked,
.launch-unlocked {
  border-color: rgba(213, 176, 86, .25);
  background: rgba(8, 10, 13, .88);
  color: rgba(243, 242, 238, .78);
}

.launch-mini-stats strong,
.launch-locked strong,
.launch-unlocked strong {
  color: var(--tz-gold-light);
}

.launch-section-soft::before {
  background: linear-gradient(180deg, rgba(213, 176, 86, .07), rgba(255,255,255,.025));
}

.launch-daily-card,
.launch-newsletter {
  border-color: rgba(213, 176, 86, .22);
  background:
    linear-gradient(145deg, rgba(213, 176, 86, .075), rgba(255,255,255,.025)),
    #0b0f15;
  box-shadow: 0 26px 78px rgba(0,0,0,.34);
}

.launch-tip-row {
  border-bottom-color: rgba(213, 176, 86, .16);
}

.launch-analysis-card small,
.launch-text-link,
.launch-result-table .is-won {
  color: var(--tz-gold-light);
}

.launch-pass {
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 208, 138, .19), transparent 32%),
    linear-gradient(135deg, #05080b, #11151c 78%);
  border: 1px solid rgba(213, 176, 86, .25);
}

.launch-benefits span {
  border-color: rgba(213, 176, 86, .24);
  background: rgba(255, 255, 255, .045);
}

.launch-price-card {
  background: linear-gradient(180deg, #fbf4df, #ffffff);
  color: var(--tz-black);
}

.launch-price-card p,
.launch-price-card span,
.launch-price-card small {
  color: #5f6672;
}

.launch-result-table div {
  border-bottom-color: rgba(213, 176, 86, .14);
  color: rgba(243, 242, 238, .72);
}

.launch-result-table span:first-child,
.launch-result-table strong {
  color: #fff;
}

.launch-newsletter-form input {
  background: rgba(255,255,255,.08);
  border-color: rgba(213, 176, 86, .24);
  color: #fff;
}

.launch-newsletter-form input::placeholder {
  color: rgba(243, 242, 238, .48);
}

.launch-newsletter-form label {
  color: rgba(243, 242, 238, .76);
}

.launch-faq summary {
  color: #fff;
}

.launch-faq p {
  color: rgba(243, 242, 238, .7);
}

.launch-footer {
  border-top-color: rgba(213, 176, 86, .22);
  color: rgba(243, 242, 238, .68);
}

.launch-footer .launch-brand img {
  width: 150px;
  height: 94px;
  margin: -18px 0 -16px -8px;
}

.launch-footer nav {
  color: #f3f2ee;
}

.launch-footer small {
  color: rgba(243, 242, 238, .58);
}

.launch-mobile-cta {
  background: rgba(5, 8, 11, .9);
  border-top-color: rgba(213, 176, 86, .22);
}

@media (max-width: 1100px) {
  .launch-header {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }

  .launch-brand img {
    width: 148px;
    height: 92px;
    margin: -20px 0 -18px -6px;
  }

  .launch-menu-toggle {
    border-color: rgba(213, 176, 86, .28);
    background: rgba(255,255,255,.06);
  }

  .launch-menu-toggle span {
    background: var(--tz-gold-light);
  }

  .launch-nav {
    background: rgba(255,255,255,.03);
    border-radius: 8px;
    padding: 10px 14px 14px;
  }
}

@media (max-width: 680px) {
  .launch-header {
    margin-top: 12px;
    min-height: 78px;
    border-radius: 8px;
  }

  .launch-brand img {
    width: 124px;
    height: 78px;
    margin: -16px 0 -15px -6px;
  }
}

:root {
  --tz-black: #05080b;
  --tz-graphite: #11151c;
  --tz-gold: #d5b056;
  --tz-gold-deep: #b9923f;
  --tz-gold-light: #ecd08a;
  --tz-cream: #f3f2ee;
  --tz-gold-soft: #fbf4df;
  --tz-border: #e7dcc0;
  --tz-muted: #5f6672;
  --tz-white: #ffffff;
  --tz-shadow: 0 22px 70px rgba(17, 21, 28, .09);
}

html {
  scroll-behavior: smooth;
}

.launch-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 4%, rgba(236, 208, 138, .22), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--tz-cream) 58%, #ffffff 100%);
  color: var(--tz-graphite);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

.launch-body * {
  box-sizing: border-box;
}

.launch-body a {
  color: inherit;
  text-decoration: none;
}

.launch-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: min(100% - 32px, 1240px);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(231, 220, 192, .78);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(17, 21, 28, .08);
}

.launch-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  color: var(--tz-black);
  letter-spacing: 0;
}

.launch-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.launch-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--tz-muted);
  font-size: 14px;
  font-weight: 500;
}

.launch-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
}

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

.launch-nav a:hover {
  color: var(--tz-black);
}

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

.launch-inline-form {
  display: inline-flex;
  margin: 0;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.launch-button:hover {
  transform: translateY(-2px);
}

.launch-button-primary {
  background: linear-gradient(135deg, var(--tz-gold-light), var(--tz-gold) 48%, var(--tz-gold-deep));
  color: var(--tz-black);
  box-shadow: 0 12px 28px rgba(185, 146, 63, .28);
}

.launch-button-primary:hover {
  box-shadow: 0 18px 38px rgba(185, 146, 63, .34);
}

.launch-button-secondary {
  background: var(--tz-white);
  color: var(--tz-black);
  border-color: var(--tz-border);
  box-shadow: 0 10px 24px rgba(17, 21, 28, .06);
}

.launch-button-small {
  min-height: 40px;
  padding: 11px 16px;
  font-size: 13px;
}

.launch-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--tz-border);
  border-radius: 14px;
  background: #fff;
}

.launch-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--tz-black);
}

.launch-page {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
}

.launch-hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(70px, 9vw, 118px) 0 82px;
}

.launch-hero h1,
.launch-section h2 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: 0;
  color: var(--tz-black);
}

.launch-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
  font-weight: 700;
}

.launch-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--tz-muted);
  font-size: 18px;
}

.launch-badge,
.launch-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--tz-border);
  border-radius: 999px;
  background: var(--tz-gold-soft);
  color: var(--tz-gold-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.launch-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.launch-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.launch-trust span {
  padding: 9px 13px;
  border: 1px solid rgba(231, 220, 192, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--tz-muted);
  font-size: 13px;
  font-weight: 600;
}

.launch-hero-visual {
  position: relative;
  min-height: 560px;
}

.launch-hero-visual > img,
.launch-daily-card > img,
.launch-analysis-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-hero-visual > img {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: var(--tz-shadow);
}

.launch-floating-card {
  position: absolute;
  left: 26px;
  bottom: 28px;
  max-width: 380px;
  padding: 22px;
  border: 1px solid rgba(231, 220, 192, .86);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(5, 8, 11, .14);
}

.launch-floating-card strong {
  color: var(--tz-black);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.launch-floating-card p,
.launch-card-label {
  color: var(--tz-muted);
}

.launch-mini-stats {
  position: absolute;
  right: -18px;
  top: 34px;
  display: grid;
  gap: 10px;
  width: 190px;
}

.launch-mini-stats span {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(231, 220, 192, .92);
  background: rgba(255, 255, 255, .9);
  color: var(--tz-muted);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(5, 8, 11, .1);
}

.launch-mini-stats strong {
  display: block;
  color: var(--tz-black);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.launch-section {
  padding: clamp(76px, 9vw, 112px) 0;
}

.launch-section-soft {
  position: relative;
}

.launch-section-soft::before {
  content: "";
  position: absolute;
  inset: 32px max(-50vw, -120px);
  z-index: -1;
  background: linear-gradient(180deg, rgba(251, 244, 223, .72), rgba(243, 242, 238, .7));
}

.launch-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.launch-section-head h2,
.launch-pass h2,
.launch-newsletter h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 600;
}

.launch-section-head p,
.launch-pass p,
.launch-newsletter p {
  margin: 14px 0 0;
  color: var(--tz-muted);
  font-size: 17px;
}

.launch-daily-card {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 24px;
  border: 1px solid var(--tz-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--tz-shadow);
}

.launch-daily-card > img {
  min-height: 470px;
  border-radius: 24px;
}

.launch-daily-content {
  align-self: center;
  padding: clamp(4px, 2vw, 18px);
}

.launch-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--tz-muted);
  font-size: 13px;
  font-weight: 600;
}

.launch-daily-content h3,
.launch-tip-card h3,
.launch-analysis-card h3,
.launch-premium-card h3,
.launch-steps h3,
.launch-school-grid h3 {
  margin: 16px 0 10px;
  color: var(--tz-black);
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

.launch-daily-content h3 {
  font-size: clamp(30px, 4vw, 46px);
}

.launch-tip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.launch-tip-grid div,
.launch-result-grid div {
  padding: 15px;
  border: 1px solid rgba(231, 220, 192, .9);
  border-radius: 18px;
  background: #fff;
}

.launch-tip-grid span,
.launch-tip-row span,
.launch-result-grid span {
  display: block;
  color: var(--tz-muted);
  font-size: 12px;
  font-weight: 600;
}

.launch-tip-grid strong,
.launch-tip-row strong,
.launch-result-grid strong {
  display: block;
  margin-top: 3px;
  color: var(--tz-black);
  font-size: 16px;
}

.launch-text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--tz-gold-deep);
  font-weight: 700;
}

.launch-free-grid,
.launch-premium-grid,
.launch-steps,
.launch-school-grid,
.launch-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.launch-tip-card,
.launch-premium-card,
.launch-school-grid article,
.launch-steps article {
  padding: 22px;
  border: 1px solid var(--tz-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 21, 28, .06);
}

.launch-tip-card p,
.launch-premium-card p,
.launch-school-grid p,
.launch-steps p,
.launch-analysis-card p {
  color: var(--tz-muted);
}

.launch-tip-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(231, 220, 192, .7);
}

.launch-tip-row strong {
  text-align: right;
}

.launch-analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.launch-analysis-card {
  overflow: hidden;
  border: 1px solid var(--tz-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--tz-shadow);
}

.launch-analysis-card img {
  aspect-ratio: 1.42;
}

.launch-analysis-card div {
  padding: 22px;
}

.launch-analysis-card small {
  color: var(--tz-gold-deep);
  font-weight: 700;
}

.launch-badge-dark {
  background: var(--tz-graphite);
  border-color: var(--tz-graphite);
  color: var(--tz-gold-light);
}

.launch-premium-card {
  min-height: 330px;
}

.launch-locked,
.launch-unlocked {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--tz-gold-soft), #fff);
  border: 1px solid var(--tz-border);
}

.launch-locked strong,
.launch-unlocked strong {
  color: var(--tz-black);
}

.launch-pass {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(236, 208, 138, .12), transparent 35%),
    var(--tz-graphite);
  color: #fff;
  box-shadow: 0 30px 80px rgba(5, 8, 11, .18);
}

.launch-pass h2,
.launch-pass p {
  color: #fff;
}

.launch-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.launch-benefits span {
  padding: 13px 15px;
  border: 1px solid rgba(236, 208, 138, .25);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
}

.launch-price-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  color: var(--tz-black);
}

.launch-price-card p {
  margin: 0;
  color: var(--tz-muted);
  font-weight: 700;
}

.launch-price-card strong {
  display: block;
  margin: 10px 0 2px;
  font-family: "Manrope", sans-serif;
  font-size: 46px;
  line-height: 1;
}

.launch-price-card span,
.launch-price-card small {
  display: block;
  color: var(--tz-muted);
}

.launch-price-card .launch-button,
.launch-price-card form {
  width: 100%;
  margin: 22px 0 14px;
}

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

.launch-steps article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--tz-gold-soft);
  color: var(--tz-gold-deep);
  font-weight: 800;
}

.launch-result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.launch-result-grid div {
  padding: 22px;
}

.launch-result-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
}

.launch-result-table {
  overflow: hidden;
  border: 1px solid var(--tz-border);
  border-radius: 22px;
  background: #fff;
}

.launch-result-table div {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr .5fr .7fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(231, 220, 192, .72);
  color: var(--tz-muted);
}

.launch-result-table div:last-child {
  border-bottom: 0;
}

.launch-result-table span:first-child,
.launch-result-table strong {
  color: var(--tz-black);
}

.launch-result-table .is-won {
  color: var(--tz-gold-deep);
}

.launch-disclaimer {
  margin-top: 14px;
  color: var(--tz-muted);
  font-size: 13px;
}

.launch-school-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launch-newsletter {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--tz-border);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--tz-gold-soft), #fff 58%);
  box-shadow: var(--tz-shadow);
}

.launch-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.launch-newsletter-form label {
  display: grid;
  gap: 7px;
  color: var(--tz-muted);
  font-size: 13px;
  font-weight: 700;
}

.launch-newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--tz-border);
  border-radius: 16px;
  background: #fff;
  color: var(--tz-black);
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.launch-newsletter-form input:focus {
  border-color: var(--tz-gold);
  box-shadow: 0 0 0 4px rgba(213, 176, 86, .16);
}

.launch-faq {
  display: grid;
  gap: 12px;
}

.launch-faq details {
  border: 1px solid var(--tz-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 21, 28, .05);
}

.launch-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--tz-black);
  font-weight: 700;
}

.launch-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--tz-muted);
}

.launch-footer {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: 34px;
  padding: 54px 0 80px;
  border-top: 1px solid var(--tz-border);
  color: var(--tz-muted);
}

.launch-footer p {
  max-width: 640px;
}

.launch-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-weight: 600;
}

.launch-footer small {
  grid-column: 1 / -1;
  color: var(--tz-muted);
}

.launch-mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .launch-button:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .launch-header {
    grid-template-columns: auto auto;
  }

  .launch-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .launch-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 4px 2px;
  }

  .launch-nav.is-open {
    display: flex;
  }

  .launch-header-cta,
  .launch-header > .launch-inline-form {
    display: none;
  }

  .launch-hero,
  .launch-daily-card,
  .launch-pass,
  .launch-newsletter,
  .launch-footer {
    grid-template-columns: 1fr;
  }

  .launch-hero {
    min-height: 0;
  }

  .launch-hero-visual {
    min-height: 520px;
  }

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

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

  .launch-analysis-grid,
  .launch-premium-grid,
  .launch-steps {
    grid-template-columns: 1fr;
  }

  .launch-newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .launch-header,
  .launch-page,
  .launch-footer {
    width: min(100% - 24px, 1240px);
  }

  .launch-brand img {
    width: 42px;
    height: 42px;
  }

  .launch-hero {
    padding: 44px 0 56px;
  }

  .launch-hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .launch-hero-copy p,
  .launch-section-head p,
  .launch-pass p,
  .launch-newsletter p {
    font-size: 16px;
  }

  .launch-actions,
  .launch-actions .launch-button,
  .launch-actions .launch-inline-form,
  .launch-price-card .launch-inline-form,
  .launch-locked .launch-inline-form,
  .launch-newsletter-form .launch-button {
    width: 100%;
  }

  .launch-hero-visual {
    min-height: auto;
  }

  .launch-hero-visual > img {
    position: static;
    aspect-ratio: 1.05;
  }

  .launch-floating-card,
  .launch-mini-stats {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .launch-section {
    padding: 58px 0;
  }

  .launch-daily-card {
    padding: 14px;
    gap: 18px;
  }

  .launch-daily-card > img {
    min-height: 250px;
  }

  .launch-free-grid,
  .launch-tip-grid,
  .launch-benefits,
  .launch-school-grid,
  .launch-result-grid {
    grid-template-columns: 1fr;
  }

  .launch-tip-row {
    align-items: flex-start;
  }

  .launch-result-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .launch-newsletter,
  .launch-pass {
    border-radius: 26px;
    padding: 22px;
  }

  .launch-footer nav {
    justify-content: flex-start;
  }

  .launch-mobile-cta {
    position: sticky;
    bottom: 0;
    z-index: 90;
    display: block;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .92);
    border-top: 1px solid var(--tz-border);
    backdrop-filter: blur(16px);
  }

  .launch-mobile-cta .launch-button,
  .launch-mobile-cta .launch-inline-form {
    width: 100%;
  }
}

/* Final QA clamp: this must remain at the end of the stylesheet. */
.launch-body,
body.launch-body {
  background:
    radial-gradient(circle at 50% -120px, rgba(212, 175, 55, .22), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(245,243,238,.05), transparent 24%),
    linear-gradient(180deg, #080808 0%, #0D0D0D 34%, #151515 72%, #080808 100%) !important;
  color: #F5F3EE !important;
  font-family: "Montserrat", system-ui, sans-serif !important;
  overflow-x: hidden !important;
}

/* Image-led hero inspired by the approved header style */
.launch-hero {
  min-height: calc(100vh - 82px) !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) 0 !important;
  padding: clamp(170px, 15vw, 220px) max(8vw, calc((100vw - 1180px) / 2)) clamp(56px, 7vw, 92px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
  align-items: center !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 31%, rgba(0,0,0,.32) 58%, rgba(0,0,0,.76) 100%),
    linear-gradient(180deg, rgba(13,13,13,.34), rgba(13,13,13,.78)),
    url('/portal/assets/images/hero-player.jpg') center 42% / cover no-repeat !important;
  box-shadow: inset 0 -120px 130px rgba(13,13,13,.95), inset 0 92px 90px rgba(13,13,13,.45) !important;
}

.launch-hero::before {
  inset: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(212,175,55,.16) 24.15%, transparent 24.8% 74%, rgba(212,175,55,.10) 74.15%, transparent 74.7%),
    radial-gradient(circle at 70% 28%, rgba(212,175,55,.18), transparent 24%) !important;
  box-shadow: none !important;
  opacity: .82 !important;
}

.launch-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.78), transparent);
}

.launch-hero-copy {
  max-width: 680px !important;
  position: relative !important;
  z-index: 2 !important;
}

.launch-hero h1 {
  max-width: 760px !important;
  font-size: clamp(52px, 5vw, 78px) !important;
  line-height: .92 !important;
  text-shadow: 0 20px 48px rgba(0,0,0,.75) !important;
}

.launch-hero-copy p {
  max-width: 590px !important;
  color: rgba(245,243,238,.92) !important;
  font-size: 18px !important;
}

.launch-hero-visual {
  position: relative !important;
  z-index: 2 !important;
  min-height: 420px !important;
  display: grid !important;
  align-content: center !important;
  gap: 18px !important;
}

.launch-hero-visual > img {
  display: none !important;
}

.launch-hero-visual::after {
  display: none !important;
}

.launch-floating-card {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  max-width: none !important;
  width: 100% !important;
  padding: 26px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(25,25,25,.58), rgba(10,10,10,.42)) !important;
  border: 1px solid rgba(212,175,55,.52) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06) !important;
  backdrop-filter: blur(14px) saturate(1.18) !important;
}

.launch-floating-card strong {
  display: block;
  color: #D4AF37 !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.launch-floating-card p {
  margin: 16px 0 24px !important;
  color: #F5F3EE !important;
  font-size: 18px !important;
  text-align: center;
}

.launch-floating-card p span {
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.launch-floating-card b {
  color: #D4AF37;
  font-weight: 600;
}

.launch-matchup {
  display: grid;
  grid-template-columns: 44px auto min-content auto 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 18px;
  color: #F5F3EE;
  font-family: "Rajdhani", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .03em;
}

.launch-matchup small {
  color: rgba(245,243,238,.72);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.launch-flag {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,.24);
  overflow: hidden;
}

.launch-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.launch-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(212,175,55,.46);
  border-radius: 7px;
  color: #F5F3EE !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.launch-card-button::after {
  content: "›";
  margin-left: 12px;
  color: #D4AF37;
  font-size: 26px;
  line-height: 0;
}

.launch-mini-stats {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  width: 100% !important;
  display: grid !important;
  gap: 14px !important;
}

.launch-mini-stats span {
  display: grid !important;
  grid-template-columns: 54px 1fr !important;
  column-gap: 14px !important;
  align-items: center !important;
  min-height: 82px !important;
  padding: 16px 18px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(25,25,25,.52), rgba(10,10,10,.36)) !important;
  border-color: rgba(212,175,55,.48) !important;
  backdrop-filter: blur(14px) saturate(1.18) !important;
}

.launch-mini-stats strong {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,.55);
  border-radius: 999px;
  color: #D4AF37 !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 22px !important;
}

.launch-mini-stats em {
  color: #F5F3EE;
  font-style: normal;
  font-weight: 500;
}

.launch-mini-stats small {
  color: rgba(245,243,238,.62);
  font-size: 13px;
  font-weight: 400;
}

/* Hero glass panels */
.launch-floating-card,
.launch-mini-stats span {
  background: rgba(10, 10, 14, .45) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.12) !important;
  backdrop-filter: blur(12px) saturate(1.12) !important;
  border: 1px solid rgba(212, 170, 59, .25) !important;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .06),
    inset 0 -1px 0 rgba(212, 170, 59, .08) !important;
}

.launch-floating-card::before,
.launch-mini-stats span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%, rgba(212,170,59,.07));
  opacity: .72;
}

.launch-mini-stats span {
  position: relative;
  overflow: hidden;
}

.launch-floating-card > *,
.launch-mini-stats span > * {
  position: relative;
  z-index: 1;
}

/* Softer hero overlay: remove harsh diagonal columns */
.launch-hero::before {
  background:
    radial-gradient(circle at 64% 22%, rgba(212, 170, 59, .13), transparent 28%),
    radial-gradient(circle at 32% 38%, rgba(245, 243, 238, .055), transparent 24%),
    linear-gradient(90deg, rgba(0,0,0,.26), transparent 38%, rgba(0,0,0,.34)) !important;
  opacity: .78 !important;
}

@media (max-width: 900px) {
  .launch-hero::before {
    background:
      radial-gradient(circle at 55% 24%, rgba(212, 170, 59, .11), transparent 30%),
      linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.30) 48%, rgba(0,0,0,.84)) !important;
  }
}

/* Force transparent glass on hero right-side panels */
.launch-hero .launch-floating-card,
.launch-hero .launch-mini-stats span {
  background: rgba(10, 10, 14, .28) !important;
  background-color: rgba(10, 10, 14, .28) !important;
  -webkit-backdrop-filter: blur(3px) saturate(1.18) !important;
  backdrop-filter: blur(3px) saturate(1.18) !important;
  border: 1px solid rgba(212, 170, 59, .34) !important;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -1px 0 rgba(212, 170, 59, .10) !important;
}

.launch-hero .launch-floating-card::before,
.launch-hero .launch-mini-stats span::before {
  background: linear-gradient(135deg, rgba(255,255,255,.07), transparent 42%, rgba(212,170,59,.05)) !important;
  opacity: .55 !important;
}

.launch-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px !important;
}

.launch-trust span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 18px rgba(212,175,55,.8);
}

html,
body {
  overflow-x: hidden !important;
}

.launch-header {
  min-height: 86px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)), #0D0D0D !important;
  border-color: rgba(212,175,55,.2) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.52), inset 0 -1px 0 rgba(212,175,55,.22) !important;
}

.launch-brand img {
  width: 172px !important;
  height: 108px !important;
  margin: -27px 0 -25px -12px !important;
}

.launch-nav a.is-active,
.launch-nav a:hover,
.launch-text-link {
  color: #D4AF37 !important;
}

.launch-nav a.is-active::after {
  transform: scaleX(1) !important;
}

.launch-hero::before {
  left: 0 !important;
  right: 0 !important;
}

.launch-hero h1,
.launch-section h2,
.launch-daily-content h3,
.launch-tip-card h3,
.launch-analysis-card h3,
.launch-premium-card h3,
.launch-steps h3,
.launch-school-grid h3 {
  color: #F5F3EE !important;
  font-family: "Rajdhani", "Montserrat", sans-serif !important;
}

.launch-section-soft::before {
  background:
    linear-gradient(180deg, rgba(212,175,55,.06), rgba(0,0,0,.22)),
    #111 !important;
  opacity: 1 !important;
}

.launch-trust span {
  background: rgba(13,13,13,.78) !important;
  border-color: rgba(212,175,55,.28) !important;
  color: #F5F3EE !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.24) !important;
}

.launch-floating-card,
.launch-mini-stats span,
.launch-daily-card,
.launch-tip-card,
.launch-analysis-card,
.launch-premium-card,
.launch-school-grid article,
.launch-steps article,
.launch-result-grid div,
.launch-result-table,
.launch-newsletter,
.launch-faq details {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), #151515 !important;
  border-color: rgba(212,175,55,.22) !important;
}

.launch-button-secondary {
  background: rgba(13,13,13,.72) !important;
  color: #F5F3EE !important;
  border-color: rgba(212,175,55,.55) !important;
}

.launch-mobile-cta {
  background: rgba(13,13,13,.94) !important;
  border-top-color: rgba(212,175,55,.22) !important;
}

@media (max-width: 1100px) {
  .launch-header {
    grid-template-columns: 1fr auto !important;
    min-height: 78px !important;
  }

  .launch-brand img {
    width: 142px !important;
    height: 90px !important;
    margin: -20px 0 -19px -8px !important;
  }

  .launch-nav {
    display: none !important;
    grid-column: 1 / -1 !important;
    background: rgba(255,255,255,.03) !important;
  }

  .launch-nav.is-open {
    display: flex !important;
  }

  .launch-header-cta {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .launch-brand img {
    width: 118px !important;
    height: 76px !important;
    margin: -16px 0 -15px -6px !important;
  }

  .launch-hero {
    grid-template-columns: 1fr !important;
  }

  .launch-hero::before {
    left: 0 !important;
    right: 0 !important;
  }

  .launch-hero h1 {
    font-size: clamp(42px, 13vw, 58px) !important;
  }
}

@media (max-width: 900px) {
  .launch-page {
    width: min(100% - 24px, 1240px) !important;
    margin-top: -98px !important;
  }

  .launch-header {
    margin-top: 12px !important;
  }

  .launch-hero {
    margin: -6px calc(50% - 50vw) 0 !important;
    padding: 128px 18px 46px !important;
    grid-template-columns: 1fr !important;
    background-position: 58% center !important;
  }

  .launch-hero::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.34) 48%, rgba(0,0,0,.86)),
      linear-gradient(115deg, transparent 0 30%, rgba(212,175,55,.12) 30.15%, transparent 31%) !important;
  }

  .launch-hero-copy {
    max-width: 100% !important;
  }

  .launch-hero-copy p {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  .launch-hero-visual {
    min-height: auto !important;
  }

  .launch-mini-stats span {
    min-height: 76px !important;
  }
}

@media (max-width: 680px) {
  .launch-page {
    margin-top: -88px !important;
  }

  .launch-hero {
    padding: 118px 12px 44px !important;
    background-position: 60% center !important;
  }

  .launch-header {
    margin-top: 10px !important;
    border-color: rgba(212,175,55,.5) !important;
  }

  .launch-brand img {
    width: 130px !important;
    height: 84px !important;
    margin: -20px 0 -18px -12px !important;
  }

  .launch-hero h1 {
    font-size: clamp(40px, 12vw, 54px) !important;
  }

  .launch-hero h1::after {
    font-size: clamp(23px, 7.4vw, 31px) !important;
  }

  .launch-floating-card {
    padding: 20px !important;
  }

  .launch-floating-card p {
    text-align: left !important;
    font-size: 16px !important;
  }

  .launch-matchup {
    grid-template-columns: 38px auto min-content auto 38px;
    gap: 10px;
    justify-content: start;
    font-size: 22px;
  }

  .launch-flag {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .launch-floating-card p span {
    font-size: 24px !important;
  }
}

/* Typography weight polish */
.launch-nav,
.launch-nav a {
  font-weight: 500 !important;
}

.launch-nav {
  font-size: 13px !important;
}

.launch-header-cta {
  font-size: 17px !important;
}

.launch-header-cta {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.launch-button,
.launch-header-cta,
.launch-badge,
.launch-kicker,
.launch-trust span,
.launch-card-meta,
.launch-tip-grid span,
.launch-tip-row span,
.launch-result-grid span,
.launch-text-link,
.launch-analysis-card small,
.launch-newsletter-form label,
.launch-faq summary,
.launch-footer nav {
  font-weight: 500 !important;
}

.launch-hero h1,
.launch-section h2,
.launch-pass h2,
.launch-newsletter h2 {
  font-weight: 600 !important;
}

.launch-daily-content h3,
.launch-tip-card h3,
.launch-analysis-card h3,
.launch-premium-card h3,
.launch-steps h3,
.launch-school-grid h3 {
  font-weight: 600 !important;
}

header.launch-header > a.launch-header-cta,
.launch-header .launch-header-cta,
a.launch-button.launch-button-primary.launch-header-cta {
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Hero conversion offer card */
.launch-hero .launch-offer-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  max-width: 430px !important;
  margin-left: auto !important;
  padding: 30px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 22% 0%, rgba(212,175,55,.20), transparent 30%),
    linear-gradient(180deg, rgba(20,20,22,.68), rgba(7,7,9,.46)) !important;
  background-color: rgba(10, 10, 14, .48) !important;
  border: 1px solid rgba(212, 170, 59, .42) !important;
  border-radius: 22px !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.18) !important;
  backdrop-filter: blur(14px) saturate(1.18) !important;
  box-shadow:
    0 26px 80px rgba(0,0,0,.42),
    0 0 34px rgba(212,175,55,.10),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.launch-hero .launch-offer-card::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 40%, rgba(212,170,59,.08)) !important;
  opacity: .78 !important;
}

.launch-offer-badge {
  align-self: flex-start;
  padding: 8px 12px;
  border: 1px solid rgba(212,175,55,.48);
  border-radius: 999px;
  background: rgba(212,175,55,.16);
  color: #D4AF37;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(212,175,55,.16);
}

.launch-offer-card h2 {
  margin: 0;
  color: #F5F3EE;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: .92;
  font-weight: 700 !important;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.launch-offer-lead {
  margin: -4px 0 2px !important;
  color: rgba(245,243,238,.88) !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

.launch-offer-price {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 12px 0 8px;
}

.launch-offer-price strong {
  color: #D4AF37 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: clamp(58px, 6vw, 78px) !important;
  font-weight: 700 !important;
  line-height: .78;
  letter-spacing: .01em;
  text-shadow: 0 0 30px rgba(212,175,55,.22);
}

.launch-offer-price del {
  color: rgba(245,243,238,.46);
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-decoration-thickness: 2px;
}

.launch-floating-card .launch-offer-urgent,
.launch-floating-card .launch-offer-copy {
  margin: 0 !important;
  text-align: left !important;
}

.launch-floating-card .launch-offer-urgent {
  color: #F5F3EE !important;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.45 !important;
}

.launch-floating-card .launch-offer-copy {
  color: rgba(245,243,238,.76) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.launch-offer-list {
  display: grid;
  gap: 9px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.launch-offer-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(245,243,238,.90);
  font-size: 14px;
  font-weight: 600;
}

.launch-offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #D4AF37;
  font-weight: 700;
}

.launch-offer-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.launch-offer-actions .launch-inline-form {
  width: 100%;
}

.launch-offer-cta {
  width: 100% !important;
  min-height: 52px !important;
  justify-content: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  box-shadow: 0 16px 34px rgba(212,175,55,.22) !important;
}

.launch-offer-link {
  display: inline-flex;
  justify-content: center;
  color: rgba(245,243,238,.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.launch-offer-link:hover {
  color: #D4AF37;
}

.launch-offer-card small {
  display: block;
  color: rgba(245,243,238,.52);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .launch-hero .launch-offer-card {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 680px) {
  .launch-hero .launch-offer-card {
    padding: 22px !important;
    gap: 12px !important;
  }

  .launch-offer-card h2 {
    font-size: 42px;
  }

  .launch-offer-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .launch-offer-price strong {
    font-size: 58px !important;
  }

  .launch-offer-price del {
    font-size: 24px;
  }
}

/* Poster-style VB Pass hero card */
.launch-hero .launch-offer-card {
  position: relative !important;
  align-self: center !important;
  width: min(100%, 380px) !important;
  max-width: 390px !important;
  min-height: 0 !important;
  margin: -34px 4px 0 auto !important;
  padding: 50px 26px 20px !important;
  gap: 9px !important;
  text-align: center !important;
  overflow: visible !important;
  background:
    radial-gradient(circle at 50% -8%, rgba(255,221,92,.20), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(212,175,55,.14), transparent 26%),
    linear-gradient(180deg, rgba(22,22,22,.76), rgba(6,6,7,.55)) !important;
  background-color: rgba(8, 8, 10, .50) !important;
  border: 1px solid rgba(244, 208, 94, .68) !important;
  border-radius: 24px !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.035),
    0 28px 80px rgba(0,0,0,.50),
    0 0 42px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(212,175,55,.18) !important;
}

.launch-hero .launch-hero-visual {
  align-content: start !important;
  padding-top: 0 !important;
  overflow: visible !important;
}

.launch-hero .launch-offer-card::after {
  display: none !important;
  content: none !important;
}

.launch-hero .launch-offer-card > * {
  position: relative;
  z-index: 1;
}

.launch-offer-badge {
  position: absolute !important;
  top: -25px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 20px 7px 13px !important;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid rgba(255, 232, 120, .85) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #f7dc61 0%, #d4af37 52%, #a77708 100%) !important;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0 50%);
  color: #0D0D0D !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.02;
  letter-spacing: .04em !important;
  text-align: left;
  box-shadow: 0 12px 30px rgba(212,175,55,.28), inset 0 1px 0 rgba(255,255,255,.40) !important;
}

.launch-offer-badge::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255,232,120,.65);
  border-radius: 12px;
  background:
    url('/portal/assets/images/offer-flame.png') center / 22px 22px no-repeat,
    #111;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.launch-offer-card h2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 11px;
  margin-top: 0 !important;
  font-size: clamp(43px, 3.8vw, 54px) !important;
  line-height: .88 !important;
  letter-spacing: .01em !important;
  white-space: nowrap;
  text-shadow: 0 4px 20px rgba(0,0,0,.45);
}

.launch-offer-card h2 span {
  color: #F4D14D;
  text-shadow: 0 0 24px rgba(244,209,77,.30);
}

.launch-offer-lead {
  margin: 4px 0 0 !important;
  color: #F5F3EE !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

.launch-offer-price {
  display: grid !important;
  justify-items: center !important;
  gap: 6px !important;
  padding: 2px 0 0 !important;
}

.launch-offer-price strong {
  white-space: nowrap;
  color: #FFD94A !important;
  font-size: clamp(72px, 6.2vw, 90px) !important;
  line-height: .76 !important;
  letter-spacing: -.045em !important;
  text-shadow:
    0 2px 0 #7b5a06,
    0 0 18px rgba(255,217,74,.38),
    0 0 44px rgba(212,175,55,.32) !important;
}

.launch-offer-price del {
  color: rgba(245,243,238,.58) !important;
  font-size: 27px !important;
  line-height: 1 !important;
  text-decoration-color: rgba(255, 217, 74, .72);
  text-decoration-thickness: 3px !important;
}

.launch-floating-card .launch-offer-urgent {
  margin: 2px 0 2px !important;
  color: #F5F3EE !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.32 !important;
  text-align: center !important;
}

.launch-floating-card .launch-offer-urgent br + * {
  color: #FFD94A;
}

.launch-offer-list {
  margin-top: 4px !important;
  border-top: 0 !important;
}

.launch-offer-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 33px;
  padding: 6px 0 6px 38px !important;
  border-bottom: 0 !important;
  color: #F5F3EE !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: left;
}

.launch-offer-list li::after {
  display: none !important;
}

/* VB Pass sales landing overrides */
.launch-sales .launch-header {
  grid-template-columns: 210px minmax(0, 1fr) auto !important;
}

.launch-sales .launch-nav {
  justify-content: center !important;
}

.launch-sales .launch-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px) !important;
  gap: clamp(34px, 6vw, 88px) !important;
}

.launch-sales .launch-hero h1::after {
  display: none !important;
  content: none !important;
}

.launch-sales .launch-hero h1 {
  max-width: 680px !important;
  font-size: clamp(52px, 5.7vw, 86px) !important;
}

.launch-sales .launch-hero-copy h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: #D4AF37;
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.launch-sales .launch-hero-copy p {
  max-width: 670px !important;
  margin: 18px 0 0;
  font-size: 17px !important;
  line-height: 1.72;
}

.launch-hero-price {
  display: inline-grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(212,175,55,.34);
  border-radius: 16px;
  background: rgba(10,10,14,.42);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}

.launch-hero-price span {
  color: #D4AF37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.launch-hero-price strong {
  color: #FFD94A;
  font-family: "Rajdhani", sans-serif;
  font-size: 56px;
  line-height: .85;
  text-shadow: 0 0 26px rgba(255,217,74,.22);
}

.launch-hero-price small,
.launch-hero-disclaimer {
  color: rgba(245,243,238,.68) !important;
}

.launch-sales .launch-actions {
  margin-top: 24px;
}

.launch-trust-row {
  width: min(100%, 1240px);
  margin: -28px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.launch-trust-row article,
.launch-benefit-grid article,
.launch-audience article,
.launch-sales-package {
  border: 1px solid rgba(212,175,55,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), #151515;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.launch-trust-row article {
  padding: 20px;
  border-radius: 18px;
}

.launch-trust-row strong {
  display: block;
  color: #F5F3EE;
  font-weight: 600;
}

.launch-trust-row span {
  display: block;
  margin-top: 6px;
  color: rgba(245,243,238,.68);
  font-size: 14px;
}

.launch-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.launch-benefit-grid article {
  padding: 22px;
  border-radius: 18px;
}

.launch-benefit-grid h3,
.launch-audience h2 {
  margin: 0 0 10px;
  color: #F5F3EE;
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.launch-benefit-grid p {
  margin: 0;
  color: rgba(245,243,238,.70);
  line-height: 1.65;
}

.launch-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.launch-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.launch-audience article {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 22px;
}

.launch-audience ul,
.launch-sales-package ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-audience li,
.launch-sales-package li {
  position: relative;
  padding-left: 28px;
  color: rgba(245,243,238,.82);
  line-height: 1.55;
}

.launch-audience li::before,
.launch-sales-package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #D4AF37;
  font-weight: 700;
}

.launch-daily-card-compact {
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr) !important;
}

.launch-upsell-text {
  color: #F5F3EE !important;
  font-weight: 600;
}

.launch-sales-package {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 26px;
  text-align: center;
}

.launch-sales-package h2 {
  margin: 10px 0;
  color: #F5F3EE;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .92;
  text-transform: uppercase;
}

.launch-sales-package > p {
  color: rgba(245,243,238,.72);
}

.launch-package-price {
  display: grid;
  gap: 8px;
  margin: 24px auto;
}

.launch-package-price strong {
  color: #FFD94A;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(76px, 8vw, 104px);
  line-height: .8;
  text-shadow: 0 0 34px rgba(255,217,74,.28);
}

.launch-package-price span {
  color: rgba(245,243,238,.65);
  font-size: 18px;
}

.launch-sales-package ul {
  width: min(100%, 390px);
  margin: 0 auto 28px;
  text-align: left;
}

.launch-package-cta {
  width: min(100%, 360px);
  min-height: 58px !important;
  font-size: 18px !important;
}

.launch-sales-package small {
  display: block;
  margin-top: 16px;
  color: rgba(245,243,238,.55);
  line-height: 1.5;
}

.launch-result-grid-simple div {
  display: grid;
  gap: 7px;
}

.launch-result-grid-simple strong {
  color: #D4AF37 !important;
  font-size: 18px !important;
}

.launch-sales .launch-school-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.launch-sales .launch-mobile-cta {
  display: none;
}

.launch-mobile-cta span {
  color: #F5F3EE;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .launch-sales .launch-header {
    grid-template-columns: 1fr auto !important;
  }

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

@media (max-width: 900px) {
  .launch-sales .launch-hero {
    grid-template-columns: 1fr !important;
  }

  .launch-trust-row,
  .launch-audience,
  .launch-daily-card-compact {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-hero-copy h2 {
    font-size: 28px;
  }

  .launch-benefit-grid,
  .launch-sales .launch-school-grid {
    grid-template-columns: 1fr !important;
  }

  .launch-sales .launch-mobile-cta {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(212,175,55,.28);
    background: rgba(13,13,13,.96) !important;
    backdrop-filter: blur(14px);
  }

  .launch-sales {
    padding-bottom: 82px;
  }
}

.launch-offer-list li::before {
  top: 50% !important;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid #FFD94A;
  border-radius: 50%;
  color: #FFD94A !important;
  font-size: 13px;
}

.launch-offer-actions {
  margin-top: 8px !important;
}

.launch-offer-cta {
  min-height: 54px !important;
  border-radius: 8px !important;
  color: #0D0D0D !important;
  font-size: 21px !important;
  letter-spacing: .05em !important;
  background: linear-gradient(180deg, #ffe66b 0%, #D4AF37 58%, #b8860b 100%) !important;
  box-shadow: 0 0 28px rgba(255,217,74,.28), inset 0 1px 0 rgba(255,255,255,.48) !important;
}

.launch-offer-cta::after {
  content: "››";
  margin-left: 14px;
  font-size: 28px;
  line-height: 0;
}

.launch-offer-link {
  display: none !important;
  margin-top: 2px;
  color: rgba(245,243,238,.64) !important;
}

.launch-offer-card small {
  display: none !important;
  margin-top: 0;
  color: rgba(245,243,238,.44) !important;
  font-size: 10px !important;
  text-align: center;
}

@media (max-width: 1100px) {
  .launch-hero .launch-offer-card {
    margin: 38px auto 0 !important;
  }
}

@media (max-width: 680px) {
  .launch-hero .launch-offer-card {
    width: 100% !important;
    min-height: 0 !important;
    padding: 54px 20px 22px !important;
  }

  .launch-offer-badge {
    font-size: 16px !important;
    min-height: 54px;
  }

  .launch-offer-card h2 {
    font-size: clamp(44px, 14vw, 58px) !important;
    gap: 9px;
  }

  .launch-offer-price strong {
    font-size: clamp(76px, 22vw, 96px) !important;
  }
}

@media (max-width: 680px) {
  html,
  body,
  .launch-sales {
    max-width: 100%;
    overflow-x: hidden;
  }

  .launch-sales .launch-shell,
  .launch-sales .launch-hero,
  .launch-sales .launch-hero-copy,
  .launch-sales .launch-hero-panel {
    min-width: 0 !important;
    width: min(100%, calc(100vw - 28px)) !important;
  }

  .launch-sales .launch-hero-copy {
    max-width: min(320px, calc(100vw - 48px)) !important;
  }

  .launch-sales .launch-hero h1 {
    max-width: calc(100vw - 48px) !important;
    font-size: clamp(43px, 12vw, 54px) !important;
    line-height: .98 !important;
    overflow-wrap: normal;
  }

  .launch-sales .launch-hero-copy h2 {
    max-width: calc(100vw - 48px) !important;
    font-size: clamp(24px, 6.8vw, 28px) !important;
    line-height: 1.05 !important;
    overflow-wrap: normal;
  }

  .launch-sales .launch-hero-copy p,
  .launch-hero-price,
  .launch-hero-disclaimer {
    max-width: min(320px, calc(100vw - 48px)) !important;
    box-sizing: border-box;
  }

  .launch-sales .launch-hero-copy p {
    font-size: 15.5px !important;
    line-height: 1.62 !important;
  }

  .launch-hero .launch-offer-card {
    width: min(100%, calc(100vw - 48px)) !important;
    max-width: 320px !important;
    justify-self: center;
    box-sizing: border-box;
  }

  .launch-offer-card h2 {
    font-size: clamp(36px, 10vw, 42px) !important;
    white-space: nowrap;
  }

  .launch-offer-price strong {
    font-size: clamp(60px, 17vw, 72px) !important;
  }

  .launch-sales .launch-mobile-cta {
    width: 100vw !important;
    max-width: 100vw;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .launch-sales .launch-mobile-cta span {
    min-width: 0;
    font-size: 14px;
  }

  .launch-sales .launch-mobile-cta strong {
    flex: 0 0 auto;
    min-width: 96px;
    padding: 13px 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffe66b 0%, #D4AF37 58%, #b8860b 100%);
    color: #0D0D0D;
    font-family: "Rajdhani", sans-serif;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

/* Final conversion QA pass */
.launch-sales .reveal,
.launch-sales .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.launch-sales .launch-page {
  padding-bottom: 0 !important;
}

.launch-sales .launch-hero {
  min-height: min(900px, calc(100vh - 34px)) !important;
  padding-top: clamp(132px, 11vw, 172px) !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

.launch-sales .launch-section {
  padding: clamp(58px, 7vw, 86px) 0 !important;
}

.launch-sales .launch-section + .launch-section {
  border-top: 1px solid rgba(212, 175, 55, .10);
}


.launch-sales .launch-section-head {
  margin-bottom: 28px !important;
}

.launch-sales .launch-section-head p,
.launch-sales .launch-hero-copy p,
.launch-sales .launch-hero-disclaimer,
.launch-sales .launch-sales-package > p,
.launch-sales .launch-sales-package small,
.launch-sales .launch-faq p,
.launch-sales .launch-footer p,
.launch-sales .launch-footer small {
  color: rgba(245, 243, 238, .82) !important;
}

.launch-sales .launch-benefit-grid article,
.launch-sales .launch-steps article,
.launch-sales .launch-faq details,
.launch-sales .launch-sales-package,
.launch-sales .launch-hero-price,
.launch-sales .launch-offer-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.070), rgba(255,255,255,.026)),
    rgba(18, 18, 18, .86) !important;
  border-color: rgba(212, 175, 55, .34) !important;
}

.launch-sales .launch-benefit-grid h3,
.launch-sales .launch-steps h3,
.launch-sales .launch-faq summary {
  color: #F5F3EE !important;
}

.launch-sales .launch-benefit-grid p,
.launch-sales .launch-steps p {
  color: rgba(245, 243, 238, .76) !important;
}

.launch-sales #mit-kapsz {
  scroll-margin-top: 128px;
}

.launch-sales #vb-pass,
.launch-sales #hogyan-mukodik,
.launch-sales #faq {
  scroll-margin-top: 116px;
}

@media (min-width: 901px) {
  .launch-sales .launch-hero-visual {
    transform: translateY(18px);
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-hero {
    min-height: auto !important;
    padding-top: 116px !important;
    padding-bottom: 42px !important;
  }

  .launch-sales .launch-section {
    padding: 46px 0 !important;
  }

  .launch-sales .launch-header {
    width: calc(100% - 24px) !important;
  }

  .launch-sales .launch-mobile-cta {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;
    text-decoration: none !important;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, .48);
  }

  .launch-sales .launch-mobile-cta strong {
    min-width: 108px;
  }
}

/* Sticky header + simplified mobile CTA */
.launch-sales .launch-header {
  position: sticky !important;
  top: 18px !important;
  z-index: 200 !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
}

.launch-sales #kezdolap,
.launch-sales #mit-kapsz,
.launch-sales #vb-pass,
.launch-sales #hogyan-mukodik,
.launch-sales #faq {
  scroll-margin-top: 136px;
}

@media (max-width: 680px) {
  .launch-sales .launch-header {
    top: 10px !important;
  }

  .launch-sales .launch-mobile-cta {
    justify-content: center !important;
    text-align: center !important;
  }

  .launch-sales .launch-mobile-cta span {
    width: 100%;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .launch-sales .launch-mobile-cta strong {
    display: none !important;
  }
}

/* Humanized VB Pass access preview */
.launch-sales .launch-access-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.launch-sales .launch-sample-tip,
.launch-sales .launch-access-cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .30);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018)),
    rgba(15, 15, 16, .74);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.launch-sales .launch-sample-tip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(212, 175, 55, .18), transparent 32%),
    linear-gradient(90deg, rgba(212, 175, 55, .10), transparent 44%);
  pointer-events: none;
}

.launch-sales .launch-sample-tip > *,
.launch-sales .launch-access-cards article > * {
  position: relative;
  z-index: 1;
}

.launch-sales .launch-sample-tip {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
}

.launch-sales .launch-sample-label,
.launch-sales .launch-sample-tip small,
.launch-sales .launch-sample-tip em {
  color: #D4AF37;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.launch-sales .launch-sample-match,
.launch-sales .launch-sample-pick {
  display: grid;
  gap: 6px;
}

.launch-sales .launch-sample-match span,
.launch-sales .launch-sample-pick span {
  color: rgba(245, 243, 238, .58);
  font-size: 13px;
  font-weight: 600;
}

.launch-sales .launch-sample-match strong {
  color: #F5F3EE;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: .96;
  text-transform: uppercase;
}

.launch-sales .launch-sample-pick strong {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, .40);
  border-radius: 14px;
  color: #FFD94A;
  background: rgba(212, 175, 55, .08);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.launch-sales .launch-sample-tip p {
  max-width: 680px;
  margin: 2px 0 0;
  color: rgba(245, 243, 238, .84);
  font-size: 17px;
  line-height: 1.75;
}

.launch-sales .launch-sample-tip small {
  color: rgba(245, 243, 238, .64);
  letter-spacing: .04em;
  text-transform: none;
}

.launch-sales .launch-sample-tip em {
  width: fit-content;
  margin-top: 4px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, .22);
  color: rgba(245, 243, 238, .58);
  background: rgba(0, 0, 0, .18);
  font-size: 11px;
  letter-spacing: .04em;
}

.launch-sales .launch-access-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.launch-sales .launch-access-cards article {
  min-height: 118px;
  padding: 22px 24px;
  border-radius: 20px;
}

.launch-sales .launch-access-cards article:nth-child(2),
.launch-sales .launch-access-cards article:nth-child(4) {
  transform: translateX(18px);
}

.launch-sales .launch-access-cards h3 {
  margin: 0 0 8px;
  color: #F5F3EE;
  font-family: "Rajdhani", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
}

.launch-sales .launch-access-cards p {
  margin: 0;
  color: rgba(245, 243, 238, .74);
  font-size: 15.5px;
  line-height: 1.65;
}

.launch-sales .launch-access-cta {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.launch-sales .launch-access-cta small {
  color: rgba(245, 243, 238, .54);
  font-size: 13px;
}

@media (max-width: 980px) {
  .launch-sales .launch-access-preview {
    grid-template-columns: 1fr;
  }

  .launch-sales .launch-access-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-sales .launch-access-cards article:nth-child(2),
  .launch-sales .launch-access-cards article:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-sample-tip {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .launch-sales .launch-access-cards {
    grid-template-columns: 1fr;
  }

  .launch-sales .launch-access-cards article {
    min-height: 0;
    padding: 20px;
  }

  .launch-sales .launch-access-cards h3 {
    font-size: 24px;
  }
}

/* Premium internal tip feed */
.app-body {
  --portal-bg: #070707;
  --portal-bg-2: #0b0b0d;
  --portal-panel: #111113;
  --portal-card: #141416;
  --portal-card-2: #171717;
  --portal-border: rgba(217, 158, 75, .20);
  --portal-border-strong: rgba(217, 158, 75, .45);
  --portal-gold: #d99e4b;
  --portal-gold-2: #d4af37;
  --portal-text: #f4f4f5;
  --portal-muted: #a1a1aa;
  --portal-soft: #71717a;
  background:
    radial-gradient(circle at 82% -10%, rgba(217, 158, 75, .10), transparent 28rem),
    linear-gradient(180deg, var(--portal-bg-2), var(--portal-bg));
  color: var(--portal-text);
}

.app-shell {
  grid-template-columns: 244px minmax(0, 1fr);
}

.sidebar {
  padding: 20px 14px;
  background: linear-gradient(180deg, #0b0b0d, #070707);
  border-right: 1px solid var(--portal-border);
  box-shadow: none;
}

.brand {
  justify-content: center;
  padding: 0 8px 16px;
  border-bottom: 1px solid rgba(217, 158, 75, .14);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border-color: rgba(217, 158, 75, .26);
}

.brand span {
  color: var(--portal-gold);
  font-size: 15px;
  letter-spacing: .12em;
}

.nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  background: transparent;
  color: var(--portal-muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a:first-child,
.nav a:hover {
  color: var(--portal-text);
  border-color: var(--portal-border);
  background: rgba(217, 158, 75, .08);
}

.nav-section {
  color: var(--portal-gold);
}

.sidebar-legal {
  border-color: var(--portal-border);
  border-radius: 14px;
  background: #111113;
  color: var(--portal-muted);
  line-height: 1.55;
}

.logout-button {
  border-color: var(--portal-border);
  border-radius: 12px;
  background: #111113;
  color: var(--portal-gold);
}

.app-main {
  padding: 18px 22px;
}

.topbar {
  min-height: 66px;
  grid-template-columns: auto auto minmax(180px, 1fr) auto;
  gap: 14px;
  padding: 10px 14px;
  border-color: var(--portal-border);
  border-radius: 18px;
  background: rgba(17, 17, 19, .92);
  box-shadow: none;
}

.top-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.top-logo span,
.portal-title strong {
  color: var(--portal-text);
  font-weight: 600;
}

.portal-title {
  width: fit-content;
  min-height: 42px;
  border-color: rgba(217, 158, 75, .14);
  background: rgba(255, 255, 255, .03);
  color: var(--portal-muted);
}

.top-actions {
  gap: 8px;
}

.user-chip {
  min-height: 42px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  color: var(--portal-text);
  background: rgba(255,255,255,.03);
}

.user-chip img,
.avatar {
  border-color: var(--portal-border);
}

.gold-button,
.ghost-button {
  border-radius: 12px;
  font-weight: 600;
  box-shadow: none;
}

.gold-button {
  background: var(--portal-gold);
  color: #070707;
}

.gold-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.ghost-button {
  border-color: var(--portal-border);
  background: rgba(217, 158, 75, .06);
  color: var(--portal-gold);
}

.tips-feed-page {
  padding-top: 18px;
}

.portal-hero-head {
  margin: 12px 0 16px;
  padding: 20px;
  align-items: center;
  border: 1px solid var(--portal-border);
  border-radius: 18px;
  background: #111113;
}

.portal-hero-head h1 {
  margin-top: 7px;
  color: var(--portal-text);
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: 600;
}

.portal-hero-head p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--portal-muted);
  line-height: 1.65;
}

.portal-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.portal-stat-card {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--portal-border);
  border-radius: 16px;
  background: var(--portal-card);
}

.portal-stat-card span {
  color: var(--portal-muted);
  font-size: 13px;
  font-weight: 500;
}

.portal-stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--portal-gold);
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.tip-filter-bar {
  position: sticky;
  top: 84px;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(132px, .8fr));
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--portal-border);
  border-radius: 18px;
  background: rgba(17, 17, 19, .96);
  backdrop-filter: blur(14px);
}

.tip-filter-bar label {
  color: var(--portal-muted);
  font-size: 12px;
  font-weight: 600;
}

.tip-filter-bar input,
.tip-filter-bar select {
  min-height: 42px;
  border-color: rgba(255,255,255,.09);
  border-radius: 12px;
  background: #0d0d0f;
  color: var(--portal-text);
}

.filter-actions {
  display: flex;
  align-items: end;
  gap: 8px;
  grid-column: span 2;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.portal-tip-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(217,158,75,.18);
  border-radius: 18px;
  background: var(--portal-card);
  box-shadow: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.portal-tip-card:hover {
  border-color: var(--portal-border-strong);
  background: var(--portal-card-2);
  transform: translateY(-2px);
}

.portal-tip-head,
.portal-tip-title,
.portal-tip-bottom,
.teams-row,
.team-side,
.portal-tip-market {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-tip-head {
  justify-content: space-between;
  align-items: flex-start;
}

.portal-tip-title {
  min-width: 0;
}

.portal-tip-title strong {
  display: block;
  color: var(--portal-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.portal-tip-title small,
.tip-time,
.portal-tip-bottom,
.tip-excerpt {
  color: var(--portal-muted);
}

.sport-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-color: var(--portal-border);
  background: rgba(217, 158, 75, .08);
  color: var(--portal-gold);
}

.badge {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.status-today,
.status-upcoming,
.type-premium {
  color: #0b0b0d;
  border-color: rgba(217,158,75,.55);
  background: var(--portal-gold);
}

.status-closed {
  color: #d4d4d8;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.type-free {
  color: var(--portal-gold);
  border-color: rgba(217,158,75,.28);
  background: rgba(217,158,75,.09);
}

.teams-row {
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: #101012;
}

.team-side {
  min-width: 0;
  flex: 1;
  justify-content: center;
  color: var(--portal-text);
  font-weight: 600;
}

.team-side span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-flag,
.team-fallback {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
}

.team-fallback {
  display: grid;
  place-items: center;
  color: var(--portal-gold);
  background: rgba(217,158,75,.10);
  font-size: 11px;
  font-weight: 700;
}

.versus {
  color: var(--portal-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tip-time {
  font-size: 13px;
  font-weight: 500;
}

.portal-tip-market {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.portal-tip-market > div,
.portal-pick {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: #101012;
}

.portal-tip-market span,
.portal-pick span {
  display: block;
  color: var(--portal-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.portal-tip-market strong,
.portal-pick strong {
  display: block;
  margin-top: 5px;
  color: var(--portal-text);
  font-weight: 700;
}

.odds-chip {
  min-width: 96px;
  border-color: rgba(217,158,75,.35) !important;
  background: rgba(217,158,75,.12) !important;
  text-align: center;
}

.odds-chip strong {
  color: var(--portal-gold) !important;
  font-size: 22px;
}

.portal-pick strong {
  color: var(--portal-gold);
  font-size: 18px;
}

.tip-excerpt {
  display: -webkit-box;
  min-height: 46px;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.55;
}

.portal-tip-bottom {
  justify-content: space-between;
  padding-top: 2px;
  font-size: 13px;
}

.tip-details {
  margin-left: auto;
}

.tip-details summary {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--portal-border);
  border-radius: 999px;
  color: var(--portal-gold);
  background: rgba(217,158,75,.06);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.tip-details[open] {
  grid-column: 1 / -1;
  width: 100%;
}

.tip-details[open] summary {
  margin-left: auto;
}

.tip-details .close-label,
.tip-details[open] .open-label {
  display: none;
}

.tip-details[open] .close-label {
  display: inline;
}

.tip-details-body {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(217,158,75,.18);
  border-radius: 16px;
  background: #0f0f11;
}

.tip-details-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.tip-details-body dl div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.tip-details-body dt {
  color: var(--portal-soft);
  font-size: 11px;
  text-transform: uppercase;
}

.tip-details-body dd {
  margin: 4px 0 0;
  color: var(--portal-text);
  font-weight: 600;
}

.tip-details-body h4 {
  margin: 12px 0 6px;
  color: var(--portal-gold);
}

.tip-details-body p {
  margin: 0;
  color: var(--portal-muted);
  line-height: 1.7;
}

.tip-details-body small {
  display: block;
  margin-top: 14px;
  color: var(--portal-soft);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 38px 20px;
  border: 1px solid var(--portal-border);
  border-radius: 18px;
  background: var(--portal-card);
  text-align: center;
}

.empty-state h2 {
  color: var(--portal-text);
}

.empty-state p {
  margin: 0;
  color: var(--portal-muted);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .tip-filter-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-wide,
  .filter-actions {
    grid-column: span 3;
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .tip-filter-bar {
    position: static;
    grid-template-columns: 1fr;
  }

  .filter-wide,
  .filter-actions {
    grid-column: auto;
  }

  .filter-actions {
    display: grid;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .portal-title,
  .top-actions .ghost-button {
    display: none;
  }

  .portal-hero-head {
    display: grid;
    padding: 18px;
  }

  .teams-row {
    align-items: stretch;
  }

  .team-side {
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
  }

  .portal-tip-market,
  .tip-details-body dl {
    grid-template-columns: 1fr;
  }
}

/* Restore original public landing header/hero visuals; keep fixed anchor links in markup. */
.launch-sales .launch-header {
  width: min(100% - 34px, 1180px) !important;
  min-height: 86px !important;
  margin-top: 24px !important;
  padding: 9px 16px 9px 20px !important;
  grid-template-columns: 210px minmax(0, 1fr) auto !important;
  gap: 20px !important;
  border-radius: 8px !important;
}

.launch-sales .launch-hero {
  min-height: calc(100vh - 116px) !important;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr) !important;
  gap: clamp(34px, 5vw, 74px) !important;
  padding-top: clamp(74px, 8vw, 110px) !important;
  padding-bottom: clamp(42px, 5vw, 64px) !important;
}

.launch-sales .launch-hero h1 {
  max-width: 760px !important;
  font-size: clamp(54px, 7vw, 90px) !important;
  line-height: .92 !important;
}

.launch-sales .launch-hero h1::after {
  content: "ODDS. FORMA. DÖNTÉS." !important;
  display: block !important;
  margin-top: 18px !important;
  color: var(--brand-gold) !important;
  font-size: clamp(28px, 3.3vw, 48px) !important;
  line-height: .96 !important;
}

.launch-sales .launch-hero-copy h2 {
  max-width: 720px !important;
  margin: 18px 0 0 !important;
  color: #D4AF37 !important;
  font-family: "Rajdhani", "Montserrat", sans-serif !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.02 !important;
}

.launch-sales .launch-hero-copy p {
  max-width: 670px !important;
  margin: 18px 0 0 !important;
  font-size: 17px !important;
}

.launch-sales .launch-hero-visual {
  min-height: 560px !important;
}

.launch-sales .launch-hero .launch-offer-card {
  position: absolute !important;
  right: clamp(18px, 4vw, 44px) !important;
  bottom: clamp(18px, 4vw, 44px) !important;
  width: min(360px, calc(100% - 36px)) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 24px !important;
  align-self: auto !important;
  justify-self: auto !important;
  text-align: left !important;
}

.launch-sales .launch-offer-card h2 {
  display: block !important;
  margin: 14px 0 4px !important;
  font-size: 38px !important;
  line-height: .95 !important;
  text-align: left !important;
  white-space: normal !important;
}

.launch-sales .launch-offer-list {
  display: grid !important;
  gap: 8px !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.launch-sales .launch-offer-list li {
  position: relative !important;
  padding-left: 20px !important;
  color: rgba(245, 243, 238, .76) !important;
  font-size: 13px !important;
}

.launch-sales .launch-offer-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  color: var(--brand-gold) !important;
  font-weight: 900 !important;
}

@media (max-width: 1100px) {
  .launch-sales .launch-header {
    grid-template-columns: 1fr auto !important;
    min-height: 78px !important;
  }

  .launch-sales .launch-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-header {
    width: min(100% - 22px, 1180px) !important;
    margin-top: 10px !important;
    padding: 8px 10px 8px 14px !important;
  }
  .checkout-summary-bar div:first-child strong {
    display: none !important;
  }
  .launch-sales .launch-hero {
    min-height: auto !important;
    gap: 26px !important;
    padding-top: 48px !important;
  }

  .launch-sales .launch-hero h1 {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  .launch-sales .launch-hero h1::after {
    font-size: clamp(24px, 8vw, 34px) !important;
  }

  .launch-sales .launch-hero .launch-offer-card {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    margin-top: 12px !important;
  }
}

/* Restore approved hero rhythm: no extra ODDS line, lower desktop hero content. */
@media (min-width: 901px) {
  .launch-sales .launch-hero {
    min-height: min(940px, calc(100vh - 4px)) !important;
    padding-top: clamp(170px, 10vw, 210px) !important;
    padding-bottom: clamp(70px, 7vw, 110px) !important;
    align-items: center !important;
  }

  .launch-sales .launch-hero h1::after {
    display: none !important;
    content: none !important;
  }

  .launch-sales .launch-hero-copy h2 {
    margin-top: 28px !important;
  }
}

/* Final desktop hero match to the approved reference screenshot. */
@media (min-width: 901px) {
  .launch-sales .launch-hero {
    min-height: 960px !important;
    padding-top: 116px !important;
    padding-bottom: 96px !important;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 430px) !important;
    gap: clamp(70px, 8vw, 120px) !important;
    align-items: center !important;
  }

  .launch-sales .launch-hero-copy {
    transform: translateY(72px) !important;
  }

  .launch-sales .launch-hero h1::after {
    display: none !important;
    content: none !important;
  }

  .launch-sales .launch-hero-visual {
    min-height: 650px !important;
    display: grid !important;
    place-items: center !important;
    transform: translateY(62px) !important;
  }

  .launch-sales .launch-hero .launch-offer-card {
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100%, 405px) !important;
    max-width: none !important;
    min-height: 640px !important;
    margin: 0 !important;
    padding: 76px 28px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    text-align: center !important;
    border-radius: 22px !important;
  }

  .launch-sales .launch-offer-badge {
    position: absolute !important;
    top: -26px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    min-width: 245px !important;
    min-height: 56px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 22px !important;
    border-radius: 0 !important;
    clip-path: polygon(9% 0, 91% 0, 100% 50%, 91% 100%, 9% 100%, 0 50%) !important;
  }

  .launch-sales .launch-offer-card h2 {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 0 !important;
    font-size: 54px !important;
    line-height: .92 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .launch-sales .launch-offer-price {
    display: grid !important;
    gap: 8px !important;
    margin: 4px 0 2px !important;
    text-align: center !important;
  }

  .launch-sales .launch-offer-price strong {
    font-size: 86px !important;
    line-height: .80 !important;
  }

  .launch-sales .launch-offer-list {
    width: 100% !important;
    gap: 17px !important;
    margin: 8px 0 10px !important;
    text-align: left !important;
  }

  .launch-sales .launch-offer-list li {
    min-height: 26px !important;
    padding-left: 42px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }

  .launch-sales .launch-offer-cta {
    width: 100% !important;
    min-height: 58px !important;
    margin-top: auto !important;
    font-size: 21px !important;
  }
}

/* Compact pricing card refinement: only the right-side hero offer card. */
.launch-sales .launch-hero .launch-offer-card {
  width: min(100%, 352px) !important;
  min-height: 0 !important;
  padding: 42px 22px 20px !important;
  gap: 10px !important;
  border-radius: 18px !important;
  border-color: rgba(217, 158, 75, .34) !important;
  background:
    linear-gradient(180deg, rgba(19, 19, 21, .88), rgba(8, 9, 12, .92)),
    rgba(10, 10, 12, .88) !important;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .05) !important;
}

.launch-sales .launch-offer-badge {
  top: -18px !important;
  min-width: 198px !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  font-size: 12px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.launch-sales .launch-offer-card h2 {
  gap: 8px !important;
  font-size: 42px !important;
  line-height: .95 !important;
}

.launch-sales .launch-offer-lead {
  margin: -2px 0 2px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.launch-sales .launch-offer-price {
  gap: 2px !important;
  margin: 2px 0 0 !important;
}

.launch-sales .launch-offer-price strong {
  font-size: 64px !important;
  line-height: .88 !important;
}

.launch-sales .launch-offer-price del {
  font-size: 22px !important;
  line-height: 1 !important;
}

.launch-sales .launch-floating-card .launch-offer-urgent {
  margin: 2px 0 4px !important;
  font-size: 13px !important;
  line-height: 1.28 !important;
}

.launch-sales .launch-offer-list {
  width: 100% !important;
  gap: 7px !important;
  margin: 4px 0 8px !important;
}

.launch-sales .launch-offer-list li {
  min-height: 20px !important;
  padding-left: 28px !important;
  font-size: 13.5px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.launch-sales .launch-offer-list li::before {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.launch-sales .launch-offer-actions {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

.launch-sales .launch-offer-cta {
  width: min(100%, 286px) !important;
  min-height: 48px !important;
  margin-top: 4px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
}

@media (min-width: 901px) {
  .launch-sales .launch-hero .launch-offer-card {
    transform: translateY(8px) !important;
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-hero .launch-offer-card {
    width: 100% !important;
    padding: 40px 18px 18px !important;
  }

  .launch-sales .launch-offer-card h2 {
    font-size: 36px !important;
  }

  .launch-sales .launch-offer-price strong {
    font-size: 54px !important;
  }

  .launch-sales .launch-offer-cta {
    width: 100% !important;
  }
}

/* Portal product landing refresh */
.launch-sales .launch-header {
  grid-template-columns: 176px minmax(0, 1fr) auto !important;
}

.launch-sales .launch-nav {
  gap: clamp(10px, 1.1vw, 18px) !important;
  justify-content: center !important;
}

.launch-sales .launch-nav a {
  font-size: 12px !important;
  letter-spacing: .06em !important;
  white-space: nowrap !important;
}

.launch-anchor {
  position: relative;
  top: -120px;
}

.portal-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.portal-phone-preview {
  width: min(330px, 100%);
  min-height: 590px;
  justify-self: center;
  padding: 14px;
  border: 1px solid rgba(217, 158, 75, .30);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015)),
    #07090d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.portal-phone-bar {
  width: 86px;
  height: 5px;
  margin: 5px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.portal-phone-screen {
  min-height: 530px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 4%, rgba(217, 158, 75, .13), transparent 11rem),
    linear-gradient(180deg, rgba(15, 18, 25, .92), rgba(5, 7, 11, .96));
}

.portal-phone-screen img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.portal-feature-grid,
.statistics-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-feature-grid article,
.statistics-card-grid article,
.combo-sample-card {
  border: 1px solid rgba(217, 158, 75, .18);
  border-radius: 18px;
  background: rgba(12, 14, 20, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.portal-feature-grid article {
  min-height: 168px;
  padding: 18px;
}

.portal-feature-grid span,
.combo-sample-badge {
  display: inline-flex;
  color: #ffc96c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.portal-feature-grid h3 {
  margin: 14px 0 8px;
  color: rgba(255, 255, 255, .96);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: 27px;
  line-height: 1;
}

.portal-feature-grid p {
  margin: 0;
  color: rgba(244, 244, 245, .62);
  font-size: 14px;
  line-height: 1.55;
}

.combo-sample-card {
  width: min(780px, 100%);
  margin: 28px auto 0;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 158, 75, .11), transparent 15rem),
    rgba(10, 12, 18, .78);
}

.combo-sample-list {
  display: grid;
  margin-top: 16px;
}

.combo-sample-list div {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.combo-sample-list div:last-child {
  border-bottom: 0;
}

.combo-sample-list strong {
  color: rgba(255, 255, 255, .95);
  font-weight: 800;
}

.combo-sample-list span {
  color: rgba(244, 244, 245, .62);
  font-size: 14px;
}

.combo-sample-list b {
  color: #ffc96c;
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: 22px;
}

.combo-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 8px 0 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 158, 75, .22);
}

.combo-total-row span {
  color: rgba(244, 244, 245, .62);
  font-weight: 700;
}

.combo-total-row strong {
  color: #ffc96c;
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: 46px;
  line-height: .9;
}

.combo-sample-cta {
  min-height: 48px;
  padding-inline: 22px;
}

.free-tip-section .launch-section-head {
  max-width: 760px;
  margin-bottom: 0;
}

.free-tip-section .launch-section-head h2 {
  margin-bottom: 10px;
}

.free-tip-section .launch-section-head p {
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.52;
}

.free-tip-grid {
  width: min(1080px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 18px;
  align-items: stretch;
}

.free-tip-card,
.free-tip-pass-card {
  border: 1px solid rgba(217, 158, 75, .24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 0%, rgba(217, 158, 75, .12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(9, 12, 18, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
}

.free-tip-card {
  min-height: 410px;
  padding: clamp(18px, 2.1vw, 24px);
}

.free-tip-pass-card {
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  border-color: rgba(217, 158, 75, .32);
  background:
    radial-gradient(circle at 90% 6%, rgba(217, 158, 75, .18), transparent 14rem),
    linear-gradient(180deg, rgba(217, 158, 75, .055), rgba(255, 255, 255, .012)),
    rgba(9, 12, 18, .84);
}

.free-tip-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.free-tip-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(217, 158, 75, .34);
  border-radius: 999px;
  background: rgba(217, 158, 75, .10);
  color: #ffc96c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.free-tip-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(66, 216, 137, .24);
  border-radius: 999px;
  background: rgba(66, 216, 137, .10);
  color: rgba(126, 239, 177, .94);
  font-size: 12px;
  font-weight: 800;
}

.free-tip-match {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.free-tip-match span,
.free-tip-meta span,
.free-tip-pick-row span,
.free-tip-reason span {
  color: rgba(244, 244, 245, .56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.free-tip-match strong {
  color: rgba(255, 255, 255, .96);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1;
}

.free-tip-meta,
.free-tip-pick-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.free-tip-pick-row {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr) 128px;
}

.free-tip-meta div,
.free-tip-pick-row div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.free-tip-meta strong,
.free-tip-pick-row strong {
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.3;
}

.free-tip-pick-row .free-tip-odds {
  border-color: rgba(217, 158, 75, .30);
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 201, 108, .22), transparent 6rem),
    rgba(217, 158, 75, .09);
  box-shadow: inset 0 0 0 1px rgba(255, 201, 108, .05);
}

.free-tip-odds strong {
  color: #ffc96c;
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: 42px;
  line-height: .9;
}

.free-tip-reason {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(217, 158, 75, .16);
  border-radius: 16px;
  background: rgba(0, 0, 0, .16);
}

.free-tip-reason p {
  margin: 7px 0 0;
  color: rgba(244, 244, 245, .72);
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.free-tip-empty {
  min-height: 330px;
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.free-tip-empty h3,
.free-tip-pass-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(31px, 3vw, 44px);
  line-height: .98;
}

.free-tip-pass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.free-tip-pass-head svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 201, 108, .82);
  stroke-width: 1.8;
}

.free-tip-pass-card h3 {
  margin-top: 16px;
}

.free-tip-pass-card p {
  margin: 12px 0 18px;
  color: rgba(244, 244, 245, .70);
  font-size: 14px;
  line-height: 1.48;
}

.free-tip-pass-subtitle {
  color: #ffc96c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.free-tip-pass-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
}

.free-tip-pass-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(244, 244, 245, .78);
  font-size: 14px;
  font-weight: 700;
}

.free-tip-pass-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(217, 158, 75, .16);
  border: 1px solid rgba(217, 158, 75, .34);
}

.free-tip-pass-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .58em;
  width: 5px;
  height: 9px;
  border: solid #ffc96c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.free-tip-pass-cta,
.free-tip-empty-cta {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
}

.free-tip-pass-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 201, 108, .68);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.free-tip-disclaimer {
  width: min(900px, 100%);
  margin: 18px auto 0;
  color: rgba(244, 244, 245, .52);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

.free-tip-section-v2 {
  width: min(1120px, calc(100% - 34px));
  margin-inline: auto;
}

.free-tip-section-v2 .free-tip-head-v2 {
  max-width: 780px !important;
  margin: 0 0 18px !important;
  text-align: left !important;
}

.free-tip-section-v2 .free-tip-head-v2 h2 {
  max-width: 680px;
  margin-bottom: 10px !important;
}

.free-tip-section-v2 .free-tip-head-v2 p {
  max-width: 720px;
  margin: 0 !important;
  color: rgba(244, 244, 245, .72);
  line-height: 1.52;
}

.portal-tip-preview-card,
.free-tip-upsell-strip {
  border: 1px solid rgba(217, 158, 75, .24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(8, 11, 17, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
}

.portal-tip-preview-card {
  padding: clamp(18px, 2.3vw, 26px);
}

.portal-tip-preview-top,
.portal-tip-preview-main,
.free-tip-upsell-strip {
  display: flex;
  align-items: center;
}

.portal-tip-preview-top {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.portal-tip-preview-main {
  justify-content: space-between;
  gap: 22px;
}

.portal-tip-preview-title {
  min-width: 0;
}

.portal-tip-preview-title h3 {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: .95;
}

.portal-tip-preview-title p {
  margin: 8px 0 0;
  color: rgba(244, 244, 245, .58);
  font-size: 13px;
  font-weight: 700;
}

.portal-tip-preview-odds {
  flex: 0 0 auto;
  min-width: 132px;
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(217, 158, 75, .36);
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 201, 108, .24), transparent 6rem),
    rgba(217, 158, 75, .09);
}

.portal-tip-preview-odds span,
.portal-tip-preview-info span {
  color: rgba(244, 244, 245, .54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.portal-tip-preview-odds strong {
  color: #ffc96c;
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: 46px;
  line-height: .86;
}

.portal-tip-preview-info {
  display: grid;
  grid-template-columns: minmax(120px, .7fr) minmax(220px, 1fr) minmax(280px, 1.35fr);
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.portal-tip-preview-info div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.portal-tip-preview-info strong {
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portal-tip-preview-empty {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
}

.portal-tip-preview-empty h3 {
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
}

.free-tip-upsell-strip {
  margin-top: 16px;
  padding: clamp(18px, 2.2vw, 24px);
  gap: clamp(18px, 3vw, 30px);
  border-color: rgba(217, 158, 75, .30);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 158, 75, .16), transparent 14rem),
    linear-gradient(180deg, rgba(217, 158, 75, .05), rgba(255, 255, 255, .012)),
    rgba(8, 11, 17, .86);
}

.free-tip-upsell-copy {
  flex: 1.1 1 260px;
  min-width: 0;
}

.free-tip-upsell-copy h3 {
  margin: 12px 0 8px;
  color: rgba(255, 255, 255, .96);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .98;
}

.free-tip-upsell-copy p {
  margin: 0;
  color: rgba(244, 244, 245, .68);
  font-size: 14px;
  line-height: 1.45;
}

.free-tip-upsell-list {
  flex: 1 1 320px;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.free-tip-upsell-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  min-height: 24px;
  color: rgba(244, 244, 245, .80);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.free-tip-upsell-list svg {
  width: 18px;
  height: 18px;
  color: #ffc96c;
  stroke-width: 2.2;
  justify-self: center;
}

.free-tip-upsell-action {
  flex: 0 0 245px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.free-tip-upsell-action .launch-button {
  width: 100%;
  min-height: 50px;
}

.free-tip-upsell-action small {
  color: rgba(255, 201, 108, .68);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.checkout-landing-section {
  width: min(1120px, calc(100% - 34px));
  margin-inline: auto;
}

.checkout-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.checkout-landing-copy,
.checkout-landing-card {
  border: 1px solid rgba(217, 158, 75, .24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 158, 75, .13), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(8, 11, 17, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
}

.checkout-landing-copy {
  padding: clamp(24px, 3vw, 34px);
}

.checkout-landing-copy h2,
.checkout-landing-card h3 {
  margin: 14px 0 10px;
  color: rgba(255, 255, 255, .96);
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .92;
}

.checkout-landing-card h3 {
  font-size: clamp(32px, 3.5vw, 46px);
}

.checkout-landing-copy > p,
.checkout-landing-card > p {
  margin: 0;
  color: rgba(244, 244, 245, .70);
  font-size: 15px;
  line-height: 1.55;
}

.checkout-landing-copy .launch-package-price {
  margin: 20px 0;
}

.checkout-landing-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.checkout-landing-copy li {
  position: relative;
  padding-left: 28px;
  color: rgba(244, 244, 245, .78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.checkout-landing-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(217, 158, 75, .34);
  background: rgba(217, 158, 75, .12);
}

.checkout-landing-copy li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .48em;
  width: 5px;
  height: 9px;
  border: solid #ffc96c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-landing-copy small,
.checkout-landing-card small {
  display: block;
  color: rgba(244, 244, 245, .52);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-landing-card {
  padding: clamp(22px, 3vw, 32px);
  border-color: rgba(217, 158, 75, .34);
}

.checkout-landing-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-landing-two {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 12px;
}

.checkout-landing-form label {
  display: grid;
  gap: 7px;
  color: rgba(244, 244, 245, .72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.checkout-landing-form input[type="text"],
.checkout-landing-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(217, 158, 75, .20);
  border-radius: 12px;
  background: rgba(2, 4, 8, .56);
  color: rgba(255, 255, 255, .94);
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.checkout-landing-form input:focus {
  border-color: rgba(255, 201, 108, .58);
  box-shadow: 0 0 0 3px rgba(217, 158, 75, .12);
}

.checkout-landing-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600 !important;
}

.checkout-landing-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #d99e4b;
}

.checkout-landing-check span {
  color: rgba(244, 244, 245, .68);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-landing-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

/* Modern unified order module */
.launch-sales .launch-nav {
  gap: 18px !important;
}

.checkout-landing-section {
  position: relative;
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
  padding-top: clamp(58px, 6vw, 82px) !important;
  isolation: isolate;
}

.checkout-landing-section::before {
  content: "";
  position: absolute;
  inset: clamp(34px, 5vw, 68px) -36px auto;
  height: 420px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 8%, rgba(217, 158, 75, .13), transparent 18rem),
    radial-gradient(circle at 82% 48%, rgba(255, 255, 255, .045), transparent 18rem);
  pointer-events: none;
}

.checkout-landing-head {
  max-width: 760px;
  margin: 0 0 clamp(22px, 3vw, 34px);
}

.checkout-landing-head h2 {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, .96);
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .92;
}

.checkout-landing-head p {
  max-width: 620px;
  margin: 0;
  color: rgba(244, 244, 245, .72);
  font-size: 16px;
  line-height: 1.55;
}

.checkout-order-panel {
  border: 1px solid rgba(217, 158, 75, .30);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .014)),
    rgba(8, 11, 17, .80);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.checkout-summary-bar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, auto) minmax(260px, auto);
  align-items: center;
  gap: 18px;
  padding: 20px clamp(20px, 3vw, 30px);
  border-bottom: 1px solid rgba(217, 158, 75, .18);
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 158, 75, .16), transparent 13rem),
    rgba(255, 255, 255, .022);
}

.checkout-summary-bar span,
.checkout-summary-price small {
  display: block;
  color: rgba(244, 244, 245, .56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-summary-bar strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .94);
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: 28px;
  line-height: .95;
}

.checkout-summary-price {
  justify-self: end;
  text-align: right;
}

.checkout-summary-price strong {
  color: #ffc96c;
  font-size: 44px;
}

.checkout-stripe-secure {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.checkout-stripe-secure svg {
  width: 18px;
  height: 18px;
  color: #ffc96c;
}

.checkout-stripe-secure span {
  color: rgba(244, 244, 245, .76);
  font-size: 11px;
}

.stripe-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  background: #635bff;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: lowercase;
}

.checkout-order-panel .checkout-landing-form {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px) clamp(20px, 4vw, 42px) 22px;
}

.checkout-order-panel .checkout-landing-two {
  grid-template-columns: .72fr 1fr;
  gap: 14px;
}

.checkout-order-panel .checkout-landing-form label {
  gap: 8px;
  color: rgba(244, 244, 245, .76);
}

.checkout-order-panel .checkout-landing-form input[type="text"],
.checkout-order-panel .checkout-landing-form input[type="email"] {
  min-height: 54px;
  border-color: rgba(217, 158, 75, .24);
  border-radius: 14px;
  background: rgba(3, 6, 12, .62);
  padding-inline: 16px;
}

.checkout-order-panel .checkout-landing-check {
  margin-top: 2px;
  padding: 14px;
  border-color: rgba(217, 158, 75, .16);
  background: rgba(255, 255, 255, .03);
}

.checkout-order-panel .checkout-landing-check a {
  color: #ffc96c;
  text-decoration: none;
}

.checkout-order-panel .checkout-landing-submit {
  min-height: 56px;
  gap: 10px;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-order-panel .checkout-landing-submit svg {
  width: 18px;
  height: 18px;
}

.checkout-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 clamp(20px, 4vw, 42px) clamp(24px, 3vw, 34px);
}

.checkout-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(217, 158, 75, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .028);
  color: rgba(244, 244, 245, .68);
  font-size: 12px;
  font-weight: 700;
}

.checkout-trust-row svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 201, 108, .80);
}

@media (max-width: 900px) {
  .checkout-summary-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .checkout-summary-price,
  .checkout-stripe-secure {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .checkout-landing-section {
    width: min(100% - 28px, 1180px);
    padding-top: 48px !important;
  }

  .checkout-landing-head h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .checkout-summary-bar {
    padding: 18px;
    gap: 14px;
  }

  .checkout-summary-price strong {
    font-size: 38px;
  }

  .checkout-stripe-secure {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
  }

  .checkout-order-panel .checkout-landing-form {
    padding: 20px 16px 18px;
  }

  .checkout-order-panel .checkout-landing-two {
    grid-template-columns: 1fr;
  }

  .checkout-order-panel .checkout-landing-submit {
    min-height: 54px;
    padding-inline: 14px;
    text-align: center;
  }

  .checkout-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 16px 22px;
  }

  .checkout-trust-row span {
    justify-content: center;
  }
}

/* Editorial premium order experience */
.launch-sales #megrendeles.checkout-landing-section {
  width: min(1180px, calc(100% - 34px));
  padding: clamp(64px, 7vw, 96px) 0 clamp(66px, 7vw, 96px) !important;
}

.launch-sales #megrendeles.checkout-landing-section::before {
  inset: 24px -24px auto;
  height: 460px;
  background:
    radial-gradient(circle at 48% 12%, rgba(217, 158, 75, .10), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 58%);
  opacity: .85;
}

.launch-sales #megrendeles .checkout-landing-head {
  max-width: 920px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.launch-sales #megrendeles .checkout-landing-head h2 {
  max-width: 880px;
  margin: 10px 0 14px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .88;
  text-transform: uppercase;
}

.launch-sales #megrendeles .checkout-landing-head p {
  max-width: 660px;
  color: rgba(244, 244, 245, .70);
}

.launch-sales #megrendeles .checkout-order-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.launch-sales #megrendeles .checkout-summary-bar {
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, auto);
  padding: 18px 0 20px;
  border-top: 1px solid rgba(217, 158, 75, .30);
  border-bottom: 1px solid rgba(217, 158, 75, .18);
  background: transparent;
}

.launch-sales #megrendeles .checkout-summary-bar strong {
  font-size: 29px;
}

.launch-sales #megrendeles .checkout-summary-price strong {
  color: #ffc96c;
  font-size: 46px;
}

.launch-sales #megrendeles .checkout-stripe-secure {
  border-color: 0px;
  border: 0px;
  background: none;
  box-shadow: none;
}

.launch-sales #megrendeles .checkout-landing-form {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px 18px;
  margin: 0;
  padding: clamp(28px, 4vw, 42px) 0 24px;
}

.launch-sales #megrendeles .checkout-landing-form > label,
.launch-sales #megrendeles .checkout-landing-check,
.launch-sales #megrendeles .checkout-landing-submit {
  grid-column: 1 / -1;
}

.launch-sales #megrendeles .checkout-landing-two {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 18px;
}

.launch-sales #megrendeles .checkout-landing-form label {
  color: rgba(244, 244, 245, .78);
}

.launch-sales #megrendeles .checkout-landing-form input[type="text"],
.launch-sales #megrendeles .checkout-landing-form input[type="email"] {
  min-height: 58px;
  border: 1px solid rgba(217, 158, 75, .22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)),
    rgba(4, 7, 13, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.launch-sales #megrendeles .checkout-landing-form input:focus {
  border-color: rgba(255, 201, 108, .66);
  box-shadow:
    0 0 0 3px rgba(217, 158, 75, .11),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.launch-sales #megrendeles .checkout-landing-check {
  border-color: rgba(217, 158, 75, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  align-items: center;
  padding: 12px 14px;
}

.launch-sales #megrendeles .checkout-landing-check input {
  margin-top: 0;
}

.launch-sales #megrendeles .checkout-landing-check span {
  line-height: 1.42;
}

.launch-sales #megrendeles .checkout-landing-submit {
  min-height: 60px;
  margin-top: 2px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 20px 42px rgba(217, 158, 75, .18);
}

.launch-sales #megrendeles .checkout-trust-row {
  justify-content: flex-start;
  gap: 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .075);
}

.launch-sales #megrendeles .checkout-trust-row span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .launch-sales #megrendeles .checkout-summary-bar,
  .launch-sales #megrendeles .checkout-landing-form,
  .launch-sales #megrendeles .checkout-landing-two {
    grid-template-columns: 1fr;
  }

  .launch-sales #megrendeles .checkout-summary-price,
  .launch-sales #megrendeles .checkout-stripe-secure {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .launch-sales #megrendeles.checkout-landing-section {
    width: min(100% - 28px, 1180px);
    padding: 52px 0 64px !important;
  }

  .launch-sales #megrendeles .checkout-landing-head h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .launch-sales #megrendeles .checkout-summary-bar {
    padding: 16px 0 18px;
  }

  .launch-sales #megrendeles .checkout-stripe-secure {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
  }

  .launch-sales #megrendeles .checkout-landing-form {
    padding: 24px 0 20px;
  }

  .launch-sales #megrendeles .checkout-trust-row {
    display: grid;
    gap: 12px;
  }

  .launch-sales #megrendeles .checkout-trust-row span {
    justify-content: flex-start;
  }
}

/* Focused premium checkout module refinement */
.launch-sales #megrendeles.checkout-landing-section {
  padding-top: clamp(74px, 7vw, 70px) !important;
  padding-bottom: clamp(72px, 7vw, 104px) !important;
}

.launch-sales #megrendeles.checkout-landing-section::before {
  display: none;
}

.launch-sales #megrendeles .checkout-landing-head {
  max-width: 820px;
  margin-bottom: clamp(28px, 3.4vw, 42px);
}

.launch-sales #megrendeles .checkout-landing-head h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.35vw, 58px);
  line-height: .94;
  margin-bottom: 16px;
}

.launch-sales #megrendeles .checkout-order-panel {
  max-width: 980px;
  margin-inline: auto;
  border: 1px solid rgba(217, 158, 75, .30);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 158, 75, .12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .014)),
    rgba(8, 11, 17, .82);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .34),
    0 0 58px rgba(217, 158, 75, .08),
    inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.launch-sales #megrendeles .checkout-summary-bar {
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, auto);
  padding: 20px clamp(22px, 3vw, 34px);
  border-top: 0;
  border-bottom: 1px solid rgba(217, 158, 75, .20);
  background:
    linear-gradient(90deg, rgba(217, 158, 75, .075), transparent 45%),
    rgba(255, 255, 255, .024);
}

.launch-sales #megrendeles .checkout-summary-price strong {
  font-size: 44px;
}

.launch-sales #megrendeles .checkout-landing-form {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 32px) clamp(22px, 4vw, 0px) 0px;
  gap: 13px 16px;
}

.launch-sales #megrendeles .checkout-landing-form input[type="text"],
.launch-sales #megrendeles .checkout-landing-form input[type="email"] {
  min-height: 54px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(3, 6, 12, .68);
}

.launch-sales #megrendeles .checkout-landing-submit {
  min-height: 64px;
  margin-top: 6px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  box-shadow:
    0 22px 48px rgba(217, 158, 75, .24),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}

.launch-sales #megrendeles .checkout-trust-row {
  justify-content: center;
  gap: 0;
  padding: 11px clamp(22px, 4vw, 38px) clamp(24px, 3vw, 34px);
  border-top: 0;
}

.launch-sales #megrendeles .checkout-trust-row span {
  color: rgba(244, 244, 245, .62);
}

.launch-sales #megrendeles .checkout-trust-row span + span::before {
  content: "·";
  margin: 0 14px 0 6px;
  color: rgba(255, 201, 108, .54);
}

/* Compact landing footer */
.launch-footer {
  width: min(1180px, calc(100% - 34px)) !important;
  margin-inline: auto !important;
  padding-top: clamp(34px, 4vw, 48px) !important;
  padding-bottom: clamp(34px, 4vw, 48px) !important;
}

.launch-footer nav {
  gap: 22px !important;
}

@media (max-width: 760px) {
  .launch-footer {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (max-width: 900px) {
  .launch-sales #megrendeles .checkout-order-panel {
    max-width: 760px;
  }

  .launch-sales #megrendeles .checkout-summary-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .launch-sales #megrendeles.checkout-landing-section {
    padding-top: 58px !important;
    padding-bottom: 72px !important;
  }

  .launch-sales #megrendeles .checkout-order-panel {
    border-radius: 22px;
  }

  .launch-sales #megrendeles .checkout-summary-bar {
    padding: 18px;
  }

  .launch-sales #megrendeles .checkout-landing-form {
    padding: 20px 16px 18px;
  }

  .launch-sales #megrendeles .checkout-landing-submit {
    min-height: 58px;
  }

  .launch-sales #megrendeles .checkout-trust-row {
    display: flex;
    justify-content: center;
    padding: 2px 16px 24px;
    line-height: 1.8;
  }
}

.statistics-card-grid article {
  min-height: 118px;
  padding: 18px;
}

.statistics-card-grid span {
  color: rgba(244, 244, 245, .56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.statistics-card-grid strong {
  display: block;
  margin-top: 12px;
  color: #ffc96c;
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: 42px;
  line-height: .95;
}

.statistics-card-grid .is-positive {
  color: #42d889;
}

.statistics-disclaimer {
  margin: 16px auto 0;
  color: rgba(244, 244, 245, .54);
  font-size: 13px;
  text-align: center;
}

.launch-sales #gyik {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
  padding-top: 72px !important;
}

.launch-sales #gyik .launch-faq {
  display: grid;
  gap: 10px;
}

@media (max-width: 1180px) {
  .launch-sales .launch-header {
    grid-template-columns: 150px minmax(0, 1fr) auto !important;
  }

  .launch-sales .launch-nav {
    gap: 10px !important;
  }

  .launch-sales .launch-nav a {
    font-size: 11px !important;
  }
}

@media (max-width: 980px) {
  .portal-showcase {
    grid-template-columns: 1fr;
  }

  .portal-feature-grid,
  .statistics-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .launch-sales .launch-nav {
    justify-content: stretch !important;
  }

  .launch-sales .launch-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 158, 75, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    font-size: 12px !important;
  }

  .portal-phone-preview {
    min-height: 500px;
  }

  .portal-phone-screen {
    min-height: 440px;
  }

  .portal-phone-screen img {
    min-height: 440px;
  }

  .combo-sample-card {
    padding: 18px;
  }

  .combo-sample-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .combo-total-row {
    align-items: center;
  }

  .combo-total-row strong {
    font-size: 38px;
  }

  .free-tip-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .free-tip-card-head,
  .free-tip-meta,
  .free-tip-pick-row {
    grid-template-columns: 1fr;
  }

  .free-tip-card-head {
    align-items: flex-start;
  }

  .free-tip-pick-row {
    gap: 10px;
  }

  .free-tip-pick-row .free-tip-odds {
    min-height: 76px;
  }

  .free-tip-card,
  .free-tip-pass-card {
    padding: 18px;
  }

  .free-tip-match strong {
    font-size: 30px;
  }

  .free-tip-section-v2 {
    width: min(100% - 28px, 1120px);
  }

  .portal-tip-preview-top,
  .portal-tip-preview-main,
  .free-tip-upsell-strip {
    align-items: stretch;
  }

  .portal-tip-preview-top,
  .portal-tip-preview-main,
  .free-tip-upsell-strip {
    flex-direction: column;
  }

  .portal-tip-preview-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portal-tip-preview-odds {
    width: 100%;
    min-height: 78px;
  }

  .free-tip-upsell-action {
    flex-basis: auto;
  }

  .checkout-landing-grid,
  .checkout-landing-copy ul,
  .checkout-landing-two {
    grid-template-columns: 1fr;
  }

  .checkout-landing-copy,
  .checkout-landing-card {
    padding: 20px;
  }
}

/* Header and hero alignment polish */
.launch-sales .launch-header {
  grid-template-columns: 176px minmax(0, 1fr) auto !important;
}

.launch-sales .launch-nav {
  gap: 26px !important;
  justify-content: center !important;
}

.launch-sales .launch-nav a {
  position: relative !important;
  padding: 8px 0 !important;
  color: rgba(244, 244, 245, .74) !important;
  font-size: 14px !important;
  letter-spacing: 0em !important;
}

.launch-sales .launch-nav a::after {
  height: 2px !important;
  bottom: 0 !important;
  background: #d99e4b !important;
  box-shadow: none !important;
}

.launch-sales .launch-nav a.is-active {
  color: #d99e4b !important;
}

.launch-sales .launch-nav a.is-active::after {
  width: 100% !important;
  opacity: 1 !important;
}

.launch-sales .launch-header-cta {
  min-width: 116px !important;
  min-height: 42px !important;
  padding: 0 22px !important;
  font-size: 13px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

@media (min-width: 901px) {
  .launch-sales .launch-hero {
    align-items: center !important;
  }

  .launch-sales .launch-hero-copy {
    transform: translateY(18px) !important;
    padding-top: 0 !important;
    align-self: center !important;
  }

  .launch-sales .launch-hero-visual {
    min-height: 560px !important;
    align-self: center !important;
    transform: none !important;
    display: grid !important;
    place-items: center !important;
    padding-top: 0 !important;
  }

  .launch-sales .launch-hero .launch-offer-card {
    transform: none !important;
    align-self: center !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 1180px) {
  .launch-sales .launch-nav {
    gap: 18px !important;
  }

  .launch-sales .launch-nav a {
    font-size: 13px !important;
  }
}

@media (max-width: 760px) {
  .launch-sales .launch-nav {
    gap: 8px !important;
  }

  .launch-sales .launch-nav a {
    font-size: 12px !important;
  }
}

/* Premium internal portal showcase */
.launch-sales #belso-portal.portal-showcase-section {
  padding-top: clamp(76px, 8vw, 116px) !important;
  padding-bottom: clamp(70px, 7vw, 108px) !important;
  overflow: hidden;
}

.launch-sales #belso-portal .portal-showcase {
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .78fr) !important;
  gap: clamp(24px, 4vw, 58px) !important;
  align-items: center !important;
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
}

.portal-showcase-copy {
  min-width: 0;
}

.portal-section-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffc96c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.launch-sales #belso-portal .launch-section-head {
  max-width: 720px !important;
  margin: 0 0 14px !important;
  text-align: left !important;
}

.launch-sales #belso-portal .launch-section-head h2 {
  max-width: 620px;
  font-size: clamp(38px, 4vw, 56px) !important;
  line-height: .96 !important;
}

.launch-sales #belso-portal .launch-section-head p {
  max-width: 700px !important;
  margin-top: 14px !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
  color: rgba(244, 244, 245, .74) !important;
}

.launch-sales #belso-portal .portal-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.launch-sales #belso-portal .portal-feature-grid article {
  position: relative;
  min-height: 138px;
  padding: 15px 16px 15px;
  border-color: rgba(217, 158, 75, .24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014)),
    rgba(9, 12, 18, .74);
  backdrop-filter: blur(12px);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.launch-sales #belso-portal .portal-feature-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 158, 75, .45);
  background:
    linear-gradient(180deg, rgba(217, 158, 75, .075), rgba(255, 255, 255, .018)),
    rgba(10, 13, 19, .82);
}

.launch-sales #belso-portal .portal-feature-grid article > span {
  color: rgba(255, 201, 108, .92);
}

.launch-sales #belso-portal .portal-feature-grid article > svg {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  color: rgba(255, 201, 108, .76);
  stroke-width: 1.9;
}

.launch-sales #belso-portal .portal-feature-grid h3 {
  margin-top: 16px;
  font-size: 23px;
}

.launch-sales #belso-portal .portal-feature-grid p {
  font-size: 13.5px;
  line-height: 1.48;
}

.portal-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

.portal-showcase-actions .launch-button {
  min-height: 48px;
  padding-inline: 18px;
}

.portal-primary-cta {
  min-width: 210px;
}

.portal-showcase-actions small {
  color: rgba(255, 201, 108, .86);
  font-size: 13px;
  line-height: 1.35;
}

.portal-showcase-device {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.portal-showcase-device::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 158, 75, .21), rgba(217, 158, 75, .055) 44%, transparent 70%);
  filter: blur(2px);
  opacity: .72;
}

.launch-sales #belso-portal .portal-phone-preview {
  position: relative;
  z-index: 1;
  width: min(386px, 100%);
  min-height: 690px;
  padding: 13px;
  border-color: rgba(217, 158, 75, .38);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .018)),
    #05070b;
  box-shadow: 0 34px 86px rgba(0, 0, 0, .42), 0 0 56px rgba(217, 158, 75, .16), inset 0 0 0 1px rgba(255, 255, 255, .07);
  transform: rotate(2deg);
}

.launch-sales #belso-portal .portal-phone-screen {
  min-height: 628px;
  border-radius: 28px;
  background: #05070b;
}

.launch-sales #belso-portal .portal-phone-screen img {
  min-height: 628px;
  filter: brightness(1.14) contrast(1.06) saturate(1.04);
}

@media (max-width: 980px) {
  .launch-sales #belso-portal .portal-showcase {
    grid-template-columns: 1fr !important;
  }

  .portal-showcase-copy {
    display: contents;
  }

  .portal-section-label,
  .launch-sales #belso-portal .launch-section-head {
    order: 1;
  }

  .portal-showcase-device {
    order: 2;
    min-height: 0;
    margin: 4px 0 12px;
  }

  .launch-sales #belso-portal .portal-feature-grid {
    order: 3;
    grid-template-columns: 1fr !important;
  }

  .portal-showcase-actions {
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
  }

  .launch-sales #belso-portal .portal-phone-preview {
    width: min(350px, 100%);
    min-height: 620px;
    transform: none;
  }

  .launch-sales #belso-portal .portal-phone-screen,
  .launch-sales #belso-portal .portal-phone-screen img {
    min-height: 560px;
  }
}

@media (max-width: 520px) {
  .launch-sales #belso-portal.portal-showcase-section {
    padding-top: 62px !important;
  }

  .launch-sales #belso-portal .portal-phone-preview {
    width: min(315px, 100%);
    min-height: 560px;
  }

  .launch-sales #belso-portal .portal-phone-screen,
  .launch-sales #belso-portal .portal-phone-screen img {
    min-height: 504px;
  }
}

/* Scroll-revealed landing navigation after the hero. */
body.launch-sales .launch-header {
  position: relative !important;
  top: auto !important;
  z-index: 1000 !important;
  isolation: isolate;
}

body.launch-sales.show-sticky-menu .launch-header {
  position: fixed !important;
  top: 14px !important;
  left: 50% !important;
  margin-top: 0 !important;
  transform: translateX(-50%) !important;
  z-index: 1000 !important;
  animation: landingHeaderIn .18s ease-out both;
}

body.launch-sales .launch-page {
  overflow: visible !important;
}

@keyframes landingHeaderIn {
  from {
    opacity: 0;
    transform: translate(-50%, -16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 760px) {
  body.launch-sales .launch-header {
    position: relative !important;
    top: auto !important;
    z-index: 1000 !important;
  }

  body.launch-sales.show-sticky-menu .launch-header {
    position: fixed !important;
    top: 8px !important;
    left: 50% !important;
    margin-top: 0 !important;
    transform: translateX(-50%) !important;
    z-index: 1000 !important;
  }
}

/* Stadium-backed free tip preview */
.launch-sales #ingyenes-tipp.free-tip-stadium-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: clamp(22px, 3vw, 44px) 0 0;
  padding: clamp(38px, 4.5vw, 62px) 0 clamp(46px, 5vw, 70px);
  overflow: hidden;
  isolation: isolate;
  background: #05070b;
}

.launch-sales #ingyenes-tipp.free-tip-stadium-section::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  background: var(--free-tip-bg) center / cover no-repeat;
  filter: blur(2px) saturate(.86);
  transform: scale(1.02);
  opacity: .58;
}

.launch-sales #ingyenes-tipp.free-tip-stadium-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 158, 75, .12), transparent 34rem),
    radial-gradient(circle at 50% 54%, rgba(4, 6, 10, .35), transparent 30rem),
    linear-gradient(90deg, rgba(3, 5, 8, .90), rgba(3, 5, 8, .76) 48%, rgba(3, 5, 8, .90)),
    linear-gradient(180deg, rgba(3, 5, 8, .88), rgba(3, 5, 8, .76) 45%, rgba(3, 5, 8, .92));
}

.free-tip-stadium-inner {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
}

.launch-sales #ingyenes-tipp .free-tip-stadium-head {
  max-width: 780px !important;
  margin: 0 0 clamp(22px, 3vw, 34px) !important;
}

.launch-sales #ingyenes-tipp .free-tip-stadium-head h2 {
  max-width: 760px;
  margin: 10px 0 10px !important;
  text-transform: uppercase;
}

.launch-sales #ingyenes-tipp .free-tip-stadium-head p {
  max-width: 760px;
  color: rgba(244, 244, 245, .74);
}

.free-tip-glass-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: auto minmax(360px, 1.45fr) minmax(160px, .58fr) minmax(260px, 1fr) minmax(126px, .44fr);
  align-items: center;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 24px;
  background: rgba(12, 17, 25, .3) !important;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .06),
    inset 0 0 38px rgba(217, 158, 75, .045);
  backdrop-filter: blur(3px);
  overflow: hidden;
}

.free-tip-card-badge,
.free-tip-match-cell,
.free-tip-date-cell,
.free-tip-market-cell,
.free-tip-odds-cell {
  min-width: 0;
  margin: 0;
}

.free-tip-card-badge {
  justify-self: center;
  margin-inline: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 201, 108, .34);
  border-radius: 999px;
  background: rgba(217, 158, 75, .12);
  color: #ffc96c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.free-tip-match-cell,
.free-tip-date-cell,
.free-tip-market-cell {
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.free-tip-match-cell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 0 24px;
}

.free-tip-flags {
  display: flex;
  align-items: center;
  width: 72px;
}

.free-tip-flags img {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.free-tip-flags img + img {
  margin-left: -12px;
}

.free-tip-match-cell h3 {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: clamp(23px, 1.75vw, 30px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.free-tip-match-cell p {
  margin: 7px 0 0;
  color: rgba(244, 244, 245, .56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.free-tip-date-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 0 16px;
  color: rgba(244, 244, 245, .82);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.free-tip-date-cell svg {
  width: 19px;
  height: 19px;
  color: #d99e4b;
  flex: 0 0 auto;
}

.free-tip-market-cell {
  display: grid;
  gap: 7px;
  min-height: 82px;
  align-content: center;
  padding: 0 18px;
}

.free-tip-market-cell span,
.free-tip-odds-cell span {
  color: rgba(244, 244, 245, .50);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.free-tip-market-cell strong {
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.free-tip-odds-cell {
  min-height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border-left: 1px solid rgba(217, 158, 75, .32);
  background:
    radial-gradient(circle at 65% 18%, rgba(255, 201, 108, .22), transparent 7rem),
    rgba(217, 158, 75, .075);
}

.free-tip-odds-cell strong {
  color: #ffc96c;
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: .84;
}

.launch-sales #ingyenes-tipp .free-tip-disclaimer {
  width: min(820px, 100%);
  margin: 18px 0 0;
  color: rgba(244, 244, 245, .48);
  text-align: left;
}

.free-tip-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
}

.free-tip-premium-cta {
  min-height: 48px;
  padding-inline: 20px;
  text-transform: uppercase;
}

.free-tip-cta-row span {
  color: rgba(255, 201, 108, .88);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .free-tip-glass-card {
    grid-template-columns: auto minmax(250px, 1fr) minmax(180px, .8fr) minmax(126px, .45fr);
  }

  .free-tip-market-cell {
    grid-column: 2 / 4;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .free-tip-odds-cell {
    grid-column: 4;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .launch-sales #ingyenes-tipp.free-tip-stadium-section {
    margin-top: 34px;
    padding: 36px 0 52px;
  }

  .free-tip-stadium-inner {
    width: min(100% - 28px, 1120px);
  }

  .launch-sales #ingyenes-tipp .free-tip-stadium-head h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .free-tip-glass-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }

  .free-tip-card-badge,
  .free-tip-match-cell,
  .free-tip-date-cell,
  .free-tip-market-cell,
  .free-tip-odds-cell {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    min-height: 0;
    margin: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .free-tip-card-badge {
    width: auto;
    display: none;
    justify-self: start;
    margin: 18px 18px 0;
    border-top: 1px solid rgba(255, 201, 108, .34);
  }

  .free-tip-match-cell,
  .free-tip-date-cell,
  .free-tip-market-cell {
    padding: 18px;
  }

  .free-tip-match-cell {
    border-top: 0;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .free-tip-match-cell h3 {
    white-space: normal;
  }

  .free-tip-date-cell {
    white-space: normal;
  }

  .free-tip-odds-cell {
    grid-column: auto;
    grid-row: auto;
    min-height: 96px;
    border-top-color: rgba(217, 158, 75, .25);
  }

  .launch-sales #ingyenes-tipp .free-tip-disclaimer {
    text-align: center;
  }

  .free-tip-cta-row {
    display: grid;
    gap: 10px;
  }

  .free-tip-premium-cta {
    width: 100%;
  }

  .free-tip-cta-row span {
    text-align: center;
  }
}

/* Final free-tip background correction: full-bleed stadium, not a boxed panel. */
body.launch-sales #ingyenes-tipp.free-tip-stadium-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border: 0 !important;
}

body.launch-sales #ingyenes-tipp.free-tip-stadium-section::before {
  inset: -10px;
  background-position: center center;
  filter: blur(.6px) saturate(1.08) contrast(1.06) brightness(1.18);
  opacity: 1;
}

body.launch-sales #ingyenes-tipp.free-tip-stadium-section::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(3, 5, 8, .34), rgba(3, 5, 8, .61) 58%, rgba(3, 5, 8, .82) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, .70), rgba(3, 5, 8, .56) 46%, rgba(3, 5, 8, .76));
}

/* Premium statistics section */
.launch-sales #statisztika.statistics-showcase-section {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
  padding: clamp(48px, 5vw, 68px) 0 clamp(34px, 4vw, 48px) !important;
  border-top: 0 !important;
  background: transparent !important;
}

.launch-sales #statisztika .launch-section-head {
  max-width: 760px;
  margin: 0 0 clamp(22px, 3vw, 34px) !important;
  text-align: left;
}

.launch-sales #statisztika .launch-section-head h2 {
  max-width: 720px;
  margin: 8px 0 12px;
  text-transform: uppercase;
}

.launch-sales #statisztika .launch-section-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(244, 244, 245, .74) !important;
  font-size: 16px;
  line-height: 1.58;
}

.launch-sales #statisztika .statistics-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.launch-sales #statisztika .statistics-card-grid article {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(217, 158, 75, .24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 158, 75, .12), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014)),
    rgba(9, 12, 18, .78);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
}

.launch-sales #statisztika .statistics-card-grid article > svg {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
  justify-self: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 201, 108, .88);
  stroke-width: 2;
  filter: drop-shadow(0 8px 18px rgba(217, 158, 75, .12));
}

.launch-sales #statisztika .statistics-card-grid article > span,
.launch-sales #statisztika .statistics-card-grid article > strong {
  grid-column: 2;
}

.launch-sales #statisztika .statistics-card-grid span {
  color: rgba(244, 244, 245, .58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.launch-sales #statisztika .statistics-card-grid strong {
  margin: 0;
  color: #ffc96c;
  font-family: Rajdhani, Montserrat, sans-serif;
  font-size: clamp(46px, 4.7vw, 62px);
  font-weight: 700;
  line-height: .86;
}

.launch-sales #statisztika .statistics-card-grid .is-positive {
  color: #42d889;
}

.launch-sales #statisztika .statistics-disclaimer {
  margin: 14px 0 0;
  color: rgba(244, 244, 245, .48);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 760px) {
  .launch-sales #statisztika.statistics-showcase-section {
    width: min(100% - 28px, 1180px);
    padding: 40px 0 36px !important;
  }

  .launch-sales #statisztika .statistics-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .launch-sales #statisztika .statistics-card-grid article {
    min-height: 116px;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .launch-sales #statisztika .statistics-card-grid article > svg {
    width: 30px;
    height: 30px;
  }

  .launch-sales #statisztika .statistics-card-grid span {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: .07em;
  }

  .launch-sales #statisztika .statistics-card-grid strong {
    font-size: clamp(36px, 12vw, 46px);
  }

  .launch-sales #statisztika .statistics-disclaimer {
    text-align: center;
  }
}


/* 2026-05 conversion tuning: key buying info visible before FAQ */
.launch-sales .launch-hero-keynotes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 18px;
}

.launch-sales .launch-hero-keynotes span,
.launch-sales .launch-value-strip span,
.launch-sales #megrendeles .checkout-benefit-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(217, 158, 75, .24);
  border-radius: 999px;
  background: rgba(12, 12, 14, .58);
  color: rgba(245, 243, 238, .82);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.launch-sales .launch-hero-keynotes svg,
.launch-sales .launch-value-strip svg,
.launch-sales #megrendeles .checkout-benefit-strip svg {
  width: 16px;
  height: 16px;
  color: #ffc96c;
  stroke-width: 2.2;
  flex: 0 0 auto;
}

.launch-sales .launch-value-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: -8px 0 16px;
}

.launch-sales .launch-value-strip span {
  width: 100%;
  justify-content: flex-start;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    rgba(10, 12, 18, .72);
}

.launch-sales .launch-offer-list li:nth-last-child(-n+2) {
  color: rgba(255, 201, 108, .92) !important;
}

.launch-sales #megrendeles .checkout-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 2px;
}

.launch-sales #megrendeles .checkout-benefit-strip span {
  min-height: 48px;
  justify-content: center;
  border-radius: 14px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    rgba(10, 12, 18, .68);
}

.launch-sales #megrendeles .checkout-trust-row {
  flex-wrap: wrap;
}

.launch-sales #megrendeles .checkout-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(245, 243, 238, .64);
  font-size: 12px;
  font-weight: 500;
}

.launch-sales #megrendeles .checkout-trust-row svg {
  width: 15px;
  height: 15px;
  color: #ffc96c;
}

.launch-sales #gyik .launch-faq details:first-child,
.launch-sales #gyik .launch-faq details:nth-child(6) {
  border-color: rgba(217, 158, 75, .34) !important;
  background:
    linear-gradient(180deg, rgba(217,158,75,.075), rgba(255,255,255,.018)),
    #151515 !important;
}

.launch-sales .statistics-disclaimer {
  max-width: 820px;
}

@media (max-width: 980px) {
  .launch-sales .launch-value-strip,
  .launch-sales #megrendeles .checkout-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-hero-keynotes {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .launch-sales .launch-hero-keynotes span,
  .launch-sales .launch-value-strip span,
  .launch-sales #megrendeles .checkout-benefit-strip span {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    border-radius: 13px;
    font-size: 12px;
  }

  .launch-sales .launch-value-strip,
  .launch-sales #megrendeles .checkout-benefit-strip {
    grid-template-columns: 1fr;
  }

  .launch-sales #megrendeles .checkout-benefit-strip {
    padding-top: 14px;
  }

  .launch-sales #megrendeles .checkout-benefit-strip span {
    text-align: left;
  }
}


/* 2026-05 cleanup: less crowded trust/info rows */
.launch-sales .launch-hero-keynotes {
  width: fit-content !important;
  max-width: 720px !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin-top: 18px !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(217, 158, 75, .26) !important;
  border-radius: 999px !important;
  background: rgba(9, 10, 13, .46) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.04) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.launch-sales .launch-hero-keynotes span {
  min-height: 0 !important;
  padding: 5px 12px !important;
  border: 0 !important;
  border-right: 1px solid rgba(217, 158, 75, .18) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(245, 243, 238, .78) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

.launch-sales .launch-hero-keynotes span:last-child {
  border-right: 0 !important;
}

.launch-sales .launch-value-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: -8px 0 18px !important;
}

.launch-sales .launch-value-strip span {
  min-height: 44px !important;
  justify-content: center !important;
  padding: 10px 12px !important;
  border-radius: 14px !important;
  text-align: center !important;
  background: rgba(9, 10, 13, .54) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.launch-sales #megrendeles .checkout-benefit-strip {
  width: min(760px, calc(100% - 40px)) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 18px auto 0 !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(217, 158, 75, .20) !important;
  border-radius: 16px !important;
  background: rgba(8, 10, 15, .54) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.launch-sales #megrendeles .checkout-benefit-strip span {
  min-height: 0 !important;
  justify-content: center !important;
  padding: 11px 14px !important;
  border: 0 !important;
  border-right: 1px solid rgba(217, 158, 75, .14) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(245, 243, 238, .80) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.launch-sales #megrendeles .checkout-benefit-strip span:last-child {
  border-right: 0 !important;
}

.launch-sales #megrendeles .checkout-benefit-strip svg,
.launch-sales .launch-value-strip svg,
.launch-sales .launch-hero-keynotes svg {
  color: #ffc96c !important;
}

@media (max-width: 980px) {
  .launch-sales .launch-value-strip {
    grid-template-columns: 1fr !important;
  }

  .launch-sales .launch-value-strip span {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

@media (max-width: 680px) {
  .launch-sales .launch-hero-keynotes {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 8px 12px !important;
    border-radius: 14px !important;
  }

  .launch-sales .launch-hero-keynotes span {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 9px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(217, 158, 75, .14) !important;
    white-space: normal !important;
  }

  .launch-sales .launch-hero-keynotes span:last-child {
    border-bottom: 0 !important;
  }

  .launch-sales #megrendeles .checkout-benefit-strip {
    width: calc(100% - 28px) !important;
    grid-template-columns: 1fr !important;
    padding: 6px 12px !important;
    margin-top: 14px !important;
  }

  .launch-sales #megrendeles .checkout-benefit-strip span {
    justify-content: flex-start !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(217, 158, 75, .14) !important;
    padding: 10px 0 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .launch-sales #megrendeles .checkout-benefit-strip span:last-child {
    border-bottom: 0 !important;
  }
}

/* 2026 mobile landing rescue: compact app-like phone/tablet layout. */
@media (min-width: 1101px) {
  .launch-nav-login {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  html,
  body.launch-body,
  body.launch-sales {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body.launch-sales *,
  body.launch-sales *::before,
  body.launch-sales *::after {
    min-width: 0;
  }

  body.launch-sales .launch-header,
  body.launch-sales .launch-page,
  body.launch-sales .launch-footer,
  body.launch-sales #statisztika.statistics-showcase-section,
  body.launch-sales #belso-portal .portal-showcase,
  .free-tip-stadium-inner {
    width: min(100% - 28px, 720px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  body.launch-sales .launch-page {
    margin-top: -82px !important;
    overflow-x: clip !important;
  }

  body.launch-sales .launch-header {
    min-height: 62px !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    gap: 8px !important;
    margin-top: 12px !important;
    padding: 6px 8px 6px 12px !important;
    border-radius: 8px !important;
    background:
      linear-gradient(180deg, rgba(24,24,24,.94), rgba(8,8,8,.88)) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.055) !important;
  }

  body.launch-sales .launch-brand {
    min-height: 48px;
    align-items: center !important;
  }

  body.launch-sales .launch-brand img {
    width: 112px !important;
    height: 62px !important;
    margin: -8px 0 -8px -5px !important;
    object-fit: contain !important;
  }

  body.launch-sales .launch-menu-toggle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(217,158,75,.34) !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
      rgba(14,14,14,.84) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05) !important;
  }

  body.launch-sales .launch-menu-toggle span {
    width: 17px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 99px !important;
    background: #d99e4b !important;
  }

  body.launch-sales .launch-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.launch-sales .launch-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  body.launch-sales .launch-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body.launch-sales .launch-nav {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 30 !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid rgba(217,158,75,.16) !important;
    border-radius: 12px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.014)),
      rgba(13,13,13,.96) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  }

  body.launch-sales .launch-nav.is-open {
    display: grid !important;
  }

  body.launch-sales .launch-nav a {
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 12px 0 15px !important;
    border: 1px solid rgba(255,255,255,.055) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.026) !important;
    color: rgba(245,243,238,.74) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
  }

  body.launch-sales .launch-nav a::after {
    display: none !important;
  }

  body.launch-sales .launch-nav a.is-active {
    border-color: rgba(217,158,75,.30) !important;
    background:
      linear-gradient(90deg, rgba(217,158,75,.16), rgba(255,255,255,.025)) !important;
    color: #ffc96c !important;
    box-shadow: inset 3px 0 0 #d99e4b !important;
  }

  body.launch-sales .launch-nav-login {
    color: #0d0d0d !important;
    border-color: rgba(217,158,75,.48) !important;
    background: linear-gradient(135deg, #e8c75d, #c99422) !important;
    box-shadow: none !important;
  }

  body.launch-sales .launch-hero {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: 0 !important;
    padding-top: 116px !important;
    padding-bottom: 34px !important;
  }

  body.launch-sales .launch-hero::before {
    inset: 86px 0 10px !important;
    border-radius: 20px !important;
    background: transparent !important;
  }

  body.launch-sales .launch-hero-copy {
    transform: none !important;
    padding-top: 0 !important;
  }

  body.launch-sales .launch-hero h1 {
    max-width: 10ch !important;
    font-size: clamp(38px, 10.6vw, 54px) !important;
    line-height: .92 !important;
  }

  body.launch-sales .launch-hero h1::after {
    margin-top: 10px !important;
    font-size: clamp(19px, 5.9vw, 27px) !important;
    line-height: 1.02 !important;
  }

  body.launch-sales .launch-hero h2 {
    margin-top: 14px !important;
    max-width: 16ch !important;
    font-size: clamp(22px, 6.2vw, 32px) !important;
    line-height: 1.04 !important;
  }

  body.launch-sales .launch-hero-copy p {
    max-width: 58ch !important;
    margin-top: 16px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  body.launch-sales .launch-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  body.launch-sales .launch-actions .launch-button,
  body.launch-sales .launch-offer-cta,
  .portal-showcase-actions .launch-button,
  .free-tip-premium-cta {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    padding-inline: 14px !important;
  }

  body.launch-sales .launch-hero-visual {
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    gap: 0 !important;
    place-items: stretch !important;
  }

  body.launch-sales .launch-hero-visual > img {
    position: absolute !important;
    inset: -118px -16px auto -16px !important;
    width: calc(100% + 32px) !important;
    height: min(670px, 96vh) !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: 49% 18% !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    filter: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.launch-sales .launch-hero-visual::after {
    inset: -118px -16px auto -16px !important;
    height: min(670px, 96vh) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  body.launch-sales .launch-hero .launch-offer-card,
  body.launch-sales .launch-offer-card {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    justify-self: center !important;
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 52px 18px 18px !important;
    border-radius: 18px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.016)),
      rgba(16,16,18,.92) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.05) !important;
  }

  body.launch-sales .launch-offer-badge {
    max-width: calc(100% - 32px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 9px 16px !important;
    white-space: nowrap !important;
    font-size: 10px !important;
  }

  body.launch-sales .launch-offer-card h2 {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: .95 !important;
  }

  body.launch-sales .launch-offer-price strong {
    font-size: clamp(44px, 12vw, 58px) !important;
  }

  body.launch-sales .launch-offer-list {
    gap: 8px !important;
    margin: 14px 0 !important;
  }

  body.launch-sales .launch-offer-list li {
    font-size: 13px !important;
    line-height: 1.28 !important;
  }

  body.launch-sales .launch-section,
  body.launch-sales #belso-portal.portal-showcase-section,
  body.launch-sales #statisztika.statistics-showcase-section,
  body.launch-sales #megrendeles.checkout-landing-section {
    padding-top: 46px !important;
    padding-bottom: 50px !important;
    overflow-x: clip !important;
  }

  body.launch-sales .launch-section-head h2,
  body.launch-sales #belso-portal .launch-section-head h2,
  body.launch-sales #ingyenes-tipp .free-tip-stadium-head h2,
  body.launch-sales #statisztika .launch-section-head h2,
  body.launch-sales #megrendeles .checkout-landing-head h2 {
    font-size: clamp(31px, 8.8vw, 44px) !important;
    line-height: .98 !important;
  }

  body.launch-sales .launch-section-head p,
  body.launch-sales #belso-portal .launch-section-head p,
  body.launch-sales #statisztika .launch-section-head p,
  body.launch-sales #megrendeles .checkout-landing-head p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  body.launch-sales #belso-portal .portal-showcase {
    gap: 18px !important;
    overflow-x: clip !important;
  }

  body.launch-sales #belso-portal .portal-showcase-device {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.launch-sales #belso-portal .portal-showcase-device::before {
    width: min(260px, 76vw) !important;
    height: min(260px, 76vw) !important;
  }

  body.launch-sales #belso-portal .portal-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  body.launch-sales #belso-portal .portal-feature-grid article {
    min-height: 0 !important;
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }

  body.launch-sales #belso-portal .portal-feature-grid h3 {
    margin-top: 12px !important;
    font-size: 20px !important;
  }

  body.launch-sales #belso-portal .portal-feature-grid p {
    font-size: 13px !important;
  }

  body.launch-sales #belso-portal .portal-phone-preview {
    width: min(280px, 86vw) !important;
    min-height: 496px !important;
    border-radius: 30px !important;
    padding: 10px !important;
  }

  body.launch-sales #belso-portal .portal-phone-screen,
  body.launch-sales #belso-portal .portal-phone-screen img {
    min-height: 444px !important;
    border-radius: 22px !important;
  }

  body.launch-sales #ingyenes-tipp.free-tip-stadium-section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 42px 0 48px !important;
    overflow-x: clip !important;
  }

  body.launch-sales #ingyenes-tipp.free-tip-stadium-section::before {
    inset: 0 !important;
  }

  body.launch-sales #ingyenes-tipp.free-tip-stadium-section::before {
    background-position: 52% center !important;
    filter: saturate(1.02) contrast(1.05) brightness(.98) !important;
  }

  .free-tip-glass-card {
    border-radius: 18px !important;
  }

  .free-tip-card-badge {
    margin: 14px 14px 0 !important;
  }

  .free-tip-match-cell,
  .free-tip-date-cell,
  .free-tip-market-cell {
    padding: 14px !important;
  }

  .free-tip-flags {
    width: 62px !important;
  }

  .free-tip-flags img {
    width: 36px !important;
    height: 36px !important;
  }

  .free-tip-match-cell h3 {
    font-size: 22px !important;
    white-space: normal !important;
  }

  .free-tip-odds-cell {
    min-height: 78px !important;
  }

  .free-tip-odds-cell strong {
    font-size: 34px !important;
  }

  body.launch-sales #statisztika .statistics-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body.launch-sales #statisztika .statistics-card-grid article {
    min-height: 118px !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    padding: 15px !important;
    border-radius: 16px !important;
  }

  body.launch-sales #statisztika .statistics-card-grid article > svg {
    width: 30px !important;
    height: 30px !important;
  }

  body.launch-sales #statisztika .statistics-card-grid span {
    font-size: 10.5px !important;
    line-height: 1.25 !important;
  }

  body.launch-sales #statisztika .statistics-card-grid strong {
    font-size: 34px !important;
  }

  body.launch-sales #megrendeles .checkout-order-panel {
    max-width: 100% !important;
    border-radius: 18px !important;
  }

  body.launch-sales #megrendeles .checkout-summary-bar {
    gap: 12px !important;
    padding: 16px !important;
  }

  body.launch-sales #megrendeles .checkout-summary-price strong {
    font-size: 40px !important;
  }

  body.launch-sales #megrendeles .checkout-stripe-secure {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    padding: 10px 0 0 !important;
  }

  body.launch-sales #megrendeles .checkout-landing-form {
    grid-template-columns: 1fr !important;
    padding: 18px 14px 16px !important;
    gap: 12px !important;
  }

  body.launch-sales #megrendeles .checkout-landing-two {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.launch-sales #megrendeles .checkout-landing-form input[type="text"],
  body.launch-sales #megrendeles .checkout-landing-form input[type="email"] {
    min-height: 50px !important;
    border-radius: 13px !important;
  }

  body.launch-sales #megrendeles .checkout-landing-check {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 12px !important;
    border-radius: 13px !important;
  }

  body.launch-sales #megrendeles .checkout-landing-check input {
    width: 18px !important;
    height: 18px !important;
    margin: 2px 0 0 !important;
  }

  body.launch-sales #megrendeles .checkout-landing-submit {
    min-height: 56px !important;
    border-radius: 13px !important;
  }

  body.launch-sales #megrendeles .checkout-trust-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 0 14px 18px !important;
    line-height: 1.45 !important;
  }

  body.launch-sales #megrendeles .checkout-trust-row span + span::before {
    display: none !important;
  }

  body.launch-sales .launch-faq {
    gap: 9px !important;
  }

  body.launch-sales .launch-faq details {
    border-radius: 14px !important;
  }

  body.launch-sales .launch-faq summary {
    min-height: 50px !important;
    padding: 14px 42px 14px 14px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
  }

  body.launch-sales .launch-faq details p {
    padding: 0 14px 15px !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  body.launch-sales .launch-footer {
    padding-top: 26px !important;
    padding-bottom: 82px !important;
    display: grid !important;
    gap: 14px !important;
  }

  body.launch-sales .launch-footer .launch-brand img {
    width: 96px !important;
    height: 54px !important;
    margin: -8px 0 2px -4px !important;
  }

  body.launch-sales .launch-footer p {
    max-width: 62ch !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  body.launch-sales .launch-footer nav {
    justify-content: flex-start !important;
    gap: 14px !important;
  }

  body.launch-sales .launch-mobile-cta {
    display: none !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: auto !important;
    min-height: 48px !important;
    border: 1px solid rgba(217,158,75,.28) !important;
    border-radius: 14px !important;
    background:
      linear-gradient(135deg, #e8c75d, #b8860b) !important;
    color: #0d0d0d !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.38), 0 0 26px rgba(217,158,75,.18) !important;
  }

  body.launch-sales.show-sticky-menu .launch-mobile-cta {
    display: flex !important;
  }

  body.launch-sales.is-checkout-zone .launch-mobile-cta {
    display: none !important;
  }
}

@media (max-width: 680px) {
  body.launch-sales .launch-header,
  body.launch-sales .launch-page,
  body.launch-sales .launch-footer,
  body.launch-sales #statisztika.statistics-showcase-section,
  body.launch-sales #belso-portal .portal-showcase,
  .free-tip-stadium-inner {
    width: min(100% - 24px, 430px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  body.launch-sales .launch-page {
    margin-top: -78px !important;
  }

  body.launch-sales .launch-header {
    min-height: 58px !important;
    margin-top: 10px !important;
  }

  body.launch-sales .launch-brand img {
    width: 104px !important;
    height: 58px !important;
  }

  body.launch-sales .launch-hero {
    padding-top: 106px !important;
    gap: 14px !important;
  }

  body.launch-sales .launch-hero-copy p {
    font-size: 14.5px !important;
  }

  body.launch-sales #statisztika .statistics-card-grid {
    grid-template-columns: 1fr !important;
  }

  body.launch-sales #statisztika .statistics-card-grid article {
    min-height: 96px !important;
  }
}

@media (max-width: 380px) {
  body.launch-sales .launch-header,
  body.launch-sales .launch-page,
  body.launch-sales .launch-footer,
  body.launch-sales #statisztika.statistics-showcase-section,
  body.launch-sales #belso-portal .portal-showcase,
  .free-tip-stadium-inner {
    width: min(100% - 20px, 360px) !important;
    max-width: calc(100vw - 20px) !important;
  }

  body.launch-sales .launch-hero h1 {
    font-size: 37px !important;
  }

  body.launch-sales .launch-hero h2 {
    font-size: 21px !important;
  }

  body.launch-sales .launch-offer-card {
    padding-inline: 14px !important;
  }

  body.launch-sales #megrendeles .checkout-summary-price strong {
    font-size: 36px !important;
  }
}

@media (max-width: 480px) {
  body.launch-sales #statisztika .launch-section-head h2 {
    font-size: clamp(29px, 8vw, 34px) !important;
    line-height: 1.02 !important;
  }
}

/* Emergency polish for the mobile opening viewport: full-bleed hero surface and a real hamburger stack. */
@media (max-width: 680px) {
  body.launch-sales {
    background:
      radial-gradient(circle at 50% -80px, rgba(217, 158, 75, .18), transparent 260px),
      linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #111 100%) !important;
  }

  body.launch-sales .launch-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.launch-sales .launch-header {
    width: calc(100% - 20px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 6px 7px 6px 10px !important;
  }

  body.launch-sales .launch-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
  }

  body.launch-sales .launch-menu-toggle span {
    flex: 0 0 2px !important;
  }

  body.launch-sales .launch-menu-toggle[aria-expanded="true"] {
    gap: 0 !important;
  }

  body.launch-sales .launch-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(2px) rotate(45deg) !important;
  }

  body.launch-sales .launch-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg) !important;
  }

  body.launch-sales .launch-hero {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  body.launch-sales .launch-hero::before {
    inset: 76px 0 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  body.launch-sales .launch-hero-visual > img {
    inset: -104px 0 auto 0 !important;
    width: 100% !important;
    height: min(640px, 94vh) !important;
    object-position: 52% 12% !important;
    opacity: 1 !important;
  }

  body.launch-sales .launch-hero-visual::after {
    inset: -104px 0 auto 0 !important;
    width: 100% !important;
    height: min(640px, 94vh) !important;
    background: transparent !important;
  }

  body.launch-sales .launch-hero-copy,
  body.launch-sales .launch-hero-visual {
    width: 100% !important;
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.launch-sales .launch-hero h2 {
    display: none !important;
  }

  body.launch-sales .launch-hero h1 {
    max-width: 100% !important;
    font-size: clamp(34px, 9.2vw, 40px) !important;
    line-height: .94 !important;
  }

  body.launch-sales .launch-hero h1 span {
    display: block !important;
    white-space: nowrap !important;
  }

  body.launch-sales .launch-hero h1::after {
    white-space: nowrap !important;
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1 !important;
  }

  body.launch-sales .launch-hero .launch-actions {
    display: none !important;
  }

  body.launch-sales .launch-hero-copy p {
    margin-top: 18px !important;
  }

  body.launch-sales .launch-hero-visual {
    margin-top: 18px !important;
  }

  body.launch-sales .launch-hero .launch-offer-card,
  body.launch-sales .launch-offer-card {
    padding-top: 58px !important;
  }

  body.launch-sales .launch-offer-badge {
    min-height: 45px !important;
    padding: 0px 15px !important;
    font-size: 13px !important;
    letter-spacing: 0em !important;
  }

  body.launch-sales .launch-offer-badge svg,
  body.launch-sales .launch-offer-badge::before {
    transform: scale(1);
  }
}

@media (max-width: 680px) {
  body.launch-sales .launch-hero {
    background: url("../images/hero-mobile.jpg") center top / cover no-repeat !important;
  }

  body.launch-sales .launch-hero-visual > img,
  body.launch-sales .launch-hero-visual::after {
    display: none !important;
  }

  body.launch-sales .launch-nav {
    background: #101010 !important;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, .58),
      inset 0 1px 0 rgba(255,255,255,.045) !important;
  }
}

/* Mobile polish pass: hero contrast, anchored navigation, compact checkout and footer. */
@media (max-width: 680px) {
  body.launch-sales .launch-page {
    margin-top: 0 !important;
  }

  body.launch-sales .launch-header,
  body.launch-sales.show-sticky-menu .launch-header {
    position: fixed !important;
    top: 6px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 0 !important;
    z-index: 1000 !important;
  }

  body.launch-sales .launch-hero {
    scroll-margin-top: 76px !important;
    padding-top: 98px !important;
    background:
      linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.46) 58%, rgba(0,0,0,.76)),
      linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.62) 64%, rgba(0,0,0,.88)),
      url("../images/hero-mobile.jpg") center top / cover no-repeat !important;
  }

  body.launch-sales #belso-portal,
  body.launch-sales #ingyenes-tipp,
  body.launch-sales #statisztika,
  body.launch-sales #megrendeles,
  body.launch-sales #gyik {
    scroll-margin-top: 92px !important;
  }

  body.launch-sales .launch-offer-lead {
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.launch-sales #megrendeles .checkout-summary-bar {
    gap: 7px !important;
    padding: 15px 16px 13px !important;
  }

  body.launch-sales #megrendeles .checkout-summary-price {
    margin: 0 !important;
  }

  body.launch-sales #megrendeles .checkout-summary-price strong {
    font-size: 38px !important;
    line-height: .9 !important;
  }

  body.launch-sales #megrendeles .checkout-stripe-secure {
    width: auto !important;
    min-height: 32px !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 2px 0 0 !important;
    margin-top: 2px !important;
  }

  body.launch-sales #megrendeles .checkout-stripe-secure svg {
    width: 16px !important;
    height: 16px !important;
  }

  body.launch-sales #megrendeles .checkout-stripe-secure span {
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body.launch-sales #megrendeles .stripe-wordmark {
    padding: 5px 9px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    border-radius: 7px !important;
  }

  body.launch-sales .launch-footer {
    padding-top: 24px !important;
    padding-bottom: 18px !important;
    margin-bottom: 0 !important;
  }

  body.launch-sales .launch-footer .launch-brand img {
    margin-bottom: 0 !important;
  }

  body.launch-sales .launch-mobile-cta,
  body.launch-sales.show-sticky-menu .launch-mobile-cta,
  body.launch-sales.is-checkout-zone .launch-mobile-cta {
    display: none !important;
  }
}

/* Mobile top bar + global sticky CTA final behavior. */
@media (max-width: 680px) {
  body.launch-sales .launch-header,
  body.launch-sales.show-sticky-menu .launch-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 64px !important;
    margin: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    padding: 6px 10px !important;
  }

  body.launch-sales .launch-header::before {
    left: 0 !important;
    right: 0 !important;
  }

  body.launch-sales .launch-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    padding: 10px !important;
  }

  body.launch-sales .launch-hero {
    padding-top: 92px !important;
  }

  body.launch-sales #belso-portal,
  body.launch-sales #ingyenes-tipp,
  body.launch-sales #statisztika,
  body.launch-sales #megrendeles,
  body.launch-sales #gyik {
    scroll-margin-top: 70px !important;
  }

  body.launch-sales .launch-mobile-cta,
  body.launch-sales.show-sticky-menu .launch-mobile-cta,
  body.launch-sales.is-checkout-zone .launch-mobile-cta {
    display: grid !important;
    grid-template-columns: auto auto !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 900 !important;
    width: 100% !important;
    min-height: 54px !important;
    align-items: center !important;
    justify-content: center !important;
    justify-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
    border: 0 !important;
    border-top: 1px solid rgba(217,158,75,.30) !important;
    border-radius: 0 !important;
    background:
      linear-gradient(180deg, rgba(15,15,15,.98), rgba(8,8,8,.98)) !important;
    color: #f5f3ee !important;
    box-shadow: 0 -16px 34px rgba(0,0,0,.38) !important;
  }

  body.launch-sales .launch-mobile-cta svg {
    width: 18px !important;
    height: 18px !important;
    color: #fff !important;
    stroke-width: 2.4 !important;
    flex: 0 0 auto !important;
    justify-self: end !important;
  }

  body.launch-sales .launch-mobile-cta span {
    flex: 0 0 auto !important;
    justify-self: start !important;
  }

  body.launch-sales.is-checkout-zone .launch-mobile-cta {
    display: none !important;
  }

  body.launch-sales .launch-footer {
    padding-bottom: 12px !important;
  }
}

/* Final footer and free-tip CTA placement cleanup. */
@media (max-width: 680px) {
  body.launch-sales .launch-footer {
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
  }
}

.free-tip-glass-card + .free-tip-cta-row {
  margin-top: clamp(16px, 2.5vw, 24px) !important;
  margin-bottom: 0 !important;
}

.launch-sales .launch-hero .launch-offer-card {
  background: rgba(12, 17, 25, .3) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  backdrop-filter: blur(3px) !important;
}

@media (max-width: 680px) {
  body.launch-sales .launch-hero .launch-offer-card,
  body.launch-sales .launch-offer-card {
    background: rgba(12, 17, 25, .3) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    backdrop-filter: blur(3px) !important;
  }

  body.launch-sales #belso-portal .portal-section-label {
    margin-bottom: 0 !important;
  }

  body.launch-sales #belso-portal .launch-section-head h2 {
    margin-top: 10px !important;
  }
}

.auth-shell .login-logo {
  width: 154px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.auth-shell .login-card h1 {
  margin-bottom: 24px;
}

.login-purchase-notice {
  margin: -4px 0 18px;
  line-height: 1.5;
}

.login-purchase-notice strong {
  display: block;
  margin-bottom: 8px;
}

.login-purchase-notice p {
  margin: 0;
}

.login-purchase-notice p + p {
  margin-top: 8px;
}

.password-reminder {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.password-reminder summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 600;
}

.password-reminder-form {
  margin-top: 12px;
}

.login-home-link {
  width: 100%;
  justify-content: center;
  margin-top: 34px;
}

.login-submit-button {
  gap: 10px;
}

.login-submit-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

@media (max-width: 680px) {
  .auth-shell .login-page {
    min-height: 100svh;
    place-items: start center;
    padding: 18px 10px 28px;
  }

  .auth-shell .login-card {
    width: min(100%, 440px);
    margin-top: 18px;
    padding: 24px 22px;
  }

  .auth-shell .login-logo {
    width: 168px;
    margin-bottom: 10px;
  }

  .auth-shell .login-card h1 {
    margin-bottom: 26px;
  }

  .auth-shell input,
  .auth-shell select,
  .auth-shell textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 380px) {
  .auth-shell .login-page {
    padding-inline: 8px;
  }

  .auth-shell .login-card {
    width: 100%;
    padding-inline: 20px;
  }
}
