:root {
  --bg: #fbf4fd;
  --bg-blue: #eef9ff;
  --text: #17212a;
  --muted: #78838d;
  --soft: #eff7fc;
  --white: #ffffff;

  --blue: #31a7dc;
  --blue-2: #56cff0;
  --blue-3: #dff5ff;
  --purple: #7758ad;
  --pink: #f04662;
  --green: #42c481;
  --orange: #f2ac45;

  --line: rgba(28, 78, 105, 0.12);
  --line-blue: rgba(49, 167, 220, 0.24);
  --shadow: 0 28px 80px rgba(55, 136, 180, 0.22);
  --shadow-strong: 0 36px 110px rgba(49, 167, 220, 0.32);

  --radius-xl: 42px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(49, 167, 220, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 2%,
      rgba(119, 88, 173, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #fff7ff 0%, #f4fbff 46%, #fff8fd 100%);
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.mesh {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.7;
}

.mesh-one {
  width: 430px;
  height: 430px;
  top: -140px;
  left: -130px;
  background: rgba(49, 167, 220, 0.2);
}

.mesh-two {
  width: 460px;
  height: 460px;
  top: 200px;
  right: -160px;
  background: rgba(119, 88, 173, 0.16);
}

.mesh-three {
  width: 380px;
  height: 380px;
  left: 35%;
  bottom: -170px;
  background: rgba(86, 207, 240, 0.16);
}

.grid-noise {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(49, 167, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 167, 220, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.cursor-light {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(49, 167, 220, 0.18),
    transparent 65%
  );
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 0;
  width: 100%;
  transition: 0.35s ease;
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 0.35s ease;
}

.site-header.scrolled .header-inner {
  border-color: rgba(49, 167, 220, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(70, 120, 160, 0.18);
}

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

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 36px rgba(49, 167, 220, 0.34);
}

.brand-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(49, 167, 220, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

.nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(23, 33, 42, 0.68);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(49, 167, 220, 0.12);
}

.download-btn,
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

.download-btn {
  height: 48px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 38px rgba(49, 167, 220, 0.26);
}

.download-btn:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(49, 167, 220, 0.35);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(49, 167, 220, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 0;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow span {
  width: 38px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(49, 167, 220, 0.55);
}

.hero h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(58px, 8.2vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.09em;
  font-weight: 950;
}

.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--blue);
  text-shadow: 0 16px 50px rgba(49, 167, 220, 0.25);
}

.hero p {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  min-height: 60px;
  padding: 0 32px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 18px 46px rgba(49, 167, 220, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(49, 167, 220, 0.16);
  box-shadow: 0 14px 36px rgba(70, 120, 160, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #fff;
}

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

.hero-stats div {
  padding: 22px;
  border: 1px solid rgba(49, 167, 220, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(70, 120, 160, 0.12);
  backdrop-filter: blur(18px);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-device {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.device-orbit {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(49, 167, 220, 0.18);
  animation: spin 18s linear infinite;
}

.device-orbit::before,
.device-orbit::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 26px rgba(49, 167, 220, 0.65);
}

.device-orbit::before {
  top: 40px;
  left: 70px;
}

.device-orbit::after {
  right: 50px;
  bottom: 86px;
  background: var(--purple);
}

.device-card {
  position: relative;
  width: 290px;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: 46px;
  background: #ffffff;
  box-shadow:
    0 32px 90px rgba(49, 167, 220, 0.26),
    0 0 0 1px rgba(49, 167, 220, 0.12);
}

.device-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 34px;
}

.main-device {
  transform: rotateY(-10deg) rotateX(4deg);
  animation: phoneFloat 5s ease-in-out infinite;
}

.mini-panel {
  position: absolute;
  min-width: 190px;
  padding: 18px;
  border: 1px solid rgba(49, 167, 220, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 60px rgba(70, 120, 160, 0.18);
}

.mini-panel span {
  display: block;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mini-panel b {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.mini-panel small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.mini-panel-left {
  left: -12px;
  bottom: 158px;
  animation: floatCard 4.6s ease-in-out infinite;
}

.mini-panel-right {
  right: -10px;
  top: 120px;
  animation: floatCard 5.2s ease-in-out infinite reverse;
}

.hero-marquee {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(49, 167, 220, 0.12);
  border-bottom: 1px solid rgba(49, 167, 220, 0.12);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  padding: 20px 34px;
  color: rgba(23, 33, 42, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 120px 0;
  position: relative;
}

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.match-copy h2,
.profile-copy h2,
.privacy-copy h2,
.cta-box h2 {
  margin-top: 16px;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.section-head p,
.match-copy p,
.profile-copy p,
.privacy-copy p,
.cta-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.overview-card,
.feature-card,
.live-card,
.profile-card,
.privacy-mini,
.cta-box {
  border: 1px solid rgba(49, 167, 220, 0.15);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 28px 80px rgba(70, 120, 160, 0.14);
  backdrop-filter: blur(20px);
}

.overview-card {
  min-height: 285px;
  padding: 34px;
  border-radius: var(--radius-lg);
  transition: 0.3s ease;
}

.overview-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.overview-big {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(49, 167, 220, 0.18),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.72);
}

.overview-icon,
.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 26px;
  font-weight: 900;
}

.overview-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 4.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-icon.blue,
.feature-icon {
  color: var(--blue);
  background: rgba(49, 167, 220, 0.12);
}

.overview-icon.pink {
  color: var(--pink);
  background: rgba(240, 70, 98, 0.1);
}

.overview-icon.green {
  color: var(--green);
  background: rgba(66, 196, 129, 0.12);
}

.overview-card h3,
.feature-card h3 {
  margin-top: 24px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.overview-card p,
.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-md);
  transition: 0.35s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(49, 167, 220, 0.2),
    transparent 36%
  );
  transition: 0.35s ease;
}

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

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-num {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(49, 167, 220, 0.18);
  font-size: 38px;
  font-weight: 950;
}

.match-section {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(49, 167, 220, 0.13),
      transparent 34%
    ),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.match-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.match-points {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.match-points div {
  padding: 18px 20px;
  border: 1px solid rgba(49, 167, 220, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.match-points b {
  display: block;
  color: var(--blue);
}

.match-points span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.live-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.32),
      transparent 26%
    ),
    linear-gradient(135deg, #249bd7, #68d6ee);
  box-shadow: var(--shadow-strong);
}

.live-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 65%
  );
  transform: translateX(-100%);
  animation: shine 4s ease-in-out infinite;
}

.live-card-top,
.teams-line,
.court-strip {
  position: relative;
  z-index: 2;
}

.live-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-badge {
  padding: 9px 14px;
  border-radius: 999px;
  color: #d33c4b;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  font-size: 13px;
}

.teams-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 46px;
}

.team {
  display: grid;
  gap: 14px;
}

.team.right {
  text-align: right;
  justify-items: end;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-right: -10px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: #e9505f;
}

.avatars span:nth-child(2) {
  background: #b45ad2;
}

.team.right .avatars span:first-child {
  background: #ef7460;
}

.team.right .avatars span:nth-child(2) {
  background: #5bcf93;
}

.team b {
  font-size: 22px;
  line-height: 1.3;
}

.score-glow {
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.court-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.screens {
  padding: 130px 0;
  overflow: hidden;
}

.carousel-shell {
  position: relative;
  min-height: 750px;
  display: grid;
  place-items: center;
}

.carousel {
  position: relative;
  width: min(100%, 920px);
  height: 660px;
  perspective: 1200px;
}

.screen {
  position: absolute;
  top: 0;
  left: 50%;
  width: 285px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border: 10px solid #fff;
  border-radius: 46px;
  background: #fff;
  box-shadow:
    0 34px 95px rgba(49, 167, 220, 0.24),
    0 0 0 1px rgba(49, 167, 220, 0.12);
  transform: translateX(-50%) scale(0.72);
  transition: 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screen img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 34px;
}

.screen.active {
  z-index: 8;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.screen.prev {
  z-index: 5;
  opacity: 0.62;
  transform: translateX(-128%) scale(0.78) rotateY(18deg);
}

.screen.next {
  z-index: 5;
  opacity: 0.62;
  transform: translateX(28%) scale(0.78) rotateY(-18deg);
}

.screen.prev2 {
  z-index: 2;
  opacity: 0.22;
  transform: translateX(-180%) scale(0.63) rotateY(24deg);
}

.screen.next2 {
  z-index: 2;
  opacity: 0.22;
  transform: translateX(80%) scale(0.63) rotateY(-24deg);
}

.screen-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(49, 167, 220, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.screen-info span {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 900;
}

.screen-info b {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.carousel-arrow {
  position: absolute;
  z-index: 12;
  top: 45%;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(49, 167, 220, 0.16);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  font-size: 40px;
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 20px 50px rgba(49, 167, 220, 0.3);
}

.carousel-arrow.left {
  left: 4%;
}

.carousel-arrow.right {
  right: 4%;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(49, 167, 220, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dots button.active {
  width: 34px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(49, 167, 220, 0.55);
}

.profile-layout,
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.profile-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.profile-top {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 20px 55px rgba(49, 167, 220, 0.28);
}

.avatar-large {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  font-size: 34px;
  font-weight: 900;
}

.profile-top span {
  font-size: 28px;
  font-weight: 900;
}

.profile-top p,
.profile-top small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(49, 167, 220, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
}

.profile-stats div {
  text-align: center;
  border-right: 1px solid rgba(49, 167, 220, 0.12);
}

.profile-stats div:last-child {
  border-right: 0;
}

.profile-stats b {
  display: block;
  font-size: 28px;
}

.profile-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.skill-bar {
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
}

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

.skill-head span {
  color: var(--blue);
  font-weight: 900;
}

.bar {
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--blue-3);
}

.bar span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.skill-bar p {
  margin-top: 10px;
  color: var(--muted);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.achievement-grid div {
  padding: 22px;
  border: 1px solid rgba(49, 167, 220, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue);
  font-weight: 900;
}

.privacy-preview {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(49, 167, 220, 0.08),
    transparent
  );
}

.privacy-copy .btn {
  margin-top: 30px;
}

.privacy-mini {
  padding: 38px;
  border-radius: var(--radius-xl);
}

.privacy-mini-head span {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}

.privacy-mini-head b {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.privacy-lines {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.privacy-lines span {
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    rgba(49, 167, 220, 0.16),
    rgba(49, 167, 220, 0.04)
  );
}

.privacy-lines span:nth-child(1) {
  width: 92%;
}

.privacy-lines span:nth-child(2) {
  width: 76%;
}

.privacy-lines span:nth-child(3) {
  width: 84%;
}

.privacy-lines span:nth-child(4) {
  width: 64%;
}

.privacy-chip {
  display: inline-flex;
  margin: 6px 6px 0 0;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(49, 167, 220, 0.11);
  font-weight: 800;
}

.cta {
  padding: 100px 0 130px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 82px;
  border-radius: 48px;
  text-align: center;
}

.cta-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(49, 167, 220, 0.24),
    transparent 70%
  );
}

.cta-box > *:not(.cta-orb) {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer {
  border-top: 1px solid rgba(49, 167, 220, 0.14);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

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

.footer-links a {
  color: var(--muted);
  font-weight: 800;
  transition: 0.25s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.78s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay {
  transition-delay: 0.12s;
}

.delay-two {
  transition-delay: 0.22s;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-18px);
  }
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes shine {
  0%,
  35% {
    transform: translateX(-110%);
  }
  65%,
  100% {
    transform: translateX(110%);
  }
}

@media (max-width: 980px) {
  .download-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 96px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(70, 120, 160, 0.2);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    text-align: center;
  }

  .hero-layout,
  .match-layout,
  .profile-layout,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-device {
    min-height: 600px;
  }

  .overview-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .screen.prev,
  .screen.next,
  .screen.prev2,
  .screen.next2 {
    opacity: 0;
  }

  .carousel-arrow {
    top: auto;
    bottom: 70px;
  }

  .carousel-arrow.left {
    left: 28%;
  }

  .carousel-arrow.right {
    right: 28%;
  }
}

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

  .site-header {
    top: 10px;
  }

  .header-inner {
    height: 64px;
  }

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

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p,
  .section-head p,
  .match-copy p,
  .profile-copy p,
  .privacy-copy p,
  .cta-box p {
    font-size: 16px;
  }

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

  .profile-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(49, 167, 220, 0.12);
    padding: 14px 0;
  }

  .profile-stats div:last-child {
    border-bottom: 0;
  }

  .device-card,
  .screen {
    width: 250px;
  }

  .mini-panel {
    display: none;
  }

  .carousel {
    height: 590px;
  }

  .carousel-shell {
    min-height: 680px;
  }

  .carousel-arrow.left {
    left: 16%;
  }

  .carousel-arrow.right {
    right: 16%;
  }

  .teams-line {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team,
  .team.right {
    justify-items: center;
    text-align: center;
  }

  .court-strip {
    flex-direction: column;
    gap: 10px;
  }

  .cta-box {
    padding: 48px 22px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 34px 0;
  }
}
