:root {
  --bg: #070000;
  --bg2: #120101;
  --card: #1a0708;
  --card2: #240607;
  --red: #f53236;
  --red2: #ff4a4f;
  --red-dark: #6e090d;
  --gold: #ffd84d;
  --white: #fff5f0;
  --text: rgba(255, 245, 240, 0.9);
  --soft: rgba(255, 245, 240, 0.66);
  --muted: rgba(255, 245, 240, 0.42);
  --line: rgba(255, 245, 240, 0.11);
  --red-line: rgba(245, 50, 54, 0.38);
  --red-soft: rgba(245, 50, 54, 0.15);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  font-family: var(--font);
  background:
    radial-gradient(
      circle at 15% 14%,
      rgba(245, 50, 54, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 8%,
      rgba(255, 216, 77, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 96%,
      rgba(245, 50, 54, 0.14),
      transparent 38%
    ),
    linear-gradient(180deg, #130102 0%, #070000 52%, #020000 100%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle, black 38%, transparent 90%);
}

.cursor-light {
  position: fixed;
  z-index: 1;
  width: 420px;
  height: 420px;
  translate: -50% -50%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 50, 54, 0.16), transparent 66%);
  filter: blur(18px);
}

.page-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
}

.page-glow-one {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -170px;
  background: radial-gradient(circle, rgba(245, 50, 54, 0.24), transparent 66%);
}

.page-glow-two {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.1), transparent 70%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  width: min(1180px, calc(100% - 34px));
  min-height: 74px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(14, 0, 1, 0.66);
  backdrop-filter: blur(26px);
  box-shadow: 0 20px 78px rgba(0, 0, 0, 0.44);
  transition: 0.3s ease;
}

.site-header.scrolled {
  top: 9px;
  border-color: var(--red-line);
  background: rgba(7, 0, 0, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(255, 255, 255, 0.2),
      transparent 20%
    ),
    linear-gradient(135deg, var(--red2), var(--red));
  box-shadow: 0 0 34px rgba(245, 50, 54, 0.42);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a {
  transition: 0.24s ease;
}

.desktop-nav a:hover {
  color: var(--red2);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 54px rgba(245, 50, 54, 0.36);
  transition: 0.28s ease;
}

.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 74px rgba(245, 50, 54, 0.5);
}

.menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 20px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  place-items: center;
  background: rgba(5, 0, 0, 0.96);
  backdrop-filter: blur(24px);
}

.mobile-menu.active {
  display: grid;
}

.mobile-menu a {
  display: block;
  margin: 18px 0;
  text-align: center;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 95px;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.55;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px var(--red);
}

h1 {
  max-width: 870px;
  margin-top: 22px;
  font-size: clamp(54px, 8.2vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

h2 {
  max-width: 800px;
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-content p,
.section-copy p,
.section-head p,
.diary-copy p,
.download-card p {
  max-width: 650px;
  margin-top: 28px;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.68;
}

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

.btn {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 950;
  transition: 0.3s ease;
}

.primary-btn {
  background: var(--red);
  color: #fff;
  box-shadow: 0 24px 64px rgba(245, 50, 54, 0.36);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 84px rgba(245, 50, 54, 0.52);
}

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

.ghost-btn:hover {
  border-color: var(--red-line);
  color: var(--red2);
  transform: translateY(-4px);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin-top: 48px;
}

.hero-mini-stats div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(26, 7, 8, 0.76);
  border: 1px solid var(--line);
}

.hero-mini-stats strong {
  display: block;
  color: var(--red2);
  font-size: 30px;
}

.hero-mini-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.hero-phone-wrap {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.halo-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(245, 50, 54, 0.14);
  box-shadow: 0 0 80px rgba(245, 50, 54, 0.22);
  animation: pulseRing 4.5s ease-in-out infinite;
}

.phone-frame {
  width: min(386px, 82vw);
  height: 720px;
  padding: 22px;
  border-radius: 48px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    #070000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transform: rotateY(-10deg) rotateX(4deg);
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: rgba(255, 245, 240, 0.72);
  font-size: 13px;
}

.app-head {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
}

.app-logo-dot {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(255, 255, 255, 0.22),
      transparent 20%
    ),
    var(--red);
}

.app-head h3 {
  font-size: 36px;
  letter-spacing: -0.06em;
}

.xp-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 50, 54, 0.14);
  border: 1px solid var(--red-line);
  color: var(--red2);
  font-weight: 950;
}

.scout-profile {
  display: grid;
  grid-template-columns: 68px 1fr 70px;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(245, 50, 54, 0.08);
  border: 1px solid var(--red-line);
}

.ball-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(245, 50, 54, 0.5);
  background: rgba(245, 50, 54, 0.15);
  font-size: 28px;
}

.scout-profile h4 {
  font-size: 16px;
}

.scout-profile p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.scout-profile span {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.scout-profile strong {
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  color: var(--gold);
  background: rgba(255, 216, 77, 0.1);
}

.app-dashboard-preview h5 {
  margin-top: 30px;
  font-size: 22px;
}

.empty-ball {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 92px auto 0;
  border-radius: 50%;
  font-size: 52px;
  background: rgba(255, 255, 255, 0.04);
}

.empty-title,
.empty-sub {
  text-align: center;
}

.empty-title {
  margin-top: 22px;
  color: var(--soft);
  font-weight: 950;
  font-size: 19px;
}

.empty-sub {
  margin-top: 8px;
  color: rgba(255, 245, 240, 0.26);
}

.floating-plus {
  position: absolute;
  right: 24px;
  bottom: 108px;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 24px;
  background: var(--red);
  color: #fff;
  font-size: 38px;
  box-shadow: 0 24px 64px rgba(245, 50, 54, 0.42);
}

.mock-bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 8px 10px;
  border-top: 1px solid rgba(245, 50, 54, 0.16);
  background: rgba(20, 1, 2, 0.95);
}

.mock-bottom-nav span {
  display: grid;
  place-items: center;
  gap: 3px;
  color: rgba(255, 245, 240, 0.24);
  font-size: 20px;
}

.mock-bottom-nav small {
  font-size: 11px;
}

.mock-bottom-nav .active {
  color: var(--red);
}

.float-tag {
  position: absolute;
  width: 190px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(26, 7, 8, 0.84);
  border: 1px solid var(--red-line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: floatTag 5s ease-in-out infinite;
}

.float-tag b,
.float-tag span {
  display: block;
}

.float-tag b {
  color: var(--red2);
  font-size: 20px;
}

.float-tag span {
  margin-top: 5px;
  color: var(--soft);
  line-height: 1.4;
}

.tag-one {
  top: 16%;
  left: -12px;
}

.tag-two {
  right: -8px;
  bottom: 19%;
  animation-delay: -2.2s;
}

.brand-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 52px;
  padding: 24px 0;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  color: rgba(255, 245, 240, 0.17);
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.overview-grid,
.split-section,
.prediction-section,
.diary-section,
.screens-section,
.download-section,
.footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.overview-grid {
  padding: 120px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.overview-card {
  min-height: 315px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(26, 7, 8, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transition: 0.35s ease;
}

.overview-card:hover {
  transform: translateY(-12px);
  border-color: var(--red-line);
}

.card-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 75px;
  border-radius: 22px;
  font-size: 28px;
}

.red-icon {
  color: var(--red);
  background: rgba(245, 50, 54, 0.15);
}

.dark-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.gold-icon {
  color: var(--gold);
  background: rgba(255, 216, 77, 0.12);
}

.diary-icon {
  color: var(--red2);
  background: rgba(245, 50, 54, 0.1);
}

.overview-card h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.overview-card p {
  margin-top: 12px;
  color: var(--soft);
  line-height: 1.62;
}

.split-section {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.scout-panel,
.transfer-panel,
.prediction-card,
.diary-card,
.glass-stat,
.download-card {
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(26, 7, 8, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.scout-panel,
.transfer-panel,
.prediction-card,
.diary-card {
  padding: 28px;
}

.panel-top,
.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-top span {
  font-size: 42px;
}

.panel-top h3,
.panel-title-row h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.panel-top b,
.panel-title-row button {
  color: var(--red2);
  font-weight: 950;
}

.panel-title-row button {
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  background: var(--red);
  color: #fff;
}

.scout-panel h4,
.transfer-panel label,
.prediction-card label,
.diary-card label {
  display: block;
  margin: 28px 0 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
}

.input-line,
.three-inputs div,
.mini-grid div {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 16px;
  background: rgba(55, 3, 5, 0.5);
  border: 1px solid rgba(245, 50, 54, 0.16);
  color: rgba(255, 245, 240, 0.34);
  font-size: 18px;
}

.three-inputs,
.two-inputs,
.mini-grid {
  display: grid;
  gap: 14px;
}

.three-inputs {
  grid-template-columns: repeat(3, 1fr);
}

.two-inputs,
.mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.chip-row,
.segmented,
.mood-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row span,
.segmented span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(55, 3, 5, 0.52);
  border: 1px solid rgba(245, 50, 54, 0.17);
  color: rgba(255, 245, 240, 0.5);
  font-weight: 850;
}

.chip-row span.active,
.segmented span.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.attribute-list {
  display: grid;
  gap: 26px;
  margin-top: 32px;
}

.attribute-list div {
  display: grid;
  grid-template-columns: 90px 42px 1fr;
  align-items: center;
  gap: 18px;
}

.attribute-list span {
  color: rgba(255, 245, 240, 0.46);
}

.attribute-list b {
  color: #fff;
}

.attribute-list i {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.attribute-list i::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: var(--red);
}

.drag-line {
  width: 54px;
  height: 5px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(245, 50, 54, 0.22);
}

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

.stars {
  margin-top: 30px;
  color: var(--gold);
  font-size: 34px;
  letter-spacing: 6px;
}

.prediction-section,
.diary-section,
.screens-section,
.download-section {
  padding: 120px 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 54px;
}

.prediction-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.prediction-card {
  grid-row: span 2;
}

.odds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.odds-row div {
  min-height: 86px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(55, 3, 5, 0.5);
  border: 1px solid rgba(245, 50, 54, 0.18);
}

.odds-row span,
.glass-stat span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.odds-row b {
  display: block;
  margin-top: 10px;
  font-size: 24px;
}

.glass-stat {
  min-height: 245px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-stat strong {
  display: block;
  margin-top: 14px;
  color: var(--red2);
  font-size: 56px;
  letter-spacing: -0.06em;
}

.glass-stat p {
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.6;
}

.stat-bar {
  height: 10px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.stat-bar i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
}

.stat-bar.second i {
  width: 78%;
  background: var(--gold);
}

.diary-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.mood-row span {
  min-width: 78px;
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(55, 3, 5, 0.48);
  border: 1px solid rgba(245, 50, 54, 0.16);
  font-size: 26px;
}

.mood-row span.active {
  border-color: var(--red);
  box-shadow: 0 0 24px rgba(245, 50, 54, 0.18);
}

.textarea-preview {
  min-height: 190px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(55, 3, 5, 0.5);
  border: 1px solid rgba(245, 50, 54, 0.18);
  color: rgba(255, 245, 240, 0.34);
  line-height: 1.5;
}

.screen-carousel {
  position: relative;
}

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

.screen-card {
  padding: 22px;
  border-radius: 34px;
  background: rgba(26, 7, 8, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.screen-card:hover {
  transform: translateY(-12px);
  border-color: var(--red-line);
}

.screen-mock {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 50, 54, 0.2), transparent 38%),
    linear-gradient(180deg, #220507, #070000);
  border: 1px solid rgba(245, 50, 54, 0.18);
}

.big-red-orb {
  width: 150px;
  height: 150px;
  margin: 76px auto 70px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.2),
      transparent 16%
    ),
    var(--red);
  box-shadow:
    0 0 0 46px rgba(245, 50, 54, 0.1),
    0 0 80px rgba(245, 50, 54, 0.35);
}

.onboarding-mock h3 {
  text-align: center;
  font-size: 44px;
  letter-spacing: -0.06em;
}

.onboarding-mock p {
  margin: 22px auto 0;
  max-width: 300px;
  text-align: center;
  color: var(--soft);
  line-height: 1.55;
}

.mock-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 74px;
}

.mock-dots span,
.mock-dots i {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-dots span {
  width: 38px;
  background: var(--red);
}

.mock-dots i {
  width: 10px;
}

.screen-mock button {
  width: 100%;
  min-height: 58px;
  margin-top: 34px;
  border: 0;
  border-radius: 18px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
}

.screen-mock h3 {
  font-size: 30px;
  margin-bottom: 22px;
}

.screen-card h4 {
  margin-top: 22px;
  font-size: 25px;
}

.screen-card p {
  margin-top: 9px;
  color: var(--soft);
  line-height: 1.6;
}

.slide-btn {
  display: none;
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  box-shadow: 0 22px 58px rgba(245, 50, 54, 0.36);
}

.prev {
  left: -18px;
}

.next {
  right: -18px;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.carousel-dots button.active {
  width: 36px;
  background: var(--red);
}

.download-card {
  padding: clamp(38px, 7vw, 86px);
  text-align: center;
  border-color: var(--red-line);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 50, 54, 0.24), transparent 42%),
    rgba(26, 7, 8, 0.82);
}

.download-card h2,
.download-card p {
  margin-left: auto;
  margin-right: auto;
}

.download-card .btn {
  margin-top: 34px;
}

.footer {
  padding: 46px 0 70px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.footer p {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.85s ease;
}

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

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatTag {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero,
  .split-section,
  .reverse,
  .diary-section,
  .prediction-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-phone-wrap {
    min-height: 660px;
  }

  .screen-track {
    display: flex;
    overflow: hidden;
  }

  .screen-card {
    min-width: 100%;
    display: none;
  }

  .screen-card.active {
    display: block;
  }

  .slide-btn,
  .carousel-dots {
    display: flex;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 22px);
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-content p,
  .section-copy p,
  .section-head p,
  .diary-copy p,
  .download-card p {
    font-size: 17px;
  }

  .hero-mini-stats,
  .overview-grid,
  .three-inputs,
  .two-inputs,
  .odds-row,
  .segmented {
    grid-template-columns: 1fr;
  }

  .float-tag {
    display: none;
  }

  .phone-frame {
    height: 670px;
  }

  .overview-grid,
  .split-section,
  .prediction-section,
  .diary-section,
  .screens-section,
  .download-section,
  .footer {
    width: calc(100% - 34px);
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .attribute-list div {
    grid-template-columns: 74px 36px 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
