:root {
  --bg: #070707;
  --bg-2: #101010;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.46);
  --line: rgba(255, 255, 255, 0.12);

  --red: #d92f35;
  --red-2: #ff4150;
  --red-dark: #95141f;
  --gold: #ffd369;
  --green: #35d07f;
  --blue: #70c7ff;

  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;
  --radius-xl: 58px;

  --shadow-red: 0 25px 90px rgba(217, 47, 53, 0.33);
  --shadow-dark: 0 30px 100px rgba(0, 0, 0, 0.65);
  --shadow-glass:
    inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 22px 70px rgba(0, 0, 0, 0.32);

  --container: 1220px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 8%, rgba(217, 47, 53, 0.2), transparent 24%),
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 211, 105, 0.1),
      transparent 23%
    ),
    radial-gradient(
      circle at 45% 90%,
      rgba(217, 47, 53, 0.13),
      transparent 25%
    ),
    linear-gradient(180deg, #050505 0%, #111111 46%, #070707 100%);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

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

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

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

.cursor-glow {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 47, 53, 0.16), transparent 68%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Header */

.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.74);
  backdrop-filter: blur(22px);
}

.nav-shell {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(217, 47, 53, 0.95), rgba(149, 20, 31, 0.95)),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.45),
      transparent 40%
    );
  box-shadow: 0 14px 44px rgba(217, 47, 53, 0.42);
}

.brand-text {
  font-size: 1.04rem;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.28s ease;
}

.nav-links a:hover {
  color: var(--white);
  text-shadow: 0 0 20px rgba(217, 47, 53, 0.85);
}

.nav-download {
  position: relative;
  overflow: hidden;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 48px rgba(217, 47, 53, 0.42);
  transition: 0.32s ease;
}

.nav-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: skewX(-18deg);
  transition: 0.7s ease;
}

.nav-download:hover {
  transform: translateY(-3px);
}

.nav-download:hover::before {
  left: 120%;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

/* Hero */

.hero-section {
  position: relative;
  padding: 92px 0 0;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.stadium-lights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 15% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 32%
    ),
    radial-gradient(
      ellipse at 85% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  transform: perspective(800px) rotateX(58deg) translateY(-180px);
  transform-origin: top;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 47, 53, 0.34);
  color: #ffb2b6;
  background: rgba(217, 47, 53, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.62);
  animation: pulse 1.6s infinite;
}

.hero-content h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7.4vw, 7.2rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.075em;
}

.hero-content h1 span {
  display: block;
  background: linear-gradient(120deg, #ffffff 0%, #ff6b76 42%, #ffd369 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 999px;
  padding: 17px 30px;
  font-size: 0.98rem;
  font-weight: 900;
  transition: 0.32s ease;
}

.btn-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--red-2), var(--red-dark)),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.4),
      transparent 38%
    );
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 30px 100px rgba(217, 47, 53, 0.45);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.btn-ghost:hover {
  transform: translateY(-4px);
  background: var(--surface-strong);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
}

.hero-mini-stats div {
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-glass);
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-mini-stats span {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.hero-visual {
  min-height: 680px;
  display: grid;
  place-items: center;
}

.phone-orbit {
  position: relative;
  width: min(460px, 90vw);
  aspect-ratio: 0.68;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(217, 47, 53, 0.18);
  animation: rotateRing 14s linear infinite;
}

.ring-one {
  width: 108%;
  height: 76%;
}

.ring-two {
  width: 132%;
  height: 92%;
  animation-duration: 21s;
  animation-direction: reverse;
}

.main-phone {
  position: relative;
  z-index: 3;
  width: 315px;
  padding: 12px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.17),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.72),
    0 0 80px rgba(217, 47, 53, 0.22);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
  animation: phoneFloat 5.6s ease-in-out infinite;
}

.main-phone img {
  border-radius: 32px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.44);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
}

.chip-one {
  top: 14%;
  left: -8%;
  animation: chipFloat 4.6s ease-in-out infinite;
}

.chip-two {
  right: -10%;
  top: 45%;
  animation: chipFloat 5.2s ease-in-out infinite 0.5s;
}

.chip-three {
  left: -4%;
  bottom: 16%;
  animation: chipFloat 5.8s ease-in-out infinite 0.8s;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  margin-top: 82px;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 56px;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Generic sections */

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}

.section-heading h2,
.intro-card h2,
.training-copy h2,
.match-copy h2,
.cta-box h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.section-heading p,
.intro-card p,
.training-copy p,
.match-copy p,
.cta-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

/* Intro */

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
}

.intro-card,
.intro-stat-board,
.training-panel,
.match-board,
.cta-box {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.035)
  );
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(24px);
}

.intro-card {
  padding: 54px;
}

.intro-stat-board {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.stat-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-line span {
  color: var(--muted);
}

.stat-line strong {
  color: var(--red-2);
  font-size: 1.1rem;
}

/* Features */

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

.feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow-glass);
  transition: 0.42s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -80px auto auto -80px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(217, 47, 53, 0.16);
  filter: blur(16px);
  opacity: 0;
  transition: 0.42s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(217, 47, 53, 0.46);
  box-shadow: 0 28px 90px rgba(217, 47, 53, 0.16);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(217, 47, 53, 0.22),
    rgba(255, 211, 105, 0.09)
  );
  font-size: 1.75rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.feature-card p {
  color: var(--muted);
}

/* Screens carousel */

.screens-section {
  padding: 118px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    rgba(217, 47, 53, 0.12),
    transparent 46%
  );
}

.carousel-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 82px 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px);
}

.carousel-stage {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.carousel-track {
  position: relative;
  height: 640px;
}

.screen-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 285px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition: 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: blur(6px);
}

.screen-card img {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
}

.screen-card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: blur(0);
}

.screen-card.prev-one {
  transform: translate(-126%, -50%) scale(0.82) rotate(-5deg);
  opacity: 0.42;
  z-index: 3;
  filter: blur(2px);
}

.screen-card.next-one {
  transform: translate(26%, -50%) scale(0.82) rotate(5deg);
  opacity: 0.42;
  z-index: 3;
  filter: blur(2px);
}

.screen-card.prev-two {
  transform: translate(-188%, -50%) scale(0.64) rotate(-9deg);
  opacity: 0.17;
  z-index: 2;
  filter: blur(5px);
}

.screen-card.next-two {
  transform: translate(88%, -50%) scale(0.64) rotate(9deg);
  opacity: 0.17;
  z-index: 2;
  filter: blur(5px);
}

.screen-caption {
  margin-top: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.screen-caption span {
  color: var(--red-2);
  font-weight: 950;
}

.screen-caption strong {
  font-size: 0.92rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  backdrop-filter: blur(18px);
  transition: 0.28s ease;
}

.carousel-btn:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 22px;
  transform: translateY(-50%);
}

.carousel-btn.next {
  right: 22px;
  transform: translateY(-50%);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: 0.3s ease;
}

.carousel-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--red-2), var(--gold));
}

/* Training */

.training-grid,
.match-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.training-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.training-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.training-panel {
  padding: 28px;
}

.drill-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 47, 53, 0.22),
      transparent 35%
    ),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.drill-card::after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 211, 105, 0.08);
  filter: blur(8px);
}

.drill-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.drill-top span {
  color: var(--muted-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

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

.drill-card h3 {
  margin-bottom: 16px;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
}

.drill-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.coach-tip {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  color: #cdeeff;
  background: rgba(112, 199, 255, 0.1);
  border: 1px solid rgba(112, 199, 255, 0.22);
  margin-bottom: 22px;
}

.drill-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.drill-actions button {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(217, 47, 53, 0.38);
  color: var(--white);
  background: rgba(217, 47, 53, 0.12);
  font-weight: 900;
  transition: 0.28s ease;
}

.drill-actions button:last-child {
  background: var(--red);
  border-color: var(--red);
}

.drill-actions button:hover {
  transform: translateY(-3px);
}

/* Match */

.match-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.match-board {
  padding: 28px;
}

.score-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.score-header span {
  color: var(--muted-2);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.score-header strong {
  font-size: 2.3rem;
}

.score-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px 10px;
  text-align: center;
}

.score-line strong {
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.score-line button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(53, 208, 127, 0.35);
  color: #baf7d6;
  background: rgba(53, 208, 127, 0.1);
  font-weight: 900;
}

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

.match-actions button {
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
  transition: 0.28s ease;
}

.match-actions button:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 47, 53, 0.55);
  background: rgba(217, 47, 53, 0.15);
}

.premium-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  list-style: none;
}

.premium-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
}

.premium-list li::before {
  content: '✓';
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

/* Resources */

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

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glass);
  transition: 0.35s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 47, 53, 0.42);
}

.resource-card img {
  height: 320px;
  object-fit: cover;
  object-position: top;
}

.resource-card div {
  padding: 26px;
}

.resource-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.resource-card p {
  color: var(--muted);
}

/* Reviews */

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

.review-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glass);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

/* CTA */

.cta-section {
  padding: 70px 0 120px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 82px 48px;
  text-align: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 47, 53, 0.34),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 211, 105, 0.11),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.035)
    );
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.cta-ball {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 2.4rem;
  box-shadow: 0 20px 70px rgba(217, 47, 53, 0.22);
}

.cta-box p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* Footer */

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 520px;
  color: var(--muted-2);
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

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

/* Privacy page */

.privacy-body {
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 47, 53, 0.22), transparent 30%),
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 211, 105, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #050505, #111111);
}

.privacy-hero {
  padding: 64px 0 110px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-red);
}

.privacy-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px);
}

.privacy-top {
  padding: 58px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 47, 53, 0.28),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.035);
}

.privacy-top h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.privacy-top p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.privacy-content {
  padding: 52px 58px 58px;
  display: grid;
  gap: 22px;
}

.policy-block {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.policy-block h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.18rem;
}

.policy-block p {
  color: var(--muted);
}

.policy-block strong {
  color: #ffffff;
  font-weight: 900;
}

.policy-email {
  display: inline-flex;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 47, 53, 0.16);
  border: 1px solid rgba(217, 47, 53, 0.35);
  font-weight: 900;
}

.privacy-footer-note {
  padding: 22px 28px;
  border-radius: 26px;
  background: rgba(255, 211, 105, 0.1);
  border: 1px solid rgba(255, 211, 105, 0.26);
  color: #ffe5a0;
  font-weight: 800;
}

/* Reveal animations */

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

/* Animations */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.62);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(53, 208, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(53, 208, 127, 0);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

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

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* Responsive */

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .training-grid,
  .match-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
  }

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

  .match-grid {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 96px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 6px;
  }

  .nav-download {
    margin-left: auto;
    padding: 12px 18px;
  }

  .menu-btn {
    display: block;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .main-phone {
    width: min(305px, 84vw);
  }

  .floating-chip {
    display: none;
  }

  .section,
  .screens-section {
    padding: 82px 0;
  }

  .intro-card,
  .privacy-top,
  .privacy-content {
    padding: 30px;
  }

  .features-grid,
  .resource-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    padding: 28px 18px 72px;
    border-radius: 34px;
  }

  .carousel-stage {
    min-height: 600px;
  }

  .carousel-track {
    height: 600px;
  }

  .screen-card {
    width: 255px;
  }

  .screen-card.prev-one {
    transform: translate(-112%, -50%) scale(0.72) rotate(-4deg);
  }

  .screen-card.next-one {
    transform: translate(12%, -50%) scale(0.72) rotate(4deg);
  }

  .screen-card.prev-two,
  .screen-card.next-two {
    opacity: 0;
  }

  .carousel-btn {
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
  }

  .carousel-btn.prev {
    left: 12px;
  }

  .carousel-btn.next {
    right: 12px;
  }

  .score-line strong {
    font-size: 4.2rem;
  }

  .match-actions {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 520px) {
  .brand-text {
    display: none;
  }

  .nav-download {
    font-size: 0.82rem;
    padding: 11px 15px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .drill-actions {
    grid-template-columns: 1fr;
  }

  .match-actions {
    grid-template-columns: 1fr;
  }

  .resource-card img {
    height: 260px;
  }

  .cta-box {
    padding: 58px 24px;
    border-radius: 34px;
  }

  .privacy-top h1 {
    font-size: 3.4rem;
  }
}
