:root {
  color-scheme: light;
  --bg: #f4f2ef;
  --bg-deep: #e8e9ec;
  --surface: #ffffff;
  --surface-soft: #eceef1;
  --glass-solid: #f9f9fa;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --glass-menu: rgba(255, 255, 255, 0.95);
  --text: #111216;
  --muted: #626773;
  --muted-strong: #454a54;
  --line: rgba(15, 18, 24, 0.11);
  --line-strong: rgba(15, 18, 24, 0.17);
  --shadow-sm: 0 12px 34px rgba(34, 40, 54, 0.08);
  --shadow-lg: 0 30px 90px rgba(28, 34, 46, 0.15);
  --page: 1180px;
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --accent: #ff6a1a;
  --accent-2: #8ea9cc;
  --accent-rgb: 255, 106, 26;
  --accent-2-rgb: 142, 169, 204;
  --accent-ink-light: #b64100;
  --accent-ink-dark: #ff9a61;
  --accent-ink: var(--accent-ink-light);
  --focus: rgba(var(--accent-rgb), 0.48);
}

:root[data-preset="neon"] {
  --accent: #f542c4;
  --accent-2: #19d5ed;
  --accent-rgb: 245, 66, 196;
  --accent-2-rgb: 25, 213, 237;
  --accent-ink-light: #a7197f;
  --accent-ink-dark: #ff7fda;
}

:root[data-preset="court"] {
  --accent: #2f8df5;
  --accent-2: #9be83e;
  --accent-rgb: 47, 141, 245;
  --accent-2-rgb: 155, 232, 62;
  --accent-ink-light: #0860b8;
  --accent-ink-dark: #76b7ff;
}

:root[data-preset="ultra"] {
  --accent: #ff6a1a;
  --accent-2: #8ea9cc;
  --accent-rgb: 255, 106, 26;
  --accent-2-rgb: 142, 169, 204;
  --accent-ink-light: #b64100;
  --accent-ink-dark: #ff9a61;
}

:root[data-appearance="dark"] {
  color-scheme: dark;
  --bg: #090b0e;
  --bg-deep: #0f1319;
  --surface: #15191f;
  --surface-soft: #1c2129;
  --glass-solid: #161a20;
  --glass: rgba(20, 24, 30, 0.7);
  --glass-strong: rgba(22, 26, 33, 0.88);
  --glass-menu: rgba(20, 24, 30, 0.96);
  --text: #f5f5f7;
  --muted: #a1a7b1;
  --muted-strong: #c3c7ce;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.26);
  --shadow-lg: 0 30px 100px rgba(0, 0, 0, 0.48);
  --accent-ink: var(--accent-ink-dark);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-appearance="light"]) {
    color-scheme: dark;
    --bg: #090b0e;
    --bg-deep: #0f1319;
    --surface: #15191f;
    --surface-soft: #1c2129;
    --glass-solid: #161a20;
    --glass: rgba(20, 24, 30, 0.7);
    --glass-strong: rgba(22, 26, 33, 0.88);
    --glass-menu: rgba(20, 24, 30, 0.96);
    --text: #f5f5f7;
    --muted: #a1a7b1;
    --muted-strong: #c3c7ce;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.26);
    --shadow-lg: 0 30px 100px rgba(0, 0, 0, 0.48);
    --accent-ink: var(--accent-ink-dark);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 7% 4%, rgba(var(--accent-rgb), 0.1), transparent 32rem),
    radial-gradient(circle at 94% 11%, rgba(var(--accent-2-rgb), 0.14), transparent 30rem),
    linear-gradient(180deg, transparent 0 36rem, rgba(var(--accent-rgb), 0.025) 78rem, transparent 112rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 220ms ease, color 220ms ease;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  padding: 10px 0;
}

.header-bar,
.hero,
.section,
.content-shell,
.site-footer {
  width: min(calc(100% - 40px), var(--page));
  margin-inline: auto;
}

.header-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 10px 8px 13px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: 0 12px 38px rgba(23, 29, 39, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: saturate(155%) blur(24px);
  backdrop-filter: saturate(155%) blur(24px);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: block;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 13px rgba(25, 31, 41, 0.12);
}

.header-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
}

.header-nav a,
.footer-links a,
.footer-languages a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.header-nav a:hover,
.footer-links a:hover,
.footer-languages a:hover {
  color: var(--text);
}

.header-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--text);
  font-weight: 760;
}

.global-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  background: rgba(var(--accent-2-rgb), 0.08);
}

.picker {
  position: relative;
}

.picker-trigger {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 12px;
  font-weight: 690;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.picker-trigger:hover,
.picker.is-open .picker-trigger {
  background: var(--glass-strong);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.control-icon {
  min-width: 17px;
  color: var(--accent-ink);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.control-flag {
  font-size: 17px;
  line-height: 1;
}

.control-chevron {
  color: var(--muted);
  font-size: 10px;
  transition: transform 150ms ease;
}

.picker.is-open .control-chevron {
  transform: rotate(180deg);
}

.preset-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.preset-dots span {
  width: 9px;
  height: 9px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.current-preset-dots span:first-child {
  background: var(--accent);
}

.current-preset-dots span:last-child {
  background: var(--accent-2);
}

.picker-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 11px);
  right: 0;
  width: 205px;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--glass-solid);
  background: var(--glass-menu);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: saturate(170%) blur(26px);
  backdrop-filter: saturate(170%) blur(26px);
  animation: menu-in 150ms ease-out;
}

.picker[data-picker="preset"] .picker-menu {
  width: 275px;
}

.picker-option {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 610;
  text-align: left;
  text-decoration: none;
}

.picker-option:hover,
.picker-option:focus-visible {
  background: rgba(var(--accent-rgb), 0.1);
}

.option-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-symbol {
  width: 22px;
  color: var(--accent-ink);
  font-size: 17px;
  text-align: center;
}

.option-flag {
  width: 24px;
  font-size: 19px;
  line-height: 1;
}

.option-check {
  color: var(--accent-ink);
  font-weight: 800;
  opacity: 0;
}

.picker-option[aria-checked="true"] {
  background: rgba(var(--accent-rgb), 0.1);
}

.picker-option[aria-checked="true"] .option-check {
  opacity: 1;
}

.preset-option-copy {
  display: grid;
  line-height: 1.2;
}

.preset-option-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.preset-neon span:first-child {
  background: #f542c4;
}

.preset-neon span:last-child {
  background: #19d5ed;
}

.preset-court span:first-child {
  background: #2f8df5;
}

.preset-court span:last-child {
  background: #9be83e;
}

.preset-ultra span:first-child {
  background: #ff6a1a;
}

.preset-ultra span:last-child {
  background: #8ea9cc;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }
}

.hero {
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.76fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
  padding-block: 76px 112px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-app-icon {
  width: 96px;
  height: 96px;
  display: block;
  margin-bottom: 25px;
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: 0 15px 38px rgba(31, 37, 48, 0.14);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 770;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.11);
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 94px);
  font-weight: 790;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.accent {
  color: var(--accent-ink);
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 31px;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 23px);
  letter-spacing: -0.022em;
  line-height: 1.45;
}

.store-panel {
  width: fit-content;
  max-width: 100%;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
}

.store-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}

.store-badge {
  min-width: 194px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px 8px 13px;
  border: 1px solid #000;
  border-radius: 13px;
  background: #050505;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.14);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

a.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 27px rgba(0, 0, 0, 0.2);
}

.store-badge-unavailable {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  filter: saturate(0.35);
  opacity: 0.82;
}

.store-icon {
  width: 29px;
  height: 33px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.79 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.53 4.1M12.03 7.25C11.88 5.02 13.69 3.18 15.77 3c.29 2.58-2.34 4.5-3.74 4.25'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.79 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.53 4.1M12.03 7.25C11.88 5.02 13.69 3.18 15.77 3c.29 2.58-2.34 4.5-3.74 4.25'/%3E%3C/svg%3E") center / contain no-repeat;
}

.play-icon {
  position: relative;
  width: 30px;
  height: 32px;
  flex: none;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 21px solid currentColor;
  border-radius: 3px;
}

.store-label {
  display: flex;
  flex-direction: column;
  line-height: 1.03;
}

.store-label small {
  font-size: 10px;
  letter-spacing: 0.01em;
}

.store-label strong {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 590;
  letter-spacing: -0.035em;
}

.availability {
  display: block;
  margin: 10px 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  justify-self: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% -12% 7%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-2-rgb), 0.25));
  filter: blur(34px);
}

.screenshot-frame,
.screen-frame {
  border: 1px solid var(--line-strong);
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: saturate(145%) blur(20px);
  backdrop-filter: saturate(145%) blur(20px);
}

.screenshot-frame {
  padding: 12px;
  border-radius: 50px;
  transform: rotate(1.4deg);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 39px;
}

.court-intro {
  max-width: 910px;
  padding-top: 35px;
  text-align: center;
}

.court-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 770;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.court-intro > p {
  max-width: 740px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 20px;
}

.intro-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.intro-pills span,
.rule-chip {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.editorial-copy h2,
.privacy-callout h2,
.cta-card h2,
.customization-copy h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 60px);
  font-weight: 770;
  letter-spacing: -0.058em;
  line-height: 1.04;
}

.section-heading p,
.editorial-copy > p,
.customization-copy > p {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.court-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: clamp(30px, 4.3vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  backdrop-filter: saturate(140%) blur(18px);
}

.feature-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14), transparent 68%);
}

.feature-card.rules-card::after {
  background: radial-gradient(circle, rgba(var(--accent-2-rgb), 0.2), transparent 68%);
}

.feature-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--glass-strong);
  color: var(--accent-ink);
  box-shadow: var(--shadow-sm);
  font-size: 25px;
  font-weight: 800;
}

.feature-card h3 {
  max-width: 490px;
  margin: 0 0 12px;
  font-size: 31px;
  font-weight: 740;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.rule-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 122px);
}

.editorial-row + .editorial-row {
  margin-top: 150px;
}

.editorial-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.76fr);
}

.editorial-row.reverse .editorial-visual {
  order: 2;
}

.editorial-visual {
  width: min(100%, 375px);
  justify-self: center;
}

.screen-frame {
  position: relative;
  padding: 10px;
  border-radius: 44px;
}

.screen-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -13%;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  filter: blur(30px);
}

.screen-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 34px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted-strong);
  font-size: 16px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-ink);
  font-weight: 800;
}

.customization-panel {
  padding: clamp(30px, 5.5vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: saturate(145%) blur(22px);
  backdrop-filter: saturate(145%) blur(22px);
}

.customization-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.custom-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.custom-shot-grid .screen-frame {
  padding: 7px;
  border-radius: 32px;
}

.custom-shot-grid .screen-frame:nth-child(2) {
  margin-top: 65px;
}

.custom-shot-grid .screen-frame img {
  border-radius: 25px;
}

.preset-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.preset-preview span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 650;
}

.preset-preview .preset-dots span {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.icon-gallery-heading {
  margin: 68px 0 25px;
  text-align: center;
}

.icon-gallery-heading h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.icon-gallery-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.icon-gallery {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.icon-choice {
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(var(--accent-2-rgb), 0.055);
  text-align: center;
}

.icon-choice.primary {
  grid-column: span 2;
  background: rgba(var(--accent-rgb), 0.075);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.13);
}

.icon-choice img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 7px 20px rgba(20, 24, 32, 0.12);
}

.icon-choice span {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.privacy-callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: clamp(45px, 7vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: #0f141c;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.privacy-callout::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.34), transparent 66%);
}

.privacy-callout p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #b6bdc8;
  font-size: 18px;
}

.privacy-seal {
  position: relative;
  z-index: 1;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.shield {
  width: 54px;
  height: 63px;
  display: grid;
  place-items: center;
  border: 4px solid currentColor;
  border-radius: 28px 28px 34px 34px;
  font-size: 22px;
  font-weight: 800;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.cta-card {
  padding: clamp(46px, 8vw, 84px) 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 15%, rgba(var(--accent-rgb), 0.15), transparent 24rem),
    radial-gradient(circle at 82% 80%, rgba(var(--accent-2-rgb), 0.2), transparent 25rem),
    var(--glass);
  text-align: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.cta-card > p {
  max-width: 600px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.cta-card .store-panel {
  margin-inline: auto;
}

.content-shell {
  max-width: 860px;
  padding-block: 82px 120px;
}

.content-shell-wide {
  max-width: 1040px;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line-strong);
}

.breadcrumbs a {
  color: var(--accent-ink);
  text-underline-offset: 3px;
}

.content-header {
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: saturate(145%) blur(20px);
  backdrop-filter: saturate(145%) blur(20px);
}

.content-header h1 {
  margin: 0;
  font-size: clamp(45px, 7vw, 72px);
  font-weight: 780;
  letter-spacing: -0.062em;
  line-height: 1;
}

.content-header p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.content-header .eyebrow {
  margin-bottom: 18px;
}

.content-header .hero-actions {
  margin-top: 28px;
}

.updated {
  display: inline-block;
  margin-top: 24px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(var(--accent-2-rgb), 0.09);
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.prose {
  padding: 48px clamp(4px, 3vw, 24px) 0;
}

.prose section {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.prose section:last-child {
  border-bottom: 0;
}

.prose h2 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 730;
  letter-spacing: -0.027em;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose p {
  margin: 0;
}

.prose ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.prose a,
.support-card a {
  color: var(--accent-ink);
  font-weight: 660;
  text-underline-offset: 3px;
}

.facts-panel {
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--glass-solid);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.075), var(--glass));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  backdrop-filter: saturate(140%) blur(18px);
}

.facts-panel h2,
.detail-section h2,
.related-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 770;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.facts-panel > p,
.detail-section > p,
.related-panel > p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.product-facts > div {
  min-width: 0;
  padding: 20px;
  background: var(--glass-strong);
}

.product-facts dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 620;
}

.discovery-grid,
.answer-grid,
.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.discovery-card,
.answer-card,
.mode-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass-solid);
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.discovery-card {
  display: block;
  transition: border-color 160ms ease, transform 160ms ease;
}

.discovery-card:hover {
  border-color: rgba(var(--accent-rgb), 0.42);
  transform: translateY(-2px);
}

.discovery-card strong,
.answer-card h3,
.mode-card h3 {
  display: block;
  margin: 0 0 7px;
  color: var(--text);
  font-size: 19px;
  font-weight: 730;
  letter-spacing: -0.025em;
}

.discovery-card span,
.answer-card p,
.mode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.detail-section {
  padding: 72px clamp(4px, 3vw, 24px) 0;
}

.detail-section + .detail-section {
  padding-top: 82px;
}

.watch-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: clamp(35px, 7vw, 76px);
}

.watch-showcase .editorial-visual {
  width: min(100%, 330px);
  justify-self: center;
}

.step-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  counter-increment: steps;
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass);
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 38px;
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.step-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.step-list span {
  color: var(--muted);
  font-size: 15px;
}

.format-table-wrap {
  max-width: 100%;
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass-solid);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.format-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.format-table caption {
  padding: 19px 21px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

.format-table th,
.format-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.format-table tbody tr:last-child th,
.format-table tbody tr:last-child td {
  border-bottom: 0;
}

.format-table thead th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.format-table tbody th {
  min-width: 185px;
  color: var(--text);
  font-size: 15px;
}

.format-table td {
  color: var(--muted);
  font-size: 14px;
}

.review-note,
.status-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--muted-strong);
  font-size: 15px;
}

.review-note a,
.status-note a,
.related-panel a {
  color: var(--accent-ink);
  font-weight: 680;
  text-underline-offset: 3px;
}

.related-panel {
  margin-top: 78px;
  padding: clamp(29px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(var(--accent-2-rgb), 0.13), var(--glass));
  box-shadow: var(--shadow-sm);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
}

.hero-actions,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--glass-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.button-link.primary {
  border-color: transparent;
  background: var(--accent);
  color: #111216;
}

.support-card {
  margin: 40px 0 55px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass-solid);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.1), var(--glass));
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.support-card p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

.support-card a {
  font-size: 21px;
}

.faq-title {
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 45px 23px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 680;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 3px;
  color: var(--accent-ink);
  font-size: 28px;
  font-weight: 400;
  transition: transform 170ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -6px 0 25px;
  padding-right: 36px;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-main {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.footer-links,
.footer-languages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-languages {
  gap: 14px;
}

.footer-languages a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.dedication {
  margin: 0;
  padding: 34px 16px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
}

@media (max-width: 1040px) {
  .header-bar {
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    padding: 2px 4px 4px;
    overflow-x: auto;
    gap: 18px;
    scrollbar-width: none;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-nav a {
    flex: none;
  }

  .global-controls {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    gap: 45px;
  }

  .court-grid,
  .customization-layout {
    grid-template-columns: 1fr;
  }

  .customization-copy {
    max-width: 720px;
  }

  .custom-shot-grid {
    max-width: 660px;
    margin-inline: auto;
  }

  .icon-gallery {
    display: flex;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .icon-choice {
    width: 140px;
    flex: 0 0 140px;
    scroll-snap-align: start;
  }

  .icon-choice.primary {
    width: 200px;
    flex-basis: 200px;
  }

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

  .step-list li::before {
    margin-bottom: 22px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 65px 92px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-app-icon,
  .store-panel {
    margin-inline: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .availability {
    margin-left: 0;
    text-align: center;
  }

  .hero-visual {
    width: min(88%, 410px);
  }

  .hero-visual::before {
    inset-inline: 0;
  }

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

  .feature-card {
    min-height: 325px;
  }

  .feature-symbol {
    margin-bottom: 55px;
  }

  .editorial-row,
  .editorial-row.reverse {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .editorial-row.reverse .editorial-visual {
    order: 0;
  }

  .editorial-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .privacy-callout {
    grid-template-columns: 1fr;
  }

  .privacy-seal {
    width: 112px;
    height: 112px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    padding-block: 25px;
  }

  .footer-languages {
    grid-column: 1 / -1;
  }

  .watch-showcase {
    grid-template-columns: 1fr;
  }

  .watch-showcase .editorial-visual {
    order: -1;
  }
}

@media (max-width: 680px) {
  .header-bar,
  .hero,
  .section,
  .content-shell,
  .site-footer {
    width: min(calc(100% - 24px), var(--page));
  }

  .site-header {
    padding-top: 7px;
  }

  .header-bar {
    min-height: 58px;
    gap: 8px;
    padding: 6px 7px 6px 9px;
    border-radius: 19px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .global-controls {
    gap: 3px;
    padding: 3px;
    border-radius: 14px;
  }

  .picker-trigger {
    width: 38px;
    height: 34px;
    gap: 0;
    padding: 0;
    border-radius: 10px;
  }

  .control-value,
  .control-chevron {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .picker-menu,
  .picker[data-picker="preset"] .picker-menu {
    position: fixed;
    top: 112px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .hero {
    gap: 60px;
    padding-block: 55px 82px;
  }

  .hero-app-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
    border-radius: 23px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .store-panel {
    width: 100%;
  }

  .store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .screenshot-frame {
    padding: 9px;
    border-radius: 42px;
  }

  .screenshot-frame img {
    border-radius: 34px;
  }

  .court-intro {
    padding-top: 12px;
  }

  .court-intro h2 {
    font-size: 42px;
  }

  .court-intro > p {
    font-size: 18px;
  }

  .section {
    padding-block: 82px;
  }

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

  .section-heading h2,
  .editorial-copy h2,
  .privacy-callout h2,
  .cta-card h2,
  .customization-copy h2 {
    font-size: 39px;
  }

  .section-heading p,
  .editorial-copy > p,
  .customization-copy > p {
    font-size: 17px;
  }

  .feature-card {
    min-height: 0;
    padding: 29px;
  }

  .feature-symbol {
    width: 51px;
    height: 51px;
    margin-bottom: 42px;
    border-radius: 16px;
  }

  .feature-card h3 {
    font-size: 27px;
  }

  .editorial-row + .editorial-row {
    margin-top: 112px;
  }

  .editorial-visual {
    width: min(88%, 340px);
  }

  .screen-frame::before {
    inset-inline: 0;
  }

  .customization-panel {
    padding: 29px 18px;
    border-radius: 30px;
  }

  .custom-shot-grid {
    gap: 8px;
  }

  .custom-shot-grid .screen-frame:nth-child(2) {
    margin-top: 38px;
  }

  .preset-preview {
    gap: 6px;
  }

  .privacy-callout {
    gap: 34px;
    padding: 39px 27px;
    border-radius: 30px;
  }

  .cta-card {
    padding-inline: 18px;
    border-radius: 30px;
  }

  .content-shell {
    padding-block: 55px 90px;
  }

  .content-header {
    padding: 31px 25px;
    border-radius: 29px;
  }

  .content-header h1 {
    font-size: 46px;
  }

  .content-header p {
    font-size: 17px;
  }

  .product-facts,
  .discovery-grid,
  .answer-grid,
  .mode-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-section + .detail-section {
    padding-top: 68px;
  }

  .facts-panel h2,
  .detail-section h2,
  .related-panel h2 {
    font-size: 35px;
  }

  .format-table-wrap::after {
    content: attr(data-scroll-hint);
    display: block;
    padding: 10px 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
  }

  .support-card {
    padding: 25px;
  }

  .support-card a {
    font-size: 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-languages {
    grid-column: auto;
  }

  .dedication {
    padding: 30px 8px 38px;
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

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

  .custom-shot-grid {
    grid-template-columns: 1fr;
    max-width: 245px;
  }

  .custom-shot-grid .screen-frame:nth-child(2) {
    margin-top: 0;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header-bar,
  .picker-menu,
  .store-panel,
  .screenshot-frame,
  .screen-frame,
  .feature-card,
  .customization-panel,
  .content-header,
  .support-card {
    background: var(--glass-solid);
  }

  .cta-card {
    background: var(--surface);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
