:root {
  --bg: #080808;
  --panel: #171717;
  --panel-2: #111111;
  --green: #08e879;
  --green-soft: rgba(8, 232, 121, 0.15);
  --green-line: rgba(8, 232, 121, 0.35);
  --red: #ff3b42;
  --red-soft: rgba(255, 59, 66, 0.15);
  --blue: #287cff;
  --yellow: #ffe142;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.1);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 35px 120px rgba(0, 0, 0, 0.65);
  --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 12% 14%,
      rgba(8, 232, 121, 0.15),
      transparent 30%
    ),
    radial-gradient(circle at 88% 18%, rgba(255, 59, 66, 0.1), transparent 32%),
    radial-gradient(
      circle at 45% 88%,
      rgba(40, 124, 255, 0.09),
      transparent 35%
    ),
    linear-gradient(180deg, #080808 0%, #050505 50%, #000000 100%);
}

body.locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.17;
  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: 54px 54px;
  mask-image: radial-gradient(circle, black 35%, transparent 88%);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  translate: -50% -50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(8, 232, 121, 0.13), transparent 66%);
  filter: blur(18px);
}

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

.orb-green {
  width: 520px;
  height: 520px;
  left: -180px;
  top: 18%;
  background: radial-gradient(circle, rgba(8, 232, 121, 0.18), transparent 68%);
}

.orb-red {
  width: 440px;
  height: 440px;
  right: -140px;
  bottom: 6%;
  background: radial-gradient(circle, rgba(255, 59, 66, 0.14), transparent 67%);
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 34px));
  transform: translateX(-50%);
  min-height: 72px;
  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(10, 10, 10, 0.62);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
  transition: 0.35s ease;
}

.header.scrolled {
  top: 9px;
  background: rgba(4, 4, 4, 0.88);
  border-color: var(--green-line);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #00aa60);
  box-shadow: 0 0 34px rgba(8, 232, 121, 0.4);
}

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

.nav a {
  transition: 0.25s ease;
}

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

.header-download {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green);
  color: #041108;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(8, 232, 121, 0.33);
  transition: 0.28s ease;
}

.header-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(8, 232, 121, 0.45);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.94);
  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.04em;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.45;
}

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

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

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

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

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

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

.btn-main {
  background: var(--green);
  color: #031108;
  box-shadow: 0 22px 58px rgba(8, 232, 121, 0.28);
}

.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(8, 232, 121, 0.42);
}

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

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

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

.hero-stats div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(23, 23, 23, 0.86);
  border: 1px solid var(--line);
}

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

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

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

.phone {
  width: min(385px, 82vw);
  height: 720px;
  padding: 22px;
  border-radius: 48px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.035)
    ),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  transform: rotateY(-10deg) rotateX(4deg);
  overflow: hidden;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin-bottom: 26px;
}

.app-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.app-title-row h3 {
  font-size: 31px;
  letter-spacing: -0.05em;
}

.app-title-row p {
  margin-top: 4px;
  color: var(--green);
  font-weight: 800;
}

.xp-pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(8, 232, 121, 0.13);
  border: 1px solid var(--green-line);
  font-weight: 950;
}

.level-card,
.fact-card,
.match-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(23, 23, 23, 0.9);
  border: 1px solid var(--line);
}

.level-card {
  background: linear-gradient(
    135deg,
    rgba(8, 232, 121, 0.16),
    rgba(23, 23, 23, 0.95)
  );
  border-color: var(--green-line);
}

.level-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.level-head strong {
  color: var(--green);
  font-size: 26px;
}

.level-head span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 232, 121, 0.15);
  color: var(--green);
  font-weight: 800;
}

.progress-line {
  width: 100%;
  height: 10px;
  margin: 18px 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green) 18%,
    rgba(255, 255, 255, 0.12) 18%
  );
}

.mini-stats,
.quiz-stats,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-stats div,
.quiz-stats div,
.profile-grid div {
  min-height: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stats b,
.quiz-stats b,
.profile-grid b {
  display: block;
  font-size: 24px;
}

.mini-stats small,
.quiz-stats small,
.profile-grid small {
  color: var(--muted);
}

.fact-card {
  display: grid;
  grid-template-columns: 52px 1fr 18px;
  align-items: center;
  gap: 14px;
}

.fact-card div {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 225, 66, 0.12);
}

.fact-card p {
  color: var(--soft);
  line-height: 1.45;
}

.fact-card b {
  color: var(--yellow);
}

.match-label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--green);
  background: rgba(8, 232, 121, 0.12);
  font-weight: 900;
}

.match-teams {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  text-align: center;
}

.match-teams span {
  display: grid;
  place-items: center;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-weight: 950;
}

.match-card button {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #031108;
  font-weight: 950;
}

.floating-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(23, 23, 23, 0.86);
  border: 1px solid var(--green-line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: floaty 5s ease-in-out infinite;
}

.floating-card span {
  font-size: 28px;
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  margin-top: 8px;
  color: var(--green);
  font-size: 21px;
}

.floating-card small {
  margin-top: 4px;
  color: var(--soft);
}

.floating-card-one {
  left: 0;
  top: 16%;
}

.floating-card-two {
  right: 0;
  bottom: 18%;
  animation-delay: -2.3s;
}

.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.36);
}

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

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

.feature-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(23, 23, 23, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  transition: 0.35s ease;
}

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

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

.green {
  background: rgba(8, 232, 121, 0.18);
  color: var(--green);
}

.red {
  background: rgba(255, 59, 66, 0.17);
  color: var(--red);
}

.blue {
  background: rgba(40, 124, 255, 0.18);
  color: var(--blue);
}

.yellow {
  background: rgba(255, 225, 66, 0.16);
  color: var(--yellow);
}

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

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

.split-section {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  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;
}

.players-panel,
.tactics-board,
.quiz-card,
.question-card,
.cta-card {
  border-radius: var(--radius-lg);
  background: rgba(23, 23, 23, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.players-panel {
  padding: 24px;
}

.tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin: -4px -24px 20px;
}

.tabs span {
  padding: 20px;
  color: var(--muted);
  font-weight: 900;
}

.tabs span.active {
  color: var(--green);
  box-shadow: inset 0 -3px var(--green);
}

.search-line {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 18px;
  color: var(--muted);
  background: #1a1a1a;
  border: 1px solid var(--line);
  font-size: 20px;
}

.position-list {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 14px 0 18px;
}

.position-list button {
  min-width: 68px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #1a1a1a;
  color: var(--soft);
  font-weight: 900;
}

.position-list button.active {
  background: var(--green);
  color: #031108;
}

.player-row {
  display: grid;
  grid-template-columns: 82px 1fr 34px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  margin-top: 14px;
  border-radius: 22px;
  background: #171717;
  border: 1px solid var(--line);
  transition: 0.3s ease;
}

.player-row:hover {
  transform: translateX(8px);
  border-color: var(--green-line);
}

.rating {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.rating b {
  display: block;
  font-size: 27px;
}

.rating span {
  font-size: 11px;
}

.red-rating {
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(255, 59, 66, 0.32);
}

.green-rating {
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
}

.player-row h4 {
  font-size: 22px;
}

.player-row p {
  margin-top: 4px;
  color: var(--muted);
}

.player-row small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
}

.star {
  color: var(--muted);
  font-size: 32px;
}

.tactics-board {
  padding: 26px;
}

.board-header h3 {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.08em;
}

.formation-pills {
  display: flex;
  gap: 12px;
  overflow: auto;
  margin: 28px 0 24px;
}

.formation-pills span {
  min-width: 108px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #191919;
  border: 1px solid var(--line);
  color: var(--soft);
  font-weight: 900;
}

.formation-pills span.active {
  background: var(--green);
  color: #031108;
}

.pitch {
  position: relative;
  min-height: 650px;
  border-radius: 26px;
  border: 2px solid var(--green-line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
    linear-gradient(180deg, rgba(8, 232, 121, 0.11), rgba(8, 232, 121, 0.04));
  background-size:
    100% 110px,
    110px 100%,
    auto;
  overflow: hidden;
}

.pitch-line {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.top-box {
  top: 0;
  left: 20%;
  width: 60%;
  height: 110px;
  border-top: 0;
}

.bottom-box {
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 110px;
  border-bottom: 0;
}

.center-circle {
  top: 42%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.player-dot {
  position: absolute;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 0 34px currentColor;
}

.red-dot {
  background: var(--red);
}

.green-dot {
  background: var(--green);
  color: #031108;
}

.blue-dot {
  background: var(--blue);
}

.yellow-dot {
  background: #ffd900;
  color: #111;
}

.fwd-left {
  left: 20%;
  top: 24%;
}
.fwd-center {
  left: 50%;
  top: 24%;
  transform: translateX(-50%);
}
.fwd-right {
  right: 20%;
  top: 24%;
}
.mid-left {
  left: 20%;
  top: 44%;
}
.mid-center {
  left: 50%;
  top: 44%;
  transform: translateX(-50%);
}
.mid-right {
  right: 20%;
  top: 44%;
}
.def-one {
  left: 15%;
  top: 65%;
}
.def-two {
  left: 36%;
  top: 65%;
}
.def-three {
  right: 36%;
  top: 65%;
}
.def-four {
  right: 15%;
  top: 65%;
}
.gk-dot {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.quiz-section,
.screens-section,
.cta {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

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

.quiz-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.quiz-card,
.question-card {
  padding: 28px;
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.quiz-top b {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  letter-spacing: 0;
}

.question-card span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--red);
  background: var(--red-soft);
  font-weight: 900;
}

.question-card h3 {
  margin: 26px 0;
  font-size: 30px;
  line-height: 1.25;
}

.question-card button {
  width: 100%;
  min-height: 72px;
  text-align: left;
  padding: 0 24px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #171717;
  color: #fff;
  font-weight: 900;
  transition: 0.25s ease;
}

.question-card button:hover {
  border-color: var(--green-line);
  transform: translateX(6px);
}

.screen-carousel {
  position: relative;
}

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

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

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

.mock-screen {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 26px;
  background: #0c0c0c;
  border: 1px solid var(--line);
}

.mock-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}

.glow-circle {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin: 70px auto 70px;
  border-radius: 50%;
  font-size: 58px;
  background: rgba(8, 232, 121, 0.18);
  border: 1px solid var(--green-line);
  box-shadow: 0 0 80px rgba(8, 232, 121, 0.35);
}

.onboarding-screen h3 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 38px;
}

.onboarding-screen p {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  text-align: center;
  color: var(--soft);
  line-height: 1.55;
}

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

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

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

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

.onboarding-screen button {
  width: 100%;
  min-height: 58px;
  margin-top: 44px;
  border: 0;
  border-radius: 18px;
  background: var(--green);
  color: #031108;
  font-weight: 950;
}

.modal-screen h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.modal-screen input {
  width: 100%;
  min-height: 66px;
  margin-bottom: 16px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #1b1b1b;
  color: #fff;
  outline: none;
}

.mock-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.mock-pills span {
  min-width: 58px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #1b1b1b;
  color: var(--soft);
  font-weight: 900;
}

.mock-pills span.active {
  background: var(--green);
  color: #031108;
}

.mock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 38px;
}

.mock-actions button {
  min-height: 60px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #101010;
  color: var(--soft);
  font-weight: 950;
}

.mock-actions button:last-child {
  background: var(--green);
  color: #031108;
}

.profile-top {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(8, 232, 121, 0.18),
    rgba(8, 232, 121, 0.04)
  );
  border: 1px solid var(--green-line);
}

.profile-top div {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 232, 121, 0.13);
  border: 3px solid var(--green);
  font-size: 34px;
}

.profile-top h3 {
  font-size: 25px;
}

.profile-top p {
  margin-top: 5px;
  color: var(--green);
}

.profile-progress {
  padding: 22px;
  margin-top: 18px;
  border-radius: 22px;
  background: #171717;
}

.profile-progress b,
.profile-progress small {
  display: block;
}

.profile-progress span {
  display: block;
  height: 9px;
  margin: 16px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.profile-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.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(--green);
  color: #031108;
  font-size: 40px;
  cursor: pointer;
  box-shadow: 0 22px 58px rgba(8, 232, 121, 0.35);
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

.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.22);
}

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

.cta-card {
  padding: clamp(38px, 7vw, 80px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 232, 121, 0.2), transparent 42%),
    rgba(23, 23, 23, 0.82);
  border-color: var(--green-line);
}

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

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

.footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 70px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  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(--green);
}

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

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

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

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

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

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

  .burger {
    display: block;
  }

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

  .phone-wrap {
    min-height: 640px;
  }

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

  .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) {
  .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-copy p,
  .section-copy p,
  .section-head p,
  .cta-card p {
    font-size: 17px;
  }

  .hero-stats,
  .feature-strip,
  .mini-stats,
  .quiz-stats {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .phone {
    height: 670px;
  }

  .split-section,
  .quiz-section,
  .screens-section,
  .cta,
  .feature-strip {
    width: calc(100% - 34px);
    padding: 88px 0;
  }

  .pitch {
    min-height: 540px;
  }

  .player-dot {
    width: 52px;
    height: 52px;
    font-size: 11px;
  }

  .footer {
    flex-direction: column;
  }
}
