:root {
  --nox-dark: #001a33;
  --nox-darker: #00101f;
  --nox: #003366;
  --nox-light: #004d99;
  --accent: #007bff;
  --cyan: #00d2ff;
  --ice: #7fe3ff;
  --pitch: #2fd98b;
  --gold: #ffb938;
  --magenta: #ff00ff;
  --red: #ff6b6b;
  --ink: #eaf4ff;
  --muted: #8fa9c4;
  --line: rgba(0, 210, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.045);
  --radius: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--nox-dark);
  overflow-x: hidden;
}

::selection { background: rgba(0, 210, 255, 0.35); }

h1, h2, h3, h4 {
  font-family: Montserrat, Inter, sans-serif;
  margin-top: 0;
  letter-spacing: 0.01em;
}

h1 {
  font-weight: 900;
  font-size: clamp(2.7rem, 7.6vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
  margin: 26px 0 24px;
}

h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h3 {
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

p { margin-top: 0; }

a { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.grad-text {
  background: linear-gradient(100deg, var(--cyan) 10%, var(--accent) 55%, var(--magenta) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-gold {
  background: linear-gradient(100deg, var(--gold) 0%, #ffdf8e 60%, #e8c07a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-pitch {
  background: linear-gradient(100deg, var(--pitch) 0%, #8ff5c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-ice {
  background: linear-gradient(100deg, var(--ice) 0%, #ffffff 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Nav ---------- */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}

#navbar.scrolled {
  background: rgba(0, 16, 31, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-height: 44px;
}

.brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.brand:hover img { transform: rotate(12deg); }

.brand span {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding: 12px 2px;
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--cyan); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch a {
  padding: 6px 11px !important;
  font-size: 0.68rem !important;
  font-weight: 800;
  letter-spacing: 0.1em !important;
  color: var(--muted) !important;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch a + a { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.lang-switch a:hover { color: var(--ink) !important; background: rgba(255, 255, 255, 0.08); }
.lang-switch a.on { color: #04121f !important; background: var(--cyan); }

.lang-switch.mob { margin-top: 14px; align-self: flex-start; }

.nav-cta {
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 10px 20px !important;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover { background: var(--accent); color: #fff !important; }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.nav-burger svg { display: block; }

#mobileMenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 22px 22px;
  background: rgba(0, 16, 31, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

#mobileMenu a {
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  padding: 13px 6px;
  border-radius: 8px;
}

#mobileMenu a:hover { background: rgba(0, 210, 255, 0.1); color: var(--cyan); }

#mobileMenu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 60px;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(0, 77, 153, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(0, 51, 102, 0.6), transparent 55%),
    var(--nox-dark);
  isolation: isolate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
  animation: orbPulse 6s ease-in-out infinite;
}

.orb.o1 { top: 12%; left: 6%; width: 220px; height: 220px; background: var(--accent); }
.orb.o2 { bottom: 10%; right: 8%; width: 340px; height: 340px; background: var(--pitch); animation-delay: 1.4s; }
.orb.o3 { top: 46%; left: 44%; width: 260px; height: 260px; background: var(--gold); opacity: 0.14; animation-delay: 2.6s; }

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.22; }
  50% { transform: scale(1.18); opacity: 0.3; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 210, 255, 0.07);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 210, 255, 0.16);
  animation: dotBlink 2.2s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-sub {
  max-width: 570px;
  color: #c3d7ec;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 300;
}

.hero-sub strong { color: var(--cyan); font-weight: 700; }
.hero-sub b { color: var(--gold); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-neon {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(0, 123, 255, 0.45);
  border: 1px solid transparent;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(0, 210, 255, 0.6);
  background: #1a8cff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold), #ffd066);
  color: #241500;
  border: 1px solid transparent;
  box-shadow: 0 0 26px rgba(255, 185, 56, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(255, 185, 56, 0.55);
}

/* ---------- Hero: sized so price, timeline and the ask clear the fold ---------- */
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.5rem); margin: 20px 0 20px; }
.hero .hero-sub { margin-bottom: 0; }

/* ---------- Hero offer strip ---------- */
.offer-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 26px 0 30px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-strip li {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 16px 14px 0;
  margin-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-strip li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

.offer-strip b {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--gold);
  white-space: nowrap;
}

.offer-strip span {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- First-partner discount ---------- */
.first-deal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 185, 56, 0.42);
  border-radius: 10px;
  background: linear-gradient(110deg, rgba(255, 185, 56, 0.14), rgba(255, 185, 56, 0.03));
}

.first-deal b {
  flex: 0 0 auto;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.first-deal span { font-size: 0.86rem; line-height: 1.5; color: var(--muted); }
.first-deal strong { color: var(--ink); }

.fu-deal {
  margin: 26px 0 0;
  padding: 18px 22px;
  border: 1px dashed rgba(255, 185, 56, 0.5);
  border-radius: 10px;
  background: rgba(255, 185, 56, 0.07);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.fu-deal b {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.fu-deal strong { color: var(--ink); }

@media (max-width: 560px) {
  .first-deal { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- Mid-page ask ---------- */
.ask {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 185, 56, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 185, 56, 0.09), rgba(255, 185, 56, 0.02));
}

.ask p {
  margin: 0;
  flex: 1 1 320px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.ask p strong { color: var(--gold); }
.ask .btn { flex: 0 0 auto; }

/* ---------- Sticky mobile ask ---------- */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0, 16, 31, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 185, 56, 0.3);
}

.dock span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.dock b { display: block; color: var(--gold); font-size: 0.86rem; }
.dock .btn { margin-left: auto; min-height: 44px; padding: 11px 18px; font-size: 0.74rem; }

@media (max-width: 780px) {
  .dock { display: flex; }
  body { padding-bottom: 76px; }
  .offer-strip li { padding-right: 18px; margin-right: 18px; }
  .ask { padding: 24px 20px; }
}

@media (max-width: 420px) {
  .dock span { display: none; }
  .dock .btn { margin-left: 0; width: 100%; }
}

/* ---------- First-mover block ---------- */
.first-up {
  margin-top: 48px;
  padding: 38px 40px;
  border: 1px solid rgba(47, 217, 139, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 217, 139, 0.08), rgba(47, 217, 139, 0.015) 60%);
}

.first-up > h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 900;
  margin: 0 0 26px;
  max-width: 24ch;
}

.fu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.fu-grid h4 {
  font-family: Montserrat, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 9px;
  padding-top: 14px;
  border-top: 2px solid var(--pitch);
}

.fu-grid p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.fu-grid p strong { color: var(--ink); }

/* ---------- Real season block ---------- */
.real-season {
  margin-top: 46px;
  padding: 38px 40px;
  border: 1px solid rgba(0, 210, 255, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.07), rgba(0, 210, 255, 0.012) 60%);
}

.real-season > h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 900;
  margin: 0 0 14px;
  max-width: 30ch;
}

.real-season .rs-lede {
  color: var(--muted);
  max-width: 74ch;
  margin: 0 0 30px;
  font-size: 0.98rem;
}

.real-season .rs-lede strong { color: var(--ink); }

.real-season h4 {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 9px;
  padding-top: 14px;
  border-top: 2px solid var(--cyan);
}

/* ---------- Guarantees ---------- */
.guarantees {
  margin-top: 54px;
  padding: 38px 40px;
  border: 1px solid rgba(255, 185, 56, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 185, 56, 0.08), rgba(255, 185, 56, 0.015) 60%);
}

.guarantees > h3 {
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 900;
  margin: 0 0 28px;
  max-width: 30ch;
}

.guarantees .g-num {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}

.guarantees h4 {
  font-family: Montserrat, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 9px;
  padding-top: 13px;
  border-top: 2px solid var(--gold);
}

.guarantees p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.guarantees p strong { color: var(--ink); }

@media (max-width: 900px) {
  .fu-grid { grid-template-columns: 1fr; gap: 24px; }
  .first-up, .real-season, .guarantees { padding: 28px 22px; }
}

/* ---------- Landscape device mock ---------- */
.mock-wrap {
  position: relative;
  display: grid;
  justify-items: center;
}

.mock-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(0, 16, 31, 0.9);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
}

.mock-chip small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

.mock-chip.c1 { top: -6%; left: -3%; color: var(--pitch); }
.mock-chip.c2 { bottom: -8%; right: -3%; color: var(--ice); animation-delay: 1.2s; }
.mock-chip.c3 { bottom: 34%; left: -9%; color: var(--gold); animation-delay: 2.3s; }

.mock-chip.c4 {
  top: -7%;
  right: -3%;
  color: var(--gold);
  animation-delay: 0.6s;
  border-color: rgba(255, 185, 56, 0.45);
  background: rgba(24, 16, 0, 0.9);
}

.mock-chip.c5 {
  bottom: -9%;
  left: -3%;
  color: var(--ice);
  animation-delay: 1.8s;
  border-color: rgba(127, 227, 255, 0.4);
  background: rgba(0, 22, 38, 0.92);
}

.mock-chip.c4 b,
.mock-chip.c5 b {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.device {
  position: relative;
  width: min(520px, 92%);
  aspect-ratio: 19.5 / 9;
  border-radius: 30px;
  border: 9px solid #020d18;
  background: #041525;
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 123, 255, 0.2);
}

.device img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 24, 0.28), transparent 22%, transparent 80%, rgba(2, 13, 24, 0.35));
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  opacity: 0.5;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--nox-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 40px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.stat:first-child { border-left: 0; }

.stat .n {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.45;
}

.stat p b { color: var(--ink); font-weight: 700; }

/* ---------- Sections ---------- */
section { position: relative; padding: 100px 0; }

.sec-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 14px;
}

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 50px;
}

.sec-head p { color: var(--muted); margin-bottom: 0; }

.darker { background: var(--nox-darker); }

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 30px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.icon-badge svg { width: 26px; height: 26px; }

.icon-badge.gold { background: rgba(255, 185, 56, 0.1); border-color: rgba(255, 185, 56, 0.35); }
.icon-badge.pitch { background: rgba(47, 217, 139, 0.1); border-color: rgba(47, 217, 139, 0.35); }
.icon-badge.magenta { background: rgba(255, 0, 255, 0.08); border-color: rgba(255, 0, 255, 0.3); }

.card-text { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.card-text strong { color: var(--ink); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.note {
  margin-top: 26px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 185, 56, 0.06);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.note strong { color: var(--gold); }

/* ---------- Image tiles with graceful placeholder ---------- */
.shot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 12px, transparent 12px 24px),
    linear-gradient(140deg, rgba(0, 123, 255, 0.28), rgba(0, 210, 255, 0.06));
}

.shot::before {
  content: attr(data-label);
  padding: 0 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ---------- Lineup ---------- */
.title-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 26px;
}

.title-card .app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc, var(--cyan));
  border: 1px solid color-mix(in srgb, var(--tc, var(--cyan)) 45%, transparent);
  background: color-mix(in srgb, var(--tc, var(--cyan)) 9%, transparent);
}

.title-card h3 { margin: 12px 0 6px; font-size: 1.28rem; text-transform: uppercase; }

.title-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.title-stats li {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.title-stats b {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  min-height: 44px;
}

.store-link:hover { text-decoration: underline; }

.sport-card { padding: 22px 22px 24px; }
.sport-card h3 { font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 12px 0 6px; }
.sport-card p { font-size: 0.84rem; color: var(--muted); margin: 0; }

/* ---------- Annotated shot ---------- */
.annotated {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, rgba(0, 123, 255, 0.25), rgba(0, 210, 255, 0.05));
}

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

.hot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: #00121f;
  background: var(--cyan);
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px rgba(0, 210, 255, 0.22), 0 6px 18px rgba(0, 0, 0, 0.5);
  animation: hotPulse 2.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes hotPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0, 210, 255, 0.2), 0 6px 18px rgba(0, 0, 0, 0.5); }
  50% { box-shadow: 0 0 0 13px rgba(0, 210, 255, 0.06), 0 6px 18px rgba(0, 0, 0, 0.5); }
}

.hot-legend {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: hotl;
}

.hot-legend li {
  position: relative;
  padding-left: 46px;
  counter-increment: hotl;
}

.hot-legend li::before {
  content: counter(hotl);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--cyan);
  border: 1px solid rgba(0, 210, 255, 0.45);
  background: rgba(0, 210, 255, 0.08);
}

.hot-legend h4 {
  margin: 3px 0 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hot-legend p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- LED board divider ---------- */
.board {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #062a4d, #041c34 55%, #02101f);
}

.board-track {
  display: flex;
  width: max-content;
  animation: boardScroll 32s linear infinite;
}

.board-track span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 22px 26px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.16);
}

.board-track span em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 185, 56, 0.5);
}

.board-track span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.5);
  flex: 0 0 auto;
}

@keyframes boardScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Bundles ---------- */
.bundles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.bundle {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  overflow: hidden;
}

.bundle .flare {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
  background: var(--bc, var(--cyan));
}

.bundle .tier {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  color: var(--bc, var(--cyan));
}

.bundle h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.32rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bundle .pitchline {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
  min-height: 62px;
}

.bundle .price {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1;
  color: var(--bc, var(--cyan));
  margin-bottom: 4px;
}

.bundle .per {
  color: var(--muted);
  font-size: 0.76rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.bundle ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 11px;
  color: #c3d7ec;
  font-size: 0.87rem;
}

.bundle ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

.bundle ul svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; }

.bundle .foot {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.bundle .foot div {
  padding: 11px 6px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bundle .foot strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.bundle.featured { border-color: rgba(255, 185, 56, 0.45); }

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(120deg, var(--gold), #ffd066);
  color: #241500;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
}

/* ---------- Two approaches ---------- */
.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}

.track { padding: 30px 28px; }

.track .tk {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--tkc, var(--cyan));
  margin-bottom: 10px;
}

.track h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.track > p { color: var(--muted); font-size: 0.93rem; }
.track > p strong { color: var(--ink); }

.track ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
  color: #c3d7ec;
}

.track ul li { display: flex; gap: 10px; align-items: baseline; line-height: 1.45; }

.track ul li b {
  flex: 0 0 auto;
  min-width: 62px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  color: var(--tkc, var(--cyan));
}

.track .real {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---------- Dual price ---------- */
.price-two { display: grid; gap: 9px; margin: 4px 0 16px; }

.price-two div {
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-two .pl {
  display: block;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.price-two strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1.05;
  color: var(--bc, var(--cyan));
}

.price-two small {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.35;
}

/* ---------- Scarcity limit ---------- */
.limit {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 185, 56, 0.4);
  background: rgba(255, 185, 56, 0.07);
}

.limit .cap {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.35;
}

.pips { display: flex; gap: 5px; }

.pips i {
  width: 100%;
  max-width: 18px;
  height: 6px;
  border-radius: 3px;
  background: var(--gold);
  opacity: 0.9;
}

/* ---------- Any-sport strip ---------- */
.sports-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 36px auto 16px;
}

.sports-strip .shot { aspect-ratio: 16 / 9; border-radius: 12px; }
.sports-strip .shot::before { font-size: 0.56rem; letter-spacing: 0.12em; }

.strip-cap {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 0.85rem;
}

.strip-cap strong { color: var(--ink); }

.cta .mins {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.3em;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- Split the fee ---------- */
.split-offer {
  position: relative;
  margin-top: 26px;
  padding: 36px 34px;
  overflow: hidden;
  border-color: rgba(255, 185, 56, 0.35);
}

.split-offer:hover { border-color: rgba(255, 185, 56, 0.6); }

.split-offer .flare {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  pointer-events: none;
  background: var(--gold);
}

.split-offer h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.split-offer > p { color: var(--muted); max-width: 760px; font-size: 0.97rem; margin-bottom: 0; }
.split-offer > p strong { color: var(--ink); }

.split-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.split-examples div {
  padding: 18px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-examples .who {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.split-examples strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--gold);
}

.split-examples small {
  display: block;
  margin-top: 6px;
  font-size: 0.73rem;
  line-height: 1.45;
  color: var(--muted);
}

.split-fine {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.85rem;
}

.split-fine strong { color: var(--ink); }

/* ---------- Add-ons ---------- */
.addon { display: flex; flex-direction: column; padding: 24px 22px; }
.addon .icon-badge { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 14px; }
.addon .icon-badge svg { width: 21px; height: 21px; }
.addon h3 { font-size: 0.97rem; margin-bottom: 8px; }
.addon p { color: var(--muted); font-size: 0.82rem; margin-bottom: 18px; }

.addon .price-tag {
  margin-top: auto;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold);
}

.addon .price-tag small {
  display: block;
  margin-top: 5px;
  font-family: Inter, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Pipeline ---------- */
.pipe .glass-card { position: relative; padding-top: 56px; }

.pipe .glass-card::before {
  counter-increment: pipe;
  content: "0" counter(pipe);
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: rgba(0, 210, 255, 0.4);
}

.pipe { counter-reset: pipe; }

/* ---------- Timeline ---------- */
.tl { position: relative; margin: 0; padding: 0 0 0 34px; list-style: none; }

.tl::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  opacity: 0.5;
}

.tl li { position: relative; padding: 0 0 34px; }
.tl li:last-child { padding-bottom: 0; }

.tl li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--nox-dark);
  border: 3px solid var(--cyan);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.5);
}

.tl li.gold::before { border-color: var(--gold); box-shadow: 0 0 16px rgba(255, 185, 56, 0.5); }

.tl .when {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.tl li.gold .when { color: var(--gold); }

.tl h3 { margin: 6px 0 6px; font-size: 1.2rem; }
.tl p { color: var(--muted); max-width: 640px; margin-bottom: 0; }

/* ---------- Terms table ---------- */
.terms {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.terms th, .terms td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.terms th {
  width: 230px;
  background: rgba(0, 210, 255, 0.05);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.terms td { color: #c3d7ec; }
.terms td strong { color: #fff; }
.terms tr:last-child th, .terms tr:last-child td { border-bottom: 0; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); }

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(0, 123, 255, 0.35), transparent 60%),
    radial-gradient(ellipse at 15% 0%, rgba(47, 217, 139, 0.14), transparent 50%),
    var(--nox-darker);
}

.cta h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); }

.cta p { color: var(--muted); max-width: 580px; margin: 0 auto 34px; }

.cta .hero-actions { justify-content: center; margin-top: 0; }

.cta .mail {
  display: inline-block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta .mail a { color: var(--cyan); text-decoration: none; font-weight: 700; }
.cta .mail a:hover { text-decoration: underline; }

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nox-darker);
  color: var(--muted);
  font-size: 0.8rem;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.12em; color: var(--ink); }
.foot-brand img { height: 26px; width: 26px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .mock-wrap { order: 2; }
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .grid-4, .bundles { grid-template-columns: repeat(2, 1fr); }
  .tracks { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .hot-legend { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4, .bundles, .hot-legend, .tracks, .split-examples { grid-template-columns: 1fr; }
  .sports-strip { grid-template-columns: repeat(2, 1fr); }
  .split-offer { padding: 28px 22px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 28px 20px; }
  .stat:first-child { border-top: 0; }
  .mock-wrap { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
  .device { order: -1; width: 100%; margin-bottom: 8px; }
  .mock-chip {
    position: static;
    inset: auto;
    animation: none;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .mock-chip small { display: inline; }
  .title-card { grid-template-columns: 1fr; }
  .title-card .app-icon { width: 76px; height: 76px; }
  .terms th { width: 130px; padding: 13px 14px; }
  .terms td { padding: 13px 14px; }
  .hot { width: 26px; height: 26px; font-size: 0.72rem; }
}
