:root {
  color-scheme: dark;
  --background: #07100f;
  --background-soft: #0b1715;
  --surface: #10201d;
  --surface-light: #172925;
  --border: rgba(213, 255, 237, 0.12);
  --text: #f4f8f5;
  --muted: #9eada6;
  --green: #38dc8b;
  --green-dark: #12885a;
  --orange: #ff8b2a;
  --orange-dark: #b85019;
  --blue: #3ca6ff;
  --red: #ff4d4d;
  --shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  --radius-large: 40px;
  --radius-medium: 28px;
  --section-width: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(39, 139, 100, 0.12), transparent 32rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.017) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 8.5vw, 7.8rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-shell {
  width: var(--section-width);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  width: min(1280px, calc(100% - 28px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 12px 14px 12px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(7, 16, 15, 0.83);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand img,
.final-cta img {
  overflow: hidden;
  border-radius: 25%;
  object-fit: cover;
}

.brand-orange {
  color: var(--orange);
}

.brand-green {
  color: var(--green);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #b6c2bd;
  font-size: 0.88rem;
}

.site-navigation a {
  transition: color 180ms ease;
}

.site-navigation a:hover {
  color: var(--text);
}

.nav-download {
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--text);
  color: #08110f;
  font-weight: 800;
}

.site-navigation .nav-download:hover {
  color: #08110f;
}

.language-control select {
  min-width: 100px;
  padding: 10px 34px 10px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: #101b19;
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 110px 0 100px;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  background: linear-gradient(125deg, #ffffff 28%, #bffde1 62%, var(--green));
  background-clip: text;
  color: transparent;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-body {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #29b878);
  box-shadow: 0 14px 40px rgba(56, 220, 139, 0.21);
  color: #03110a;
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(56, 220, 139, 0.3);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.proof-list,
.feature-points,
.privacy-points {
  padding: 0;
  list-style: none;
}

.proof-list {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-list li {
  padding: 7px 11px;
  border: 1px solid rgba(56, 220, 139, 0.15);
  border-radius: 999px;
  background: rgba(56, 220, 139, 0.055);
  color: #b9c8c1;
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 670px;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
}

.hero-glow-one {
  top: 120px;
  right: 5%;
  width: 420px;
  height: 420px;
  background: var(--green);
}

.hero-glow-two {
  right: 28%;
  bottom: 80px;
  width: 250px;
  height: 250px;
  background: var(--orange);
}

.phone {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background: #020706;
  box-shadow: var(--shadow);
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  object-position: top;
}

.phone-main {
  position: relative;
  z-index: 3;
  width: min(340px, 47vw);
  aspect-ratio: 9 / 19.4;
  transform: rotate(-2deg);
}

.phone-side {
  position: absolute;
  z-index: 2;
  width: min(255px, 35vw);
  aspect-ratio: 9 / 19.4;
  opacity: 0.72;
}

.phone-left {
  left: -2%;
  transform: translateY(20px) rotate(-11deg);
}

.phone-right {
  right: -3%;
  transform: translateY(30px) rotate(10deg);
}

.route-line {
  position: absolute;
  z-index: 5;
  width: 110px;
  height: 110px;
  right: 4%;
  bottom: 12%;
  border: 3px solid var(--orange);
  border-left-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 139, 42, 0.35);
  transform: rotate(-30deg);
}

.story-section {
  display: grid;
  min-height: 780px;
  padding: 130px 0;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.story-section-reverse .story-copy {
  order: 2;
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.15rem;
}

.quiet-note {
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: #74847d;
  font-size: 0.87rem !important;
}

.screen-stage {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 50% 35%, rgba(56, 220, 139, 0.17), transparent 45%),
    linear-gradient(135deg, #0d221b, #08120f);
}

.screen-stage-orange {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 139, 42, 0.17), transparent 45%),
    linear-gradient(135deg, #23170e, #0c110f);
}

.phone-feature {
  width: min(310px, 70vw);
  aspect-ratio: 9 / 19.4;
}

.stage-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  padding: 12px 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(56, 220, 139, 0.24);
  border-radius: 14px;
  background: rgba(5, 16, 11, 0.85);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  color: #c9fbe1;
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.stage-icon {
  color: var(--green);
}

.metric-orbit,
.progress-card {
  position: absolute;
  z-index: 3;
  min-width: 110px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(12, 20, 17, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.metric-orbit small {
  color: var(--muted);
  font-size: 0.66rem;
}

.metric-orbit-one {
  top: 22%;
  left: 4%;
}

.metric-orbit-two {
  right: 3%;
  bottom: 24%;
}

.feature-points {
  display: grid;
  margin: 32px 0 0;
  gap: 13px;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9d4cf;
  font-size: 0.94rem;
}

.feature-points li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(56, 220, 139, 0.12);
  color: var(--green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.dual-screen {
  position: relative;
  min-height: 680px;
}

.phone-detail,
.phone-share {
  position: absolute;
  width: min(310px, 61vw);
}

.phone-detail {
  top: 0;
  left: 7%;
  transform: rotate(-5deg);
}

.phone-share {
  right: 3%;
  bottom: 0;
  transform: rotate(7deg);
}

.progress-section {
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(circle at 76% 45%, rgba(60, 166, 255, 0.14), transparent 32rem),
    #091412;
  border-block: 1px solid var(--border);
}

.progress-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.progress-visual {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: center;
}

.phone-wide {
  width: min(370px, 70vw);
  aspect-ratio: 9 / 19.4;
}

.progress-card {
  display: flex;
  min-width: 130px;
  flex-direction: column;
}

.progress-card strong {
  color: var(--green);
  font-size: 1.6rem;
}

.progress-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.progress-card-one {
  top: 18%;
  right: 1%;
}

.progress-card-two {
  bottom: 17%;
  left: 1%;
}

.sports-section {
  padding: 140px 0;
}

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

.centered-heading p:not(.eyebrow) {
  max-width: 610px;
  margin-inline: auto;
}

.sports-layout {
  display: grid;
  max-width: 950px;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
}

.sports-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sport-chip {
  display: flex;
  min-height: 92px;
  padding: 16px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  color: #dce6e1;
}

.sport-chip span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 1.35rem;
}

.sport-chip strong {
  font-size: 0.9rem;
}

.sport-chip-1 { border-color: rgba(255, 139, 42, 0.28); }
.sport-chip-2 { border-color: rgba(56, 220, 139, 0.28); }
.sport-chip-3 { border-color: rgba(60, 166, 255, 0.28); }
.sport-chip-4 { border-color: rgba(255, 77, 114, 0.28); }
.sport-chip-5 { border-color: rgba(77, 196, 255, 0.28); }
.sport-chip-6 { border-color: rgba(50, 196, 214, 0.28); }
.sport-chip-7 { border-color: rgba(48, 217, 199, 0.28); }

.phone-filter {
  width: min(325px, 70vw);
  aspect-ratio: 9 / 19.4;
  transform: rotate(4deg);
}

.watch-section {
  overflow: hidden;
  padding: 130px 0;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 139, 42, 0.12), transparent 26rem),
    #0a1412;
}

.watch-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.watch-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.watch-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 220, 139, 0.24), transparent 67%);
}

.watch-body {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 370px;
  padding: 19px;
  border: 5px solid #56615d;
  border-radius: 88px;
  background: #151a19;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 0 0 2px #080b0a;
  transform: rotate(-6deg);
}

.watch-crown {
  position: absolute;
  top: 100px;
  right: -18px;
  width: 15px;
  height: 62px;
  border-radius: 8px;
  background: #66716d;
}

.watch-screen {
  position: relative;
  display: flex;
  height: 100%;
  padding: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 66px;
  background:
    radial-gradient(circle at 50% 78%, rgba(56, 220, 139, 0.22), transparent 38%),
    #030706;
}

.watch-status {
  position: absolute;
  top: 23px;
  left: 27px;
  right: 27px;
  display: flex;
  justify-content: space-between;
  color: #b5c1bb;
  font-size: 0.78rem;
}

.watch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.watch-activity {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.watch-screen strong {
  font-size: 4.6rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.watch-unit {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.watch-ring {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #12201c;
}

.watch-ring span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.launch-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 139, 42, 0.22);
  border-radius: 999px;
  background: rgba(255, 139, 42, 0.07);
  color: #ffbc7d;
  font-size: 0.78rem;
  font-weight: 800;
}

.privacy-section {
  display: grid;
  margin-block: 140px;
  padding: 70px;
  border: 1px solid rgba(56, 220, 139, 0.2);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 90% 0, rgba(56, 220, 139, 0.12), transparent 24rem),
    var(--surface);
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.text-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--green);
  font-weight: 800;
}

.text-link::after {
  margin-left: 9px;
  content: "→";
}

.privacy-points {
  display: grid;
  margin: 0;
  align-content: center;
  gap: 12px;
}

.privacy-points li {
  position: relative;
  padding: 18px 20px 18px 52px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  color: #d0dbd6;
}

.privacy-points li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.languages-section {
  display: grid;
  padding: 40px 0 150px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.language-visual {
  display: flex;
  min-height: 330px;
  padding: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, #101f1c, #09110f);
}

.language-visual > span {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #152722;
  box-shadow: var(--shadow);
  font-size: 1.5rem;
  font-weight: 900;
}

.language-route {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.final-cta {
  display: flex;
  min-height: 520px;
  padding: 80px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
  margin-top: 28px;
}

.final-cta p {
  max-width: 650px;
}

.final-cta .button {
  margin-top: 18px;
}

.site-footer {
  display: grid;
  min-height: 150px;
  padding: 35px 0;
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.83rem;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
}

.site-footer p {
  margin: 0;
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

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

.copyright {
  grid-column: 3;
}

.privacy-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-page {
  max-width: 1000px;
  padding: 110px 0 140px;
}

.privacy-hero {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.privacy-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.privacy-document {
  display: grid;
  gap: 28px;
}

.policy-copy,
.contact-card {
  padding: 45px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
}

.policy-updated {
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.privacy-promise {
  padding: 15px 20px;
  border: 1px solid rgba(56, 220, 139, 0.35);
  border-radius: 16px;
  background: rgba(56, 220, 139, 0.08);
  color: var(--green);
  font-weight: 800;
}

.policy-section + .policy-section {
  margin-top: 34px;
}

.policy-section h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.policy-section p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.98rem;
}

.policy-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--muted);
}

.policy-section li + li {
  margin-top: 7px;
}

.policy-section strong {
  color: var(--text);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.contact-card p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-error::after {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: 350px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 77, 77, 0.35);
  border-radius: 14px;
  background: #2b1010;
  color: #ffd4d4;
  content: "The website content could not be loaded.";
}

@media (max-width: 980px) {
  .site-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(340px, calc(100vw - 28px));
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #0b1513;
    box-shadow: var(--shadow);
  }

  .site-navigation.open {
    display: flex;
  }

  .site-navigation a,
  .site-navigation .language-control {
    width: 100%;
  }

  .site-navigation a {
    padding: 11px 12px;
  }

  .site-navigation select {
    width: 100%;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 660px;
  }

  .story-section,
  .progress-inner,
  .sports-layout,
  .watch-inner,
  .privacy-section,
  .languages-section {
    grid-template-columns: 1fr;
  }

  .story-section-reverse .story-copy {
    order: initial;
  }

  .story-section {
    gap: 55px;
  }

  .screen-stage {
    min-height: 690px;
  }

  .dual-screen {
    min-height: 720px;
  }

  .progress-copy,
  .watch-copy,
  .language-copy {
    max-width: 720px;
  }

  .privacy-section {
    gap: 40px;
  }

  .language-visual {
    order: 2;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .copyright {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }
}

@media (max-width: 640px) {
  :root {
    --section-width: min(100% - 26px, 1180px);
    --radius-large: 28px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.3rem, 13vw, 3.7rem);
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 74px 0 70px;
    gap: 35px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-main {
    width: 66vw;
  }

  .phone-side {
    width: 46vw;
  }

  .phone-left {
    left: -11%;
  }

  .phone-right {
    right: -11%;
  }

  .story-section,
  .progress-section,
  .sports-section,
  .watch-section {
    min-height: auto;
    padding: 90px 0;
  }

  .screen-stage {
    min-height: 590px;
  }

  .phone-feature {
    width: min(270px, 74vw);
  }

  .metric-orbit {
    display: none;
  }

  .dual-screen {
    min-height: 620px;
  }

  .phone-detail,
  .phone-share {
    width: 54vw;
  }

  .phone-detail {
    left: 0;
  }

  .phone-share {
    right: 0;
  }

  .progress-visual {
    min-height: 590px;
  }

  .progress-card {
    min-width: 105px;
    padding: 12px 14px;
  }

  .sports-list {
    grid-template-columns: 1fr;
  }

  .sports-layout {
    justify-items: center;
  }

  .sports-list {
    width: 100%;
  }

  .watch-body {
    width: 260px;
    height: 315px;
    border-radius: 74px;
  }

  .watch-screen {
    border-radius: 56px;
  }

  .watch-screen strong {
    font-size: 3.8rem;
  }

  .privacy-section {
    margin-block: 90px;
    padding: 34px 24px;
  }

  .language-visual {
    min-height: 260px;
    padding: 26px;
  }

  .language-visual > span {
    width: 78px;
    height: 78px;
  }

  .language-route {
    width: 60px;
  }

  .privacy-header .brand > span {
    display: none;
  }

  .privacy-header-actions {
    gap: 7px;
  }

  .privacy-header-actions select {
    min-width: 82px;
  }

  .privacy-header-actions .button {
    padding-inline: 12px;
  }

  .privacy-page {
    padding-top: 80px;
  }

  .privacy-summary,
  .policy-copy,
  .contact-card {
    padding: 28px 22px;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    display: flex;
    padding-block: 40px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
