:root {
  color-scheme: light;
  --ink: #101414;
  --muted: #5e6663;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: rgba(16, 20, 20, 0.12);
  --line-strong: rgba(16, 20, 20, 0.2);
  --green: #007a48;
  --green-bright: #65e1a3;
  --green-soft: #e8f4ee;
  --pink: #e54887;
  --cyan: #2fc5d2;
  --gold: #c99a2f;
  --charcoal: #151817;
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

p {
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: 5.55rem;
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: 3.65rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.12;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(15, 18, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
}

.brand-glyph {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background: #07110d;
  border-radius: 6px;
}

.brand-glyph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a,
.nav-action,
.button {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-action:hover {
  color: var(--white);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: clamp(660px, 84svh, 820px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2)) 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.96), rgba(8, 10, 10, 0.84) 33%, rgba(8, 10, 10, 0.24) 67%, rgba(8, 10, 10, 0.08)),
    url("assets/fixed-hero.jpg") right center / min(1040px, 72vw) auto no-repeat,
    #101414;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), rgba(247, 248, 244, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(670px, 100%);
  min-width: 0;
  padding-top: 28px;
}

.mobile-hero-visual {
  display: none;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.feature-band .eyebrow,
.contact-section .eyebrow {
  color: var(--green-bright);
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 850;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.proof-line {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
}

.signal-strip {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - var(--max)) / 2));
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.signal-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(10, 12, 12, 0.62);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.answer-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(calc(100% - 40px), var(--max));
  margin: -22px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.answer-band article {
  min-height: 178px;
  padding: 22px;
  background: var(--white);
}

.answer-band span,
.card-index {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-band span {
  margin-bottom: 34px;
}

.answer-band strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.1;
}

.answer-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.launch-note {
  width: min(calc(100% - 40px), var(--max));
  margin: 16px auto 0;
  padding: 15px 18px;
  color: #29443a;
  background: #edf5ef;
  border: 1px solid #cce6d8;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.launch-note strong {
  color: #033f2e;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.layer-card {
  min-height: 236px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.layer-card:nth-child(2) {
  border-top: 4px solid var(--pink);
}

.layer-card:nth-child(3) {
  border-top: 4px solid var(--green);
}

.layer-card:nth-child(4) {
  border-top: 4px solid var(--cyan);
}

.card-index {
  margin-bottom: 60px;
  color: var(--gold);
}

.layer-card p,
.feature-copy p,
.play-copy p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 540px) minmax(0, 640px) minmax(24px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 104px 0;
}

.motus-section {
  color: var(--white);
  background: var(--charcoal);
}

.feature-copy {
  grid-column: 2;
}

.feature-copy p {
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.motus-section .feature-copy p,
.motus-section .feature-list {
  color: rgba(255, 255, 255, 0.68);
}

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

.feature-list li {
  padding-left: 20px;
  border-left: 3px solid var(--green);
}

.section-disclaimer {
  max-width: 620px;
  margin-top: 22px;
  padding: 12px 14px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 760;
}

.section-heading .section-disclaimer,
.play-copy .section-disclaimer,
.athletics-section .section-disclaimer {
  color: #29443a;
  background: #edf5ef;
  border-color: #cce6d8;
}

.motus-visuals,
.apparel-media {
  grid-column: 3;
}

.motus-visuals {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 14px;
  align-items: stretch;
}

figure {
  margin: 0;
}

.motus-visual,
.phone-demo,
.video-grid figure,
.product-grid figure,
.proof-feature-image,
.proof-filmstrip figure,
.contact-routes article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.motus-visual {
  min-height: 320px;
  background: #0f1110;
  border-color: rgba(255, 255, 255, 0.12);
}

.motus-visual-large {
  min-height: 500px;
}

.motus-visual img,
.proof-feature-image img,
.proof-filmstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motus-visual img {
  object-fit: cover;
  object-position: center;
}

.motus-visual figcaption,
.phone-demo figcaption {
  color: rgba(255, 255, 255, 0.68);
  background: #101414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

figcaption {
  padding: 13px 14px 15px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.reflexion-section {
  width: 100%;
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(21, 24, 23, 0.98), rgba(21, 24, 23, 0.92)),
    #151817;
}

.reflexion-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.app-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.app-walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.app-proof-panel {
  max-width: 540px;
}

.panel-kicker {
  margin: 0 0 16px;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-proof-panel h3 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: 3.5rem;
  line-height: 0.98;
}

.app-proof-panel p:not(.panel-kicker) {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.app-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 520px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.app-proof-stats span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.app-proof-stats strong {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
}

.os-route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin-top: 28px;
}

.os-route-list span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 850;
}

.phone-demo {
  justify-self: center;
  width: min(390px, 100%);
  background: #101414;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.phone-frame {
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    #070908;
}

.phone-frame video {
  width: 100%;
  aspect-ratio: 6 / 13;
  object-fit: cover;
  object-position: top center;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.play-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
  gap: 34px;
  align-items: center;
}

.play-copy {
  position: sticky;
  top: 104px;
}

.play-copy p:not(.eyebrow) {
  margin: 20px 0 0;
}

.caption-note {
  font-size: 0.9rem;
  font-weight: 800;
}

.play-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.play-proof-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #033f2e;
  background: var(--green-soft);
  border: 1px solid #cce6d8;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 850;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.video-feature {
  max-width: 310px;
  justify-self: end;
  width: 100%;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 19.2;
  object-fit: cover;
  object-position: top center;
  background: #111;
}

.omen-section {
  padding-top: 36px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.product-grid figure {
  overflow: visible;
  justify-self: center;
  width: min(100%, 360px);
  background: transparent;
  border: 0;
}

.product-grid img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: var(--radius);
}

.product-grid figcaption {
  padding: 10px 0 0;
}

.athletics-section {
  background: var(--white);
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.route-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #033f2e;
  background: var(--green-soft);
  border: 1px solid #cce6d8;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 850;
}

.apparel-media {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 16px;
  align-items: end;
}

.apparel-media img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #141615;
}

.proof-section {
  width: 100%;
  padding: 104px 0;
  background: var(--paper);
}

.proof-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.proof-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: stretch;
}

.proof-feature-image {
  align-self: center;
  min-height: 320px;
  max-height: 420px;
}

.proof-feature-image img {
  aspect-ratio: 4 / 3;
}

.proof-copy {
  align-self: center;
}

.proof-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.company-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.company-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #033f2e;
  background: var(--green-soft);
  border: 1px solid #cce6d8;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 850;
}

.proof-points {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.proof-points div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.proof-points div:last-child {
  border-bottom: 1px solid var(--line);
}

.proof-points dt {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-points dd {
  margin: 0;
  color: var(--muted);
}

.proof-filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 18px auto 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.leader-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.leader-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  object-position: center top;
  background: #f0f1ee;
}

.leader-card div {
  padding: 16px;
}

.leader-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.1;
}

.leader-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-filmstrip img {
  aspect-ratio: 16 / 10;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 560px) minmax(0, 500px) minmax(24px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 10, 10, 0.98), rgba(8, 10, 10, 0.9)),
    url("assets/event-pair.jpg") center / cover;
}

.contact-copy {
  grid-column: 2;
}

.contact-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-routes {
  grid-column: 3;
  display: grid;
  gap: 10px;
}

.contact-routes article {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.contact-routes span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-routes p {
  margin-bottom: 0;
  color: var(--muted);
}

.partner-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.partner-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 6px;
  margin-top: 6px;
}

.contact-actions .button {
  width: max-content;
}

.contact-direct {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-note {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.social-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 850;
}

.chamber-websticker {
  display: block;
}

.chamber-label {
  color: var(--ink);
  font-weight: 900;
}

.chamber-websticker a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.chamber-websticker img {
  width: 120px;
  height: 30px;
  object-fit: contain;
}

.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 138px 0 78px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: 4.2rem;
}

.legal-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-panel {
  display: grid;
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-panel section {
  display: grid;
  gap: 10px;
}

.legal-panel h2 {
  font-size: 1.5rem;
  line-height: 1.1;
}

.legal-panel p,
.legal-panel li {
  margin: 0;
  color: var(--muted);
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-panel a {
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 104px 24px 42px;
    background:
      linear-gradient(180deg, rgba(8, 10, 10, 0.96), rgba(8, 10, 10, 0.72) 45%, rgba(8, 10, 10, 0.22)),
      url("assets/fixed-hero.jpg") right bottom / 660px auto no-repeat,
      #101414;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    max-width: 10.5ch;
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero-text {
    max-width: 640px;
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .proof-line {
    max-width: 640px;
    margin-top: 20px;
    font-size: 0.86rem;
  }

  .signal-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
  }

  .answer-band {
    margin-top: 0;
  }

  .answer-band,
  .layer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-editorial,
  .proof-filmstrip {
    grid-template-columns: 1fr;
  }

  .proof-feature-image {
    min-height: 340px;
  }

  .feature-band,
  .contact-section {
    grid-template-columns: minmax(24px, 1fr) minmax(0, var(--max)) minmax(24px, 1fr);
    gap: 26px;
  }

  .feature-copy,
  .motus-visuals,
  .apparel-media,
  .contact-copy,
  .contact-routes {
    grid-column: 2;
  }

  .motus-visuals {
    grid-template-columns: 1fr 1fr;
  }

  .motus-visual,
  .motus-visual-large {
    min-height: 320px;
  }

  .app-walkthrough {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .app-proof-panel h3 {
    max-width: 13ch;
    font-size: 3rem;
  }

  .play-section {
    grid-template-columns: 1fr;
  }

  .play-copy {
    position: static;
  }
}

@media (max-width: 660px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    width: min(calc(100% - 20px), 370px);
    max-width: calc(100vw - 20px);
    margin-top: 10px;
    margin-left: 10px;
    margin-right: auto;
    padding: 10px;
  }

  .brand-name {
    display: inline;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-action {
    min-height: 34px;
    width: 132px;
    padding: 0 12px;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: auto;
    padding: 92px 18px 34px;
    background:
      radial-gradient(circle at 100% 64%, rgba(34, 55, 43, 0.34), rgba(8, 10, 10, 0) 34%),
      linear-gradient(180deg, rgba(8, 10, 10, 0.98), rgba(8, 10, 10, 0.92) 58%, rgba(8, 10, 10, 0.84)),
      #101414;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.02rem;
  }

  .hero-copy,
  .hero-actions,
  .proof-line {
    max-width: min(354px, 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .mobile-hero-visual {
    display: block;
    width: min(100%, 354px);
    aspect-ratio: 1.46 / 1;
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(90deg, rgba(8, 10, 10, 0.46), rgba(8, 10, 10, 0.04) 58%, rgba(8, 10, 10, 0)),
      url("assets/fixed-hero.jpg") 64% center / 610px auto no-repeat,
      #111514;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.04),
      0 24px 70px rgba(0, 0, 0, 0.36);
  }

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

  .proof-line {
    margin-top: 20px;
    font-size: 0.86rem;
  }

  .signal-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 354px);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .signal-strip span {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(48, 52, 50, 0.94);
    font-size: 0.76rem;
  }

  .signal-strip span:last-child {
    flex-basis: 100%;
  }

  .answer-band,
  .launch-note,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), 366px, var(--max));
    margin-left: 14px;
    margin-right: auto;
  }

  .answer-band {
    margin-top: 0;
  }

  .section {
    padding: 68px 0;
  }

  .answer-band,
  .layer-grid,
  .video-grid,
  .product-grid,
  .leadership-grid,
  .proof-filmstrip,
  .motus-visuals,
  .apparel-media,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .answer-band article {
    min-height: 150px;
  }

  .answer-band span {
    margin-bottom: 28px;
  }

  .layer-card {
    min-height: 210px;
  }

  .card-index {
    margin-bottom: 44px;
  }

  .feature-band,
  .contact-section {
    grid-template-columns: 14px minmax(0, 1fr) 14px;
    padding: 74px 0;
  }

  .proof-section {
    padding: 74px 0;
  }

  .motus-visual,
  .motus-visual-large {
    min-height: 280px;
  }

  .product-grid figure {
    width: min(100%, 320px);
  }

  .leader-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .leader-card img {
    min-height: 136px;
  }

  .app-walkthrough,
  .os-route-list {
    grid-template-columns: 1fr;
  }

  .reflexion-section {
    padding: 74px 0;
  }

  .reflexion-inner {
    width: min(calc(100% - 28px), 366px, var(--max));
    margin-left: 14px;
    margin-right: auto;
  }

  .app-proof-panel h3 {
    max-width: 12ch;
    font-size: 2.35rem;
  }

  .app-proof-stats {
    grid-template-columns: 1fr;
  }

  .proof-inner {
    width: min(calc(100% - 28px), 366px, var(--max));
    margin-left: 14px;
    margin-right: auto;
  }

  .proof-feature-image {
    min-height: 300px;
  }

  .video-feature {
    justify-self: start;
    max-width: 290px;
  }

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

  .legal-main {
    width: min(calc(100% - 28px), 366px, var(--max));
    margin-left: 14px;
    margin-right: auto;
    padding: 104px 0 58px;
  }

  .legal-hero h1 {
    font-size: 2.65rem;
  }

  .legal-panel {
    padding: 20px;
  }
}

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