:root {
  color-scheme: dark;
  --bg: #141414;
  --bg-deep: #0b0b0b;
  --text: #f7f7f5;
  --muted: #b8b8b5;
  --quiet: #898986;
  --panel: #242424;
  --panel-high: #303030;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff6a00;
  --accent-high: #ff8a1f;
  --accent-low: #d94800;
  --danger: #ff5e57;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 106, 0, 0.09), transparent 28rem),
    var(--bg-deep);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.page {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 30px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 760;
}

.brand img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-link:hover {
  color: var(--accent-high);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  min-height: calc(100svh - 96px);
  padding: 48px 0 72px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-high);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(4rem, 8.6vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.lede {
  margin: 28px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.42;
}

.privacy-note {
  margin: 34px 0 0;
  max-width: 580px;
  color: var(--quiet);
  font-size: 0.95rem;
  line-height: 1.55;
}

.privacy-note a,
.policy a {
  color: var(--accent-high);
  font-weight: 720;
}

.phone-fan {
  width: min(100%, 660px);
  height: 680px;
  justify-self: center;
  position: relative;
  isolation: isolate;
}

.phone-fan::before {
  content: "";
  position: absolute;
  inset: 13% 7% 1%;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.2);
  filter: blur(70px);
  opacity: 0.52;
}

.phone-shot {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 292px;
  margin: 0;
  transform-origin: 50% 92%;
  transition: transform 240ms ease, filter 240ms ease, opacity 240ms ease;
}

.phone-shot img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 11.7% / 5.4%;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.62);
}

.phone-shot-protocol {
  z-index: 1;
  transform: translateX(-88%) translateY(48px) rotate(-10deg) scale(0.91);
  filter: brightness(0.76) saturate(0.9);
  opacity: 0.92;
}

.phone-shot-workout {
  z-index: 1;
  transform: translateX(-12%) translateY(48px) rotate(10deg) scale(0.91);
  filter: brightness(0.76) saturate(0.9);
  opacity: 0.92;
}

.phone-shot-stats {
  z-index: 3;
  transform: translateX(-50%);
}

.phone-fan:hover .phone-shot-protocol {
  transform: translateX(-92%) translateY(42px) rotate(-12deg) scale(0.92);
  filter: brightness(0.84) saturate(0.96);
}

.phone-fan:hover .phone-shot-workout {
  transform: translateX(-8%) translateY(42px) rotate(12deg) scale(0.92);
  filter: brightness(0.84) saturate(0.96);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 0 86px;
}

.feature {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(48, 48, 48, 0.72), rgba(28, 28, 28, 0.72));
}

.feature h2 {
  margin: 0 0 9px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.9rem;
}

footer a {
  color: var(--muted);
  font-weight: 650;
}

footer a:hover {
  color: var(--accent-high);
}

.policy {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  line-height: 1.6;
}

.policy nav {
  margin-bottom: clamp(58px, 11vw, 128px);
}

.policy header {
  margin-bottom: clamp(46px, 8vw, 78px);
}

.policy h1 {
  font-size: clamp(4.2rem, 13vw, 8rem);
}

.policy .summary {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  line-height: 1.45;
}

.notice {
  margin: 34px 0 0;
  max-width: 790px;
  padding-left: 18px;
  border-left: 5px solid var(--accent);
  font-size: 1.02rem;
}

.policy section {
  max-width: 840px;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.policy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.policy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.policy p:last-child {
  margin-bottom: 0;
}

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

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

.data-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.data-table th,
.data-table td {
  padding: 13px 12px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--quiet);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy footer {
  max-width: 840px;
  margin-top: 56px;
}

@media (max-width: 980px) {
  .page {
    width: min(100% - 24px, 560px);
    padding-top: 20px;
  }

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

  h1 {
    font-size: clamp(4rem, 19vw, 6.7rem);
  }

  .phone-fan {
    width: min(100%, 580px);
    height: clamp(430px, 112vw, 620px);
  }

  .phone-shot {
    top: 8px;
    width: clamp(174px, 48vw, 270px);
  }

  .phone-shot-protocol {
    transform: translateX(-82%) translateY(38px) rotate(-8deg) scale(0.89);
  }

  .phone-shot-workout {
    transform: translateX(-18%) translateY(38px) rotate(8deg) scale(0.89);
  }

  .phone-fan:hover .phone-shot-protocol {
    transform: translateX(-84%) translateY(34px) rotate(-9deg) scale(0.9);
  }

  .phone-fan:hover .phone-shot-workout {
    transform: translateX(-16%) translateY(34px) rotate(9deg) scale(0.9);
  }

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

@media (min-width: 801px) and (max-height: 700px) {
  .hero {
    align-items: start;
    padding-top: 46px;
  }

  h1 {
    font-size: min(7.2vw, 5.4rem);
  }

  .lede {
    font-size: 1.08rem;
  }

  .phone-fan {
    height: 560px;
  }

  .phone-shot {
    width: 240px;
  }
}

@media (max-width: 640px) {
  .policy {
    width: min(100% - 24px, 940px);
    padding-top: 20px;
  }

  .policy nav {
    margin-bottom: 66px;
  }

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

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
  }

  .data-table thead {
    display: none;
  }

  .data-table td {
    padding: 10px 0;
  }

  .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--quiet);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  footer {
    flex-direction: column;
  }
}

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

  .phone-shot {
    transition: none;
  }
}
