/* style.css */
:root {
  --black: #020302;
  --black2: #050805;
  --green: #14371c;
  --green2: #0a2411;
  --green3: #24ff73;
  --orange: #ff6500;
  --orange2: #ff8a16;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.48);
  --dark-panel: rgba(0, 0, 0, 0.72);
  --line: rgba(255, 255, 255, 0.13);
  --orange-line: rgba(255, 101, 0, 0.38);
  --green-line: rgba(36, 255, 115, 0.26);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 35px 110px 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;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(36, 255, 115, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(255, 101, 0, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #08160b 0%, #030403 48%, #000 100%);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black 35%, transparent 88%);
}

.field-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.5;
}

.field-glow-one {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 12%;
  background: radial-gradient(
    circle,
    rgba(36, 255, 115, 0.22),
    transparent 64%
  );
}

.field-glow-two {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.2), transparent 64%);
}

.cursor-light {
  position: fixed;
  z-index: 1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  translate: -50% -50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.13), transparent 62%);
  opacity: 0.7;
  filter: blur(16px);
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 34px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  transition: 0.35s ease;
}

.header.scrolled {
  top: 10px;
  background: rgba(0, 0, 0, 0.84);
  border-color: rgba(255, 101, 0, 0.24);
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 0 32px rgba(255, 101, 0, 0.38);
}

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

.nav a {
  transition: 0.25s ease;
}

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

.download-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 45px rgba(255, 101, 0, 0.32);
  transition: 0.28s ease;
}

.download-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 65px rgba(255, 101, 0, 0.44);
}

.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;
  background: var(--white);
  border-radius: 20px;
}

.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: 19px 0;
  font-size: 34px;
  font-weight: 950;
  text-align: center;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.54) 44%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1566577739112-5180d4bf9390?auto=format&fit=crop&w=1900&q=80')
      center/cover;
  opacity: 0.48;
  transform: scale(1.04);
}

.yard-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 11%,
      rgba(255, 255, 255, 0.08) 11% 11.15%,
      transparent 11.15% 22%
    ),
    linear-gradient(
      180deg,
      transparent 0 9%,
      rgba(255, 255, 255, 0.04) 9% 9.2%,
      transparent 9.2% 18%
    );
  background-size: 190px 140px;
  transform: rotate(-8deg) scale(1.18);
  opacity: 0.45;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 35%,
    transparent,
    rgba(0, 0, 0, 0.92) 72%
  );
}

.hero-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h3 {
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 620px;
  margin-top: 28px;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.65;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  color: #fff;
  box-shadow: 0 22px 55px rgba(255, 101, 0, 0.32);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(255, 101, 0, 0.46);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

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

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

.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.device {
  width: min(370px, 82vw);
  height: 690px;
  padding: 26px;
  border-radius: 46px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 101, 0, 0.16),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.035)
    ),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.78);
  transform: rotateY(-10deg) rotateX(4deg);
  overflow: hidden;
}

.device-status {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.18);
}

.device-hero {
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 62%),
    url('https://images.unsplash.com/photo-1521412644187-c49fa049e84d?auto=format&fit=crop&w=900&q=80')
      center/cover;
  border: 1px solid rgba(255, 101, 0, 0.28);
}

.device-ball {
  font-size: 58px;
  margin-bottom: auto;
  filter: drop-shadow(0 20px 35px rgba(255, 101, 0, 0.34));
}

.device-hero h3 {
  font-size: 34px;
  text-transform: uppercase;
}

.device-hero p {
  margin-top: 10px;
  color: var(--soft);
}

.device-hero button {
  margin-top: 32px;
  min-height: 58px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}

.float-chip {
  position: absolute;
  min-width: 180px;
  padding: 17px 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--orange-line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: floaty 5s ease-in-out infinite;
}

.float-chip b {
  display: block;
  color: var(--orange);
  font-size: 24px;
}

.float-chip span {
  display: block;
  color: var(--soft);
  margin-top: 4px;
}

.chip-one {
  top: 22%;
  left: 0;
}

.chip-two {
  right: 0;
  bottom: 22%;
  animation-delay: -2s;
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
}

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

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

.section {
  position: relative;
  z-index: 2;
  padding: 125px max(24px, calc((100vw - 1180px) / 2));
}

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

.intro-card,
.rule-card,
.timeline-card,
.training-card,
.drill-form,
.cta-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.28);
}

.intro-card {
  min-height: 310px;
  padding: 28px;
  transition: 0.35s ease;
}

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

.intro-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 28px;
  margin-bottom: 64px;
}

.orange {
  background: var(--orange);
}

.green {
  background: #4caf50;
}

.white {
  background: #fff;
  color: var(--orange);
}

.dark {
  background: #000;
  border: 2px solid #fff;
}

.intro-card h3 {
  font-size: 25px;
}

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

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.section-kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.split-copy p:not(.section-kicker),
.section-head p:not(.section-kicker),
.cta-card p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.7;
}

.playbook-panel {
  padding: 24px;
  border-radius: 38px;
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.play-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 0 24px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--orange);
  font-size: 23px;
  font-weight: 950;
  transition: 0.28s ease;
}

.play-row:hover,
.play-row.active {
  border-color: var(--orange);
  transform: translateX(8px);
}

.play-row b {
  color: #fff;
  font-size: 34px;
  font-weight: 400;
}

.play-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(20, 55, 28, 0.42);
  border: 1px solid var(--green-line);
}

.field-mini {
  position: relative;
  min-height: 240px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 1px 42px
    ),
    rgba(7, 31, 12, 0.8);
}

.dot {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 950;
  border: 3px solid white;
}

.dot-a {
  left: 24px;
  top: 48%;
}

.dot-b {
  right: 64px;
  bottom: 18%;
}

.route-line {
  position: absolute;
  left: 44px;
  top: 52%;
  width: 190px;
  height: 3px;
  background: var(--orange);
  transform: rotate(-24deg);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(255, 101, 0, 0.6);
}

.play-diagram h3 {
  color: var(--orange);
  font-size: 34px;
}

.play-diagram p {
  margin-top: 12px;
  color: var(--soft);
  line-height: 1.6;
}

.section-head {
  max-width: 820px;
  margin-bottom: 56px;
}

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

.rule-card {
  min-height: 330px;
  padding: 30px;
  transition: 0.35s ease;
}

.rule-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange-line);
}

.rule-card span {
  color: var(--orange);
  font-weight: 950;
}

.rule-card h3 {
  margin-top: 90px;
  color: var(--orange);
  font-size: 32px;
}

.rule-card p {
  margin-top: 14px;
  color: var(--soft);
  line-height: 1.65;
}

.screens {
  position: relative;
  z-index: 2;
  padding: 125px 0;
  overflow: hidden;
}

.screens .section-head {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.screen-carousel {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.screen-slide {
  min-height: 660px;
  padding: 24px;
  border-radius: 38px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transition: 0.4s ease;
}

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

.app-screen {
  min-height: 455px;
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(36, 255, 115, 0.12), transparent 36%),
    linear-gradient(180deg, #14371c, #010101);
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.app-progress {
  display: grid;
  gap: 16px;
}

.app-progress div {
  padding: 18px;
  border-radius: 18px;
  background: #000;
}

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

.app-progress span {
  display: block;
  height: 8px;
  margin: 18px 0 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(36, 255, 115, 0.25),
    rgba(36, 255, 115, 0.25) 94%,
    var(--orange) 94%
  );
}

.app-progress small {
  color: var(--soft);
}

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

.app-tile {
  min-height: 125px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  font-size: 32px;
  font-weight: 950;
}

.app-tile b {
  display: block;
  font-size: 17px;
}

.orange-tile {
  background: var(--orange);
}

.green-tile {
  background: #4caf50;
}

.black-tile {
  background: #000;
  border: 2px solid #fff;
}

.white-tile {
  background: #fff;
  color: var(--orange);
}

.play-preview h4,
.drill-preview h4 {
  font-size: 25px;
  margin-bottom: 20px;
}

.play-preview div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #000;
  color: var(--orange);
  font-weight: 950;
}

.play-preview span {
  color: white;
  font-size: 30px;
}

.position-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.position-pills span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 850;
}

.position-pills span:first-child {
  background: var(--orange);
}

.drill-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.drill-photo-row div {
  min-height: 110px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35)),
    url('https://images.unsplash.com/photo-1508800703430-96c48b3d25ee?auto=format&fit=crop&w=700&q=80')
      center/cover;
}

.calculator {
  padding: 18px;
  border-radius: 20px;
  background: #000;
}

.calculator b {
  display: block;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 14px;
}

.calculator label {
  display: block;
  padding: 15px;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid white;
  color: var(--soft);
}

.calculator button {
  width: 100%;
  min-height: 48px;
  border: 0;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-weight: 950;
}

.screen-slide h3 {
  margin-top: 24px;
  font-size: 26px;
}

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

.carousel-btn {
  display: none;
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  box-shadow: 0 22px 58px rgba(255, 101, 0, 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.25);
}

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

.drill-showcase {
  display: grid;
  gap: 18px;
}

.training-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(36, 255, 115, 0.18), rgba(255, 101, 0, 0.06)),
    rgba(0, 0, 0, 0.62);
}

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

.training-card strong {
  display: block;
  color: var(--green3);
  font-size: 54px;
  margin-top: 8px;
}

.training-card span {
  color: var(--soft);
}

.drill-form {
  padding: 28px;
  background: rgba(0, 0, 0, 0.72);
}

.drill-form h3 {
  color: var(--orange);
  font-size: 32px;
  margin-bottom: 24px;
}

.drill-form input {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #000;
  color: #fff;
  outline: none;
}

.drill-form input:focus {
  border-color: var(--orange);
}

.drill-form button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-weight: 950;
}

.history-block {
  padding-top: 80px;
}

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

.timeline-card {
  min-height: 260px;
  padding: 30px;
  background: #000;
  border-color: rgba(255, 101, 0, 0.22);
}

.timeline-card strong {
  color: var(--orange);
  font-size: 38px;
}

.timeline-card h3 {
  margin-top: 16px;
  font-size: 28px;
}

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

.cta-section {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
  display: grid;
  place-items: center;
}

.cta-card {
  width: min(920px, 100%);
  padding: clamp(36px, 7vw, 78px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.86)),
    url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=1600&q=80')
      center/cover;
  border-color: rgba(255, 101, 0, 0.34);
}

.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: 48px 0 64px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer strong {
  color: var(--white);
  font-size: 22px;
}

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

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

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

.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: 1020px) {
  .nav,
  .download-link {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

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

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

  .intro-grid,
  .rule-cards,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .logo-text {
    display: none;
  }

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

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy,
  .split-copy p:not(.section-kicker),
  .section-head p:not(.section-kicker),
  .cta-card p {
    font-size: 17px;
  }

  .hero-metrics,
  .intro-grid,
  .rule-cards,
  .timeline {
    grid-template-columns: 1fr;
  }

  .float-chip {
    display: none;
  }

  .device {
    height: 620px;
  }

  .device-hero {
    height: 530px;
  }

  .section,
  .screens {
    padding: 90px 20px;
  }

  .screens .section-head,
  .screen-carousel {
    width: 100%;
  }

  .play-diagram {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
