:root {
  color-scheme: dark;
  --bg: #020403;
  --panel: #0a0d0c;
  --panel-2: #101312;
  --text: #f7f8f5;
  --muted: #a6a8a5;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* One action accent for the whole page: orange. It means action,
     selection, or state, never decoration. Green and red appear only
     where they depict the real in-game make and miss controls. */
  --orange: #ff6a00;
  --orange-bright: #ff8326;
  --orange-press: #e85f00;
  --on-orange: #150a02;
  --accent-glow: 0 14px 38px rgba(255, 106, 0, 0.3);

  /* In-game semantic colors. Used only on control depictions. */
  --green-bright: #09a85a;
  --red: #e0392b;

  --focus: #ffcf99;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);

  /* One radius scale, per role. */
  --r-pill: 999px;
  --r-card: 20px;
  --r-device: 44px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  /* Keep anchor targets clear of the floating sticky nav. */
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 10%, rgba(255, 106, 0, 0.16), transparent 30rem),
    var(--bg);
  color: var(--text);
}

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

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

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

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

img {
  display: block;
  max-width: 100%;
}

/* Floating pill nav. Sticks a short distance from the top and rides
   the page as you scroll. Dark translucent, used deliberately for
   this one element rather than as a page-wide glass reflex. */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  background: rgba(9, 12, 11, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 50px rgba(0, 0, 0, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  position: relative;
  transition: color 160ms var(--ease);
}

nav a:not(.nav-cta):hover,
.site-footer a:hover {
  color: var(--text);
}

nav a[aria-current="page"]:not(.nav-cta),
nav a:not(.nav-cta):hover {
  color: var(--text);
}

nav a[aria-current="page"]:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

/* CTA that repeats identically in the nav, hero, and closing section. */
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: var(--on-orange);
  font-size: 14px;
  font-weight: 850;
  box-shadow: var(--accent-glow);
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-bright);
}

.nav-cta:active {
  transform: translateY(0);
  background: var(--orange-press);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: min(600px, calc(100vh - 150px));
  margin: 0 auto;
  gap: 44px;
  padding: 36px 0 44px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(74px, 12vw, 168px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.hero-copy > p:first-of-type {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 750;
}

.hero-copy .hero-supporting {
  max-width: 48ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

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

.actions-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  padding: 0 26px;
  font-size: 15px;
  font-weight: 850;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline-offset: 3px;
}

.button-primary {
  background: var(--orange);
  color: var(--on-orange);
  box-shadow: var(--accent-glow);
}

.button-primary:hover {
  background: var(--orange-bright);
}

.button-primary:active {
  background: var(--orange-press);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-device {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
}

.hero-copy,
.feature-copy,
.feature-media {
  min-width: 0;
}

/* One restrained orange glow behind the device for depth. */
.hero-device::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: var(--r-pill);
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 62%);
  filter: blur(10px);
}

.shot-arc {
  position: absolute;
  right: 8px;
  bottom: 84px;
  width: 360px;
  height: 360px;
  border: 3px solid rgba(255, 106, 0, 0.42);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: var(--r-pill);
  transform: rotate(-12deg);
}

.watch-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-device);
  background: #000;
  box-shadow: var(--shadow);
}

.watch-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.watch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-frame-large {
  z-index: 1;
  width: min(360px, 78vw);
  aspect-ratio: 416 / 496;
}

.watch-frame-tilt {
  width: min(330px, 78vw);
  aspect-ratio: 416 / 496;
}

/* Honest trust strip. Facts only. A ratings row will join this
   section once real reviews exist. */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 4px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--orange);
}

.section,
.feature-section,
.privacy-callout,
.final-cta,
.gallery-section,
.policy-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section,
.privacy-callout,
.final-cta,
.gallery-section {
  padding: 78px 0;
  border-top: 1px solid var(--line-soft);
}

.section-heading {
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.steps,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

/* Soft rounded panels. Steps are a centered numbered sequence; the
   privacy cards below use a distinct left-aligned guarantee layout so
   the two rows do not read as the same template stamped twice. */
.steps article,
.privacy-grid article {
  padding: 34px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 200ms var(--ease),
    border-color 200ms var(--ease);
}

.steps article {
  text-align: center;
}

.steps article:hover,
.privacy-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.steps h3,
.privacy-grid h3 {
  font-size: 22px;
  line-height: 1.1;
}

.steps h3 {
  margin: 20px 0 0;
}

.steps p {
  margin: 10px auto 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.privacy-grid h3 {
  margin: 18px 0 0;
}

.privacy-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

/* One icon system. Steps get numbered badges; privacy gets one
   consistent guarantee check. No mixed glyph sources or weights. */
.step-num {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: var(--r-pill);
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
}

.guarantee-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--r-pill);
  background: rgba(255, 106, 0, 0.14);
  color: var(--orange);
  font-size: 22px;
  font-weight: 850;
}

.ball-mark::before {
  content: "◉";
  color: var(--orange);
  font-size: 36px;
  line-height: 1;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  padding: 78px 0;
  border-top: 1px solid var(--line-soft);
}

.feature-media {
  display: grid;
  place-items: center;
}

.feature-copy h2 {
  max-width: 430px;
}

.control-list {
  display: grid;
  gap: 0;
  max-width: 520px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.control-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.control-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--r-pill);
  font-size: 28px;
  font-weight: 850;
}

.control-symbol.make {
  color: var(--green-bright);
  border: 1px solid rgba(9, 168, 90, 0.55);
}

.control-symbol.miss {
  color: var(--red);
  border: 1px solid rgba(224, 57, 43, 0.6);
}

.control-symbol.arrow {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.control-list strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.control-list span span {
  display: block;
}

.control-list div span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.feature-note {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.gallery .watch-frame {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gallery .watch-frame::before {
  display: none;
}

.gallery .watch-frame img {
  aspect-ratio: 416 / 496;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  transition: transform 220ms var(--ease);
}

.gallery figure:hover img {
  transform: translateY(-4px);
}

.gallery figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
}

.ball-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.final-cta h2 {
  margin-top: 12px;
}

.final-cta > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer a:not(.footer-brand) {
  transition: color 160ms var(--ease);
}

.footer-brand {
  margin-right: auto;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.policy-page {
  padding: 60px 0 100px;
}

.policy-hero {
  max-width: 820px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 110px);
  line-height: 0.9;
  font-weight: 950;
}

.policy-hero p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 700;
}

.policy-hero span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.policy-card {
  max-width: 880px;
  margin-top: 46px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.03);
}

.policy-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}

.policy-card h2 {
  font-size: 24px;
}

.policy-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.58;
}

.policy-card .text-link {
  color: var(--text);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.inline-placeholder {
  color: var(--orange);
  overflow-wrap: anywhere;
}

.support-page {
  min-height: calc(100vh - 140px);
}

.support-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  align-items: center;
  gap: 32px;
  max-width: 880px;
  margin-top: 46px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.03);
}

.support-contact h2 {
  font-size: 24px;
}

.support-contact p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.5;
}

.support-email {
  display: grid;
  gap: 5px;
  margin: 0;
  text-align: right;
}

.support-email span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-email strong {
  color: var(--orange);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.support-card {
  margin-top: 28px;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 880px;
  margin-top: 28px;
}

/* Gentle reveal on scroll. Progressive enhancement only: the initial
   hidden state is applied solely where scroll timelines are supported
   and motion is allowed, so unsupported browsers show everything. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      animation: reveal-up linear both;
      animation-timeline: view();
      /* Finish shortly after entering so a last or short element
         cannot get stuck partway through the fade. */
      animation-range: entry 0% cover 20%;
    }
  }
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 9px 12px 9px 18px;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-device {
    min-height: 360px;
    margin-top: 8px;
  }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .feature-section {
    gap: 46px;
  }

  .feature-copy {
    order: -1;
  }

  .site-footer {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-brand {
    width: 100%;
  }

  .support-contact {
    grid-template-columns: 1fr;
  }

  .support-email {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100vw - 24px);
  }

  .site-footer,
  .hero,
  .section,
  .feature-section,
  .privacy-callout,
  .final-cta,
  .gallery-section,
  .policy-page,
  .trust-strip {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .button,
  .actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .hero-copy > p,
  .hero-copy .actions {
    max-width: 340px;
  }

  .hero-copy > p {
    overflow-wrap: normal;
  }

  .section-heading p {
    max-width: 300px;
  }

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

  .hero-copy > p:first-of-type {
    font-size: 25px;
  }

  .hero-copy .hero-supporting {
    font-size: 16px;
  }

  .shot-arc {
    width: 280px;
    height: 280px;
    right: -80px;
  }

  .hero-device::before {
    width: 320px;
    height: 320px;
  }

  .watch-frame-large {
    width: min(286px, 78vw);
    transform: none;
  }

  .policy-card,
  .support-contact {
    padding: 24px;
  }

  .support-links .button {
    width: 100%;
  }

  .gallery {
    display: flex;
    gap: 16px;
    margin-right: -14px;
    padding: 0 14px 18px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .gallery .watch-frame {
    flex: 0 0 min(76vw, 300px);
    scroll-snap-align: start;
  }

  .site-footer {
    gap: 22px;
  }
}

@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;
  }

  .button:hover,
  .nav-cta:hover,
  .steps article:hover,
  .privacy-grid article:hover {
    transform: none;
  }
}
