:root {
  color-scheme: dark;
  --black: #080808;
  --black-soft: #101010;
  --surface: #171717;
  --surface-raised: #202020;
  --white: #f8f8f3;
  --muted: #bcbcb4;
  --yellow: #ffd400;
  --yellow-soft: #ffe45c;
  --yellow-deep: #e6bd00;
  --border: #373737;
  --border-strong: #525252;
  --max-width: 72rem;
  --wide-width: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--yellow);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.1em;
}

a:hover {
  color: var(--yellow-soft);
}

a:focus-visible,
summary:focus-visible {
  outline: 0.2rem solid var(--yellow);
  outline-offset: 0.25rem;
  border-radius: 0.15rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 850;
  transform: translateY(-200%);
}

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

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.shell-wide {
  width: min(calc(100% - 2rem), var(--wide-width));
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.96);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  position: relative;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  min-width: 3.25rem;
  min-height: 2.15rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.2rem 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  transform: skew(-6deg);
}

.brand-name {
  max-width: 12rem;
}

.desktop-nav,
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.4rem;
}

nav a {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration-color: transparent;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--yellow);
  text-decoration-color: currentColor;
}

.desktop-nav {
  display: none;
}

.mobile-nav summary {
  min-width: 4.25rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border-strong);
  color: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  list-style: none;
  text-align: center;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav[open] summary {
  border-color: var(--yellow);
  color: var(--yellow);
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0;
  display: grid;
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.55rem;
  border: 1px solid var(--border-strong);
  background: var(--surface-raised);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.5);
}

.mobile-nav nav a {
  padding: 0.7rem 0.75rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.2rem, 8vw, 7rem);
}

.hero-section::before {
  position: absolute;
  z-index: -1;
  top: -10rem;
  right: -11rem;
  width: 28rem;
  height: 28rem;
  border: 5rem solid rgba(255, 212, 0, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid #6c5b00;
  background: rgba(255, 212, 0, 0.08);
  color: var(--yellow-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-pill span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0.25rem rgba(255, 212, 0, 0.12);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #3b3100;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 13vw, 6.6rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.025em;
}

.lede {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border: 2px solid var(--yellow);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
}

.button-primary:hover {
  background: var(--yellow-soft);
  color: var(--black);
}

.button-secondary {
  color: var(--yellow);
}

.button-secondary:hover {
  border-color: var(--yellow-soft);
  color: var(--yellow-soft);
}

.hero-note {
  margin: 1.2rem 0 0;
  color: #989890;
  font-size: 0.9rem;
  font-weight: 650;
}

.download-qr {
  display: grid;
  max-width: 11.875rem;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
}

.download-qr a {
  display: block;
  border: 1px solid var(--border-strong);
  background: #fff;
}

.download-qr img {
  width: 100%;
}

.download-qr figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.hero-visual {
  position: relative;
  padding: 0.55rem;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 1rem 1rem 0 var(--yellow);
  transform: rotate(0.7deg);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
}

.hero-visual img {
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.image-tag {
  position: absolute;
  z-index: 1;
  right: -0.35rem;
  bottom: 1.4rem;
  padding: 0.4rem 0.7rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section-dark {
  border-block: 1px solid var(--border);
  background: var(--black-soft);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.25rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 15rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.feature-card::after {
  position: absolute;
  right: -2rem;
  bottom: -3.5rem;
  width: 8rem;
  height: 8rem;
  border: 1.5rem solid rgba(255, 212, 0, 0.06);
  border-radius: 50%;
  content: "";
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.screenshots-section {
  background: linear-gradient(180deg, var(--black) 0%, #11100b 100%);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  align-items: start;
}

.screenshot-card {
  width: 100%;
  max-width: 23.5rem;
  margin: 0 auto;
}

.device-frame {
  position: relative;
  padding: 0.72rem;
  border: 1px solid #555;
  border-radius: 3rem;
  background: linear-gradient(145deg, #3b3b3b, #151515 28%, #080808 72%, #333);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.42);
}

.device-frame::after {
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2.65rem;
  content: "";
  pointer-events: none;
}

.device-frame picture,
.device-frame img {
  width: 100%;
}

.device-frame img {
  aspect-ratio: 1284 / 2778;
  border-radius: 2.28rem;
  object-fit: contain;
}

.device-speaker {
  position: absolute;
  z-index: 2;
  top: 1.13rem;
  left: 50%;
  width: 27%;
  height: 1.15rem;
  border-radius: 1rem;
  background: #090909;
  transform: translateX(-50%);
}

.screenshot-card figcaption {
  display: grid;
  gap: 0.2rem;
  padding: 1.25rem 0.5rem 0;
  text-align: center;
}

.screenshot-card figcaption strong {
  font-size: 1.08rem;
}

.screenshot-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.watch-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.watch-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.watch-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.sync-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(0.55rem, 3vw, 1.5rem);
  align-items: center;
}

.sync-device {
  display: grid;
  min-height: 13rem;
  place-items: center;
  align-content: center;
  padding: 1rem;
  border: 2px solid var(--border-strong);
  background: var(--black);
  text-align: center;
}

.sync-phone {
  border-radius: 2.3rem;
}

.sync-watch {
  border-radius: 3.8rem;
}

.sync-device > span,
.sync-device small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.sync-device strong {
  color: var(--yellow);
  font-size: 3.5rem;
  line-height: 1.2;
}

.sync-arrow {
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
}

.sync-arrow span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.coverage-section {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--yellow);
  color: var(--black);
}

.coverage-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.coverage-layout h2 {
  max-width: 13ch;
}

.coverage-layout > div > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.coverage-date {
  display: grid;
  justify-items: start;
  margin: 0;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.coverage-date strong {
  font-size: clamp(4.8rem, 18vw, 9rem);
  letter-spacing: -0.08em;
}

.coverage-date span {
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.16em;
}

.privacy-section {
  background: var(--black-soft);
}

.privacy-layout {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 850;
}

.privacy-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.privacy-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.privacy-list li::before {
  color: var(--yellow);
  content: "✓";
  font-weight: 950;
}

.privacy-list strong {
  font-size: 1.08rem;
}

.privacy-list span {
  color: var(--muted);
}

.support-callout {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--border);
  background: var(--black);
}

.support-callout-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.support-callout h2 {
  font-size: clamp(2.1rem, 6vw, 3.8rem);
}

.support-callout p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.email-link {
  font-weight: 800;
}

.page-content {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.page-heading {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.page-heading h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
}

.effective-date {
  margin: 0;
  color: var(--muted);
}

.content-card {
  margin-bottom: 1rem;
  padding: clamp(1.3rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  background: var(--surface);
}

.content-card h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  letter-spacing: -0.025em;
}

.content-card > p:first-of-type {
  margin-top: 0;
}

.content-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.accent-card {
  border-left: 0.35rem solid var(--yellow);
  background: var(--surface-raised);
}

.checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2rem;
  border-top: 1px solid var(--border);
}

.checklist li::before {
  position: absolute;
  left: 0.25rem;
  color: var(--yellow);
  content: "✓";
  font-weight: 900;
}

.policy-layout {
  display: grid;
  gap: 1rem;
}

.policy-layout .content-card {
  margin: 0;
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--border);
  background: #050505;
}

.footer-inner {
  align-items: flex-start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-legal p {
  max-width: 60rem;
  margin: 0;
  color: #9d9d96;
  font-size: 0.83rem;
}

@media (min-width: 36rem) {
  .feature-grid,
  .policy-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-layout .accent-card {
    grid-column: 1 / -1;
  }

  .coverage-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (min-width: 48rem) {
  .support-callout-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .privacy-list li {
    grid-template-columns: 1.5rem minmax(10rem, 0.7fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: baseline;
  }
}

@media (min-width: 55rem) {
  .desktop-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 60rem) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .watch-layout,
  .privacy-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  }
}

@media (min-width: 62rem) {
  .hero-section {
    padding-block: clamp(3.75rem, 6vw, 5rem);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(31rem, 1.1fr);
  }

  .hero-copy {
    padding-block: 1rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(4.25rem, 6vw, 5rem);
  }
}

@media (max-width: 54.99rem) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 32rem) {
  .actions,
  .actions .button,
  .support-actions,
  .support-actions .button {
    width: 100%;
  }

  .sync-visual {
    grid-template-columns: 1fr;
  }

  .sync-arrow {
    grid-template-columns: auto auto;
    gap: 0.5rem;
    transform: rotate(90deg);
  }

  .sync-arrow span {
    transform: rotate(-90deg);
  }

  .sync-device {
    width: min(100%, 13rem);
    min-height: 11rem;
    margin-inline: auto;
  }
}

@media (max-width: 25rem) {
  .brand-name {
    max-width: 8.5rem;
    font-size: 0.88rem;
  }
}

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