@font-face {
  font-family: "April Inter";
  src: url("/assets/fonts/Inter-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Anta";
  src: url("/assets/fonts/Anta-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "April Bebas";
  src: url("/assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "April Orbitron";
  src: url("/assets/fonts/Orbitron-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --m-ink: #090a09;
  --m-ink-soft: #171815;
  --m-paper: #e9e2cc;
  --m-paper-bright: #f7f2e5;
  --m-muted: #6e6b62;
  --m-line: rgba(9, 10, 9, 0.14);
  --m-line-dark: rgba(247, 242, 229, 0.17);
  --m-orange: #ef401b;
  --m-blue: #315eff;
  --m-green: #b9d978;
  --m-yellow: #ffd021;
  --m-white: #fffdf5;
  --m-safe-bottom: max(14px, env(safe-area-inset-bottom));
  --m-header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--m-header-height) + 18px);
  background: #050605;
}

body {
  min-width: 320px;
  max-width: 820px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  color: var(--m-ink);
  background: var(--m-paper-bright);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.38);
  font-family: "Anta", "April Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 430;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--m-white);
  background: var(--m-orange);
}

:focus-visible {
  outline: 3px solid var(--m-blue);
  outline-offset: 4px;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 180ms;
  animation-timing-function: ease-out;
}

.m-skip {
  position: fixed;
  z-index: 1200;
  top: 8px;
  left: 8px;
  padding: 10px 13px;
  color: var(--m-white);
  background: var(--m-blue);
  font-family: "April Orbitron", sans-serif;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.m-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 50%;
  width: min(100%, 820px);
  height: 2px;
  pointer-events: none;
  transform: translateX(-50%);
}

.m-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--m-orange);
}

.m-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  display: grid;
  min-height: var(--m-header-height);
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 16px;
  border-bottom: 1px solid var(--m-line-dark);
  color: var(--m-white);
  background: rgba(9, 10, 9, 0.94);
  backdrop-filter: blur(18px);
  view-transition-name: april-mobile-header;
}

.m-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
}

.m-brand img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  filter: invert(1) brightness(2);
}

.m-brand span {
  font-family: "April Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.14em;
}

.m-header-cta {
  display: grid;
  min-height: 39px;
  place-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--m-ink);
  background: var(--m-paper-bright);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.m-menu-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 253, 245, 0.18);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.m-menu-button span {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.m-menu-button span:first-child {
  top: 16px;
}

.m-menu-button span:last-child {
  top: 24px;
}

.m-menu-button[aria-expanded="true"] span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.m-menu-button[aria-expanded="true"] span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.m-menu {
  position: absolute;
  z-index: -1;
  top: calc(100% + 8px);
  right: 10px;
  left: 10px;
  overflow: hidden;
  padding: 9px;
  border: 1px solid var(--m-line-dark);
  border-radius: 22px;
  color: var(--m-white);
  background: rgba(16, 17, 15, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transform-origin: 50% 0;
  transition: opacity 170ms ease, transform 170ms ease;
}

.m-menu[hidden] {
  display: none;
}

.m-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.m-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--m-line-dark);
  border-left: 1px solid var(--m-line-dark);
}

.m-menu nav a {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border-right: 1px solid var(--m-line-dark);
  border-bottom: 1px solid var(--m-line-dark);
}

.m-menu nav small {
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 750;
}

.m-menu nav span {
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -0.03em;
}

.m-menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 6px 7px;
  color: rgba(255, 253, 245, 0.48);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.m-kicker,
.m-section-index,
.m-card-copy > span,
.f-kicker,
.f-section-index,
.f-detail-card > span,
.f-point > span {
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.m-hero {
  position: relative;
  min-height: calc(100svh - var(--m-header-height));
  overflow: hidden;
  padding: 62px 20px 0;
  color: var(--m-white);
  background:
    radial-gradient(circle at 85% 23%, rgba(239, 64, 27, 0.18), transparent 28%),
    linear-gradient(rgba(255, 253, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 245, 0.035) 1px, transparent 1px),
    var(--m-ink);
  background-size: auto, 52px 52px, 52px 52px, auto;
}

.m-hero-orbit {
  position: absolute;
  top: 8%;
  right: -46%;
  width: 126vw;
  max-width: 860px;
  aspect-ratio: 1;
  border: 1px solid rgba(239, 64, 27, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.m-hero-orbit::after {
  position: absolute;
  top: 23%;
  left: 5%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-orange);
  box-shadow: 0 0 25px 7px rgba(239, 64, 27, 0.25);
  content: "";
}

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

.m-hero h1 {
  display: flex;
  flex-direction: column;
  margin-top: 27px;
  font-family: "April Bebas", sans-serif;
  font-size: clamp(78px, 25vw, 142px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.7;
}

.m-hero h1 .m-title-crossout {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 253, 245, 0.34);
}

.m-hero h1 .m-title-crossout::after {
  position: absolute;
  top: 47%;
  right: -5px;
  left: -5px;
  height: clamp(5px, 1.6vw, 10px);
  border-radius: 999px;
  background: var(--m-orange);
  content: "";
  transform: rotate(-3deg) scaleX(0);
  transform-origin: 0 50%;
  animation: m-strike 520ms 440ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.m-hero h1 .m-title-ahead {
  color: var(--m-orange);
}

@keyframes m-strike {
  to { transform: rotate(-3deg) scaleX(1); }
}

.m-hero-intro {
  max-width: 430px;
  margin-top: 34px;
  color: rgba(255, 253, 245, 0.67);
  font-size: 15px;
  line-height: 1.58;
}

.m-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 27px;
}

.m-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "April Orbitron", sans-serif;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.m-button span {
  font-size: 15px;
}

.m-button-light {
  color: var(--m-ink);
  background: var(--m-paper-bright);
}

.m-button-dark {
  color: var(--m-white);
  background: var(--m-ink);
}

.m-text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 253, 245, 0.35);
  color: rgba(255, 253, 245, 0.68);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.m-text-link span {
  margin-left: 14px;
  color: var(--m-orange);
}

.m-hero-device {
  position: relative;
  z-index: 2;
  width: min(78vw, 440px);
  margin: 64px auto -185px;
}

.m-device {
  position: relative;
  overflow: hidden;
  border: 8px solid #1b1c19;
  border-radius: 48px;
  background: var(--m-paper);
  box-shadow:
    0 0 0 2px #46463f,
    0 26px 65px rgba(0, 0, 0, 0.5);
}

.m-device::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 39px;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.m-device-island {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 31%;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.m-device img {
  width: 100%;
  height: auto;
}

.m-device-hero {
  max-height: 690px;
}

.m-live-note {
  position: absolute;
  right: -3px;
  bottom: 210px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 253, 245, 0.22);
  border-radius: 999px;
  color: rgba(255, 253, 245, 0.72);
  background: rgba(9, 10, 9, 0.88);
  backdrop-filter: blur(10px);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.m-live-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--m-green);
}

.m-intro {
  position: relative;
  z-index: 4;
  padding: 250px 20px 74px;
  background: var(--m-paper-bright);
}

.m-intro h2,
.m-watch-copy h2,
.m-download h2,
.f-section h2,
.f-next h2 {
  margin-top: 20px;
  font-family: "April Bebas", sans-serif;
  font-size: clamp(56px, 17vw, 100px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.82;
}

.m-intro > p:last-child {
  max-width: 430px;
  margin-top: 24px;
  color: var(--m-muted);
  font-size: 15px;
}

.m-feature-list {
  display: grid;
  gap: 12px;
  padding: 0 12px 84px;
}

.m-feature-card {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--m-line);
  border-radius: 30px;
  background: var(--m-paper);
}

.m-card-copy {
  position: relative;
  z-index: 2;
  padding: 27px 24px 20px;
}

.m-card-copy h3 {
  max-width: 560px;
  margin-top: 18px;
  font-family: "April Bebas", sans-serif;
  font-size: clamp(51px, 15vw, 84px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.82;
}

.m-card-copy p {
  max-width: 430px;
  margin-top: 19px;
  color: var(--m-muted);
  font-size: 13px;
  line-height: 1.65;
}

.m-card-copy b {
  display: inline-block;
  margin-top: 23px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 730;
  letter-spacing: 0.04em;
}

.m-card-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-top: 1px solid var(--m-line);
  background: rgba(255, 253, 245, 0.42);
}

.m-card-media img {
  position: absolute;
  top: 26px;
  left: 50%;
  width: min(72%, 390px);
  border: 6px solid #22231f;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 20px 45px rgba(9, 10, 9, 0.25);
  transform: translateX(-50%);
}

.m-feature-eat {
  background: #eee6ce;
}

.m-feature-train {
  color: var(--m-white);
  background: var(--m-ink);
}

.m-feature-train .m-card-copy p {
  color: rgba(255, 253, 245, 0.57);
}

.m-feature-train .m-card-media {
  border-color: var(--m-line-dark);
  background: radial-gradient(circle at 50% 25%, rgba(239, 64, 27, 0.22), transparent 48%);
}

.m-feature-ask {
  background: #dfe6ff;
}

.m-feature-track {
  background: #dceac9;
}

.m-watch-teaser {
  display: grid;
  overflow: hidden;
  padding: 78px 20px 0;
  color: var(--m-white);
  background:
    radial-gradient(circle at 50% 76%, rgba(239, 64, 27, 0.16), transparent 36%),
    var(--m-ink);
}

.m-watch-copy > p:not(.m-section-index) {
  max-width: 470px;
  margin-top: 23px;
  color: rgba(255, 253, 245, 0.59);
  font-size: 14px;
}

.m-watch-copy .m-button {
  margin-top: 28px;
  color: var(--m-ink);
  background: var(--m-paper-bright);
}

.m-watch-media {
  width: min(92%, 590px);
  margin: 55px auto -9%;
  overflow: hidden;
  border: 1px solid var(--m-line-dark);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -8px 45px rgba(239, 64, 27, 0.1);
}

.m-watch-media img {
  width: 100%;
}

.m-proof {
  padding: 84px 20px;
  background: var(--m-paper-bright);
}

.m-proof-row {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid var(--m-line);
}

.m-proof-row:first-of-type {
  margin-top: 24px;
  border-top: 1px solid var(--m-line);
}

.m-proof-row span {
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 8px;
  font-weight: 760;
}

.m-proof-row h3 {
  font-size: 21px;
  font-weight: 610;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.m-download {
  position: relative;
  overflow: hidden;
  padding: 95px 20px 105px;
  text-align: center;
  color: var(--m-white);
  background:
    radial-gradient(circle at 50% 38%, rgba(239, 64, 27, 0.2), transparent 32%),
    var(--m-ink);
}

.m-download h2 {
  margin-top: 34px;
  color: var(--m-orange);
  font-size: clamp(120px, 38vw, 220px);
  line-height: 0.65;
}

.m-download > p:not(.m-section-index) {
  max-width: 430px;
  margin: 42px auto 0;
  color: rgba(255, 253, 245, 0.57);
  font-size: 14px;
}

.m-store-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.m-store {
  display: flex;
  min-height: 64px;
  flex-direction: column;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--m-line-dark);
  border-radius: 15px;
  text-align: left;
}

.m-store small {
  color: rgba(255, 253, 245, 0.42);
  font-family: "April Orbitron", sans-serif;
  font-size: 5px;
  letter-spacing: 0.08em;
}

.m-store b {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 570;
}

.m-back-top {
  display: inline-block;
  margin-top: 42px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 253, 245, 0.3);
  color: rgba(255, 253, 245, 0.52);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 680;
}

.m-footer {
  padding: 42px 20px calc(105px + var(--m-safe-bottom));
  border-top: 1px solid var(--m-line);
  background: var(--m-paper);
}

.m-footer > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.m-footer > div img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.m-footer > div span {
  font-family: "April Orbitron", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.m-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 31px;
  padding-top: 25px;
  border-top: 1px solid var(--m-line);
  color: var(--m-muted);
  font-size: 12px;
}

.m-footer > p {
  margin-top: 34px;
  color: rgba(9, 10, 9, 0.38);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.m-bottom-nav {
  position: fixed;
  z-index: 900;
  bottom: 8px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 16px), 804px);
  min-height: 62px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  padding: 6px 5px calc(6px + env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 253, 245, 0.17);
  border-radius: 20px;
  color: rgba(255, 253, 245, 0.48);
  background: rgba(9, 10, 9, 0.93);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  view-transition-name: april-mobile-bottom-nav;
}

.m-bottom-nav a {
  display: flex;
  min-height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 14px;
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 680;
  letter-spacing: 0.03em;
}

.m-bottom-nav i {
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

[data-page="home"] .m-bottom-nav [data-bottom-link="home"],
[data-page="eat"] .m-bottom-nav [data-bottom-link="eat"],
[data-page="train"] .m-bottom-nav [data-bottom-link="train"],
[data-page="ask"] .m-bottom-nav [data-bottom-link="ask"],
[data-page="track"] .m-bottom-nav [data-bottom-link="track"] {
  color: var(--m-ink);
  background: var(--m-paper-bright);
}

[data-page="home"] .m-bottom-nav [data-bottom-link="home"] i,
[data-page="eat"] .m-bottom-nav [data-bottom-link="eat"] i,
[data-page="train"] .m-bottom-nav [data-bottom-link="train"] i,
[data-page="ask"] .m-bottom-nav [data-bottom-link="ask"] i,
[data-page="track"] .m-bottom-nav [data-bottom-link="track"] i {
  border-color: var(--m-orange);
  background: var(--m-orange);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  transform: translate3d(0, var(--m-parallax, 0), 0);
  will-change: transform;
}

/* Shared feature-page layout */

.f-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 20px 70px;
  color: var(--m-white);
  background: var(--m-ink);
}

.f-hero::before {
  position: absolute;
  top: -18vw;
  right: -38vw;
  width: 100vw;
  max-width: 760px;
  aspect-ratio: 1;
  border: 1px solid rgba(239, 64, 27, 0.28);
  border-radius: 50%;
  content: "";
}

.f-hero h1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font-family: "April Bebas", sans-serif;
  font-size: clamp(86px, 27vw, 150px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.69;
}

.f-hero h1 span:last-child {
  color: var(--m-orange);
}

.f-hero > p:not(.f-kicker) {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-top: 30px;
  color: rgba(255, 253, 245, 0.62);
  font-size: 15px;
}

.f-hero .m-button {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.f-screen-stage {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding: 54px 20px 0;
  background: var(--m-paper);
}

.f-screen-stage::before {
  position: absolute;
  top: 40px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(9, 10, 9, 0.14);
  border-radius: 50%;
  content: "";
}

.f-screen-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 9px 11px;
  border: 1px solid var(--m-line);
  border-radius: 999px;
  background: rgba(247, 242, 229, 0.76);
  backdrop-filter: blur(10px);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.f-screen-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--m-green);
}

.f-screen-stage .m-device {
  width: min(78vw, 445px);
  max-height: 735px;
  margin: 30px auto -190px;
}

.m-device-workout {
  position: relative;
}

.f-workout-overlay {
  position: absolute;
  z-index: 2;
  top: 10.273224%;
  left: 3.883495%;
  width: 92.233010%;
  height: 27.650273%;
  border: 0;
  border-radius: 5.263158% / 7.905138%;
  background: #0c0d0d;
  object-fit: cover;
}

.f-workout-name {
  position: absolute;
  z-index: 3;
  top: 40.1%;
  left: 3.5%;
  display: flex;
  width: 60%;
  height: 5.25%;
  align-items: center;
  padding-top: 1px;
  color: #050505;
  background: #dfd8c2;
  font-family: "April Bebas", sans-serif;
  font-size: clamp(19px, 5.7vw, 29px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}

.f-section {
  padding: 86px 20px;
}

.f-section-light {
  background: var(--m-paper-bright);
}

.f-section-dark {
  color: var(--m-white);
  background: var(--m-ink);
}

.f-section-dark h2 {
  color: var(--m-white);
}

.f-section > p:not(.f-section-index) {
  max-width: 480px;
  margin-top: 25px;
  color: var(--m-muted);
  font-size: 14px;
  line-height: 1.7;
}

.f-section-dark > p:not(.f-section-index) {
  color: rgba(255, 253, 245, 0.58);
}

.f-point-list {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--m-line);
}

.f-section-dark .f-point-list {
  border-color: var(--m-line-dark);
}

.f-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid var(--m-line);
}

.f-section-dark .f-point {
  border-color: var(--m-line-dark);
}

.f-point h3 {
  font-size: 20px;
  font-weight: 630;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.f-point p {
  margin-top: 8px;
  color: var(--m-muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.f-section-dark .f-point p {
  color: rgba(255, 253, 245, 0.5);
}

.f-real-media {
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--m-line);
  border-radius: 27px;
  background: var(--m-paper);
}

.f-real-media img,
.f-real-media video {
  width: 100%;
}

.f-real-media figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--m-line);
  color: var(--m-muted);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 680;
  letter-spacing: 0.07em;
}

.f-detail-grid {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.f-detail-card {
  padding: 25px;
  border: 1px solid var(--m-line);
  border-radius: 24px;
  background: var(--m-paper);
}

.f-detail-card h3 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.f-detail-card p {
  margin-top: 12px;
  color: var(--m-muted);
  font-size: 12.5px;
  line-height: 1.66;
}

.f-section-dark .f-detail-card {
  color: var(--m-white);
  border-color: var(--m-line-dark);
  background: rgba(255, 253, 245, 0.045);
}

.f-section-dark .f-detail-card p {
  color: rgba(255, 253, 245, 0.5);
}

.f-next {
  padding: 88px 20px 100px;
  color: var(--m-white);
  background: var(--m-ink);
}

.f-next h2 {
  max-width: 600px;
  color: var(--m-orange);
}

.f-next > p:not(.f-section-index) {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 253, 245, 0.56);
  font-size: 14px;
}

.f-next-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.f-next-links a {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--m-line-dark);
  border-radius: 18px;
}

.f-next-links small {
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 750;
}

.f-next-links b {
  font-size: 17px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.f-watch-gallery {
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--m-line);
  border-radius: 26px;
  background: var(--m-paper);
}

.f-watch-gallery img {
  width: 100%;
}

/* Long-form feature explainers */

.f-page-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 20px;
  border-top: 1px solid var(--m-line);
  border-bottom: 1px solid var(--m-line);
  background: var(--m-paper-bright);
  scrollbar-width: none;
}

.f-page-nav::-webkit-scrollbar {
  display: none;
}

.f-page-nav a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--m-line);
  border-radius: 999px;
  color: var(--m-ink);
  background: rgba(255, 253, 245, 0.62);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 730;
  letter-spacing: 0.055em;
}

.f-page-nav a:first-child {
  color: var(--m-white);
  border-color: var(--m-ink);
  background: var(--m-ink);
}

.f-section[id],
.f-screen-stage[id] {
  scroll-margin-top: 98px;
}

.f-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 40px;
}

.f-stat-card {
  min-height: 158px;
  padding: 20px;
  border: 1px solid var(--m-line);
  border-radius: 22px;
  background: var(--m-paper);
}

.f-stat-card strong {
  display: block;
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: clamp(23px, 7.4vw, 41px);
  font-weight: 790;
  letter-spacing: -0.065em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.f-stat-card b {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.f-stat-card p {
  margin-top: 7px;
  color: var(--m-muted);
  font-size: 11px;
  line-height: 1.55;
}

.f-section-dark .f-stat-card {
  border-color: var(--m-line-dark);
  background: rgba(255, 253, 245, 0.045);
}

.f-section-dark .f-stat-card p {
  color: rgba(255, 253, 245, 0.5);
}

.f-flow-list {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--m-line);
}

.f-flow-step {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 17px;
  padding: 24px 0;
  border-bottom: 1px solid var(--m-line);
}

.f-flow-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--m-white);
  background: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 780;
}

.f-flow-step h3 {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.f-flow-step p {
  margin-top: 8px;
  color: var(--m-muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.f-section-dark .f-flow-list,
.f-section-dark .f-flow-step {
  border-color: var(--m-line-dark);
}

.f-section-dark .f-flow-step p {
  color: rgba(255, 253, 245, 0.5);
}

.f-callout {
  margin-top: 36px;
  padding: 25px;
  border: 1px solid var(--m-line);
  border-radius: 25px;
  background: var(--m-paper);
}

.f-callout > span,
.f-faq > span {
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 770;
  letter-spacing: 0.13em;
}

.f-callout h3 {
  max-width: 520px;
  margin-top: 14px;
  font-size: clamp(25px, 7vw, 38px);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.f-callout p {
  max-width: 560px;
  margin-top: 13px;
  color: var(--m-muted);
  font-size: 12.5px;
  line-height: 1.68;
}

.f-callout-dark {
  color: var(--m-white);
  border-color: var(--m-line-dark);
  background: var(--m-ink);
}

.f-callout-dark p {
  color: rgba(255, 253, 245, 0.56);
}

.f-callout-orange {
  color: var(--m-ink);
  border-color: var(--m-orange);
  background: var(--m-orange);
}

.f-callout-orange > span,
.f-callout-orange p {
  color: var(--m-ink);
}

.f-section-dark .f-callout:not(.f-callout-orange) {
  color: var(--m-white);
  border-color: var(--m-line-dark);
  background: rgba(255, 253, 245, 0.045);
}

.f-section-dark .f-callout:not(.f-callout-orange) p {
  color: rgba(255, 253, 245, 0.52);
}

.f-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.f-chip-row span {
  padding: 9px 11px;
  border: 1px solid var(--m-line);
  border-radius: 999px;
  color: var(--m-muted);
  font-family: "April Orbitron", sans-serif;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.f-section-dark .f-chip-row span,
.f-callout-dark .f-chip-row span {
  color: rgba(255, 253, 245, 0.66);
  border-color: var(--m-line-dark);
}

.f-split-grid {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.f-split-card {
  padding: 25px;
  border: 1px solid var(--m-line);
  border-radius: 24px;
  background: var(--m-paper);
}

.f-split-card > span {
  color: var(--m-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 770;
  letter-spacing: 0.12em;
}

.f-split-card h3 {
  margin-top: 18px;
  font-size: 27px;
  font-weight: 670;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.f-split-card p,
.f-split-card li {
  color: var(--m-muted);
  font-size: 12px;
  line-height: 1.62;
}

.f-split-card p,
.f-split-card ul {
  margin-top: 13px;
}

.f-split-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.f-section-dark .f-split-card {
  color: var(--m-white);
  border-color: var(--m-line-dark);
  background: rgba(255, 253, 245, 0.045);
}

.f-section-dark .f-split-card p,
.f-section-dark .f-split-card li {
  color: rgba(255, 253, 245, 0.5);
}

.f-faq {
  margin-top: 42px;
}

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

.f-faq details:first-of-type {
  margin-top: 18px;
  border-top: 1px solid var(--m-line);
}

.f-faq summary {
  position: relative;
  padding: 20px 38px 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

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

.f-faq summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--m-orange);
  content: "+";
  font-family: "April Orbitron", sans-serif;
}

.f-faq details[open] summary::after {
  content: "−";
}

.f-faq details p {
  max-width: 560px;
  padding: 0 28px 20px 0;
  color: var(--m-muted);
  font-size: 12.5px;
  line-height: 1.7;
}

.f-section-dark .f-faq details,
.f-section-dark .f-faq details:first-of-type {
  border-color: var(--m-line-dark);
}

.f-section-dark .f-faq details p {
  color: rgba(255, 253, 245, 0.52);
}

.f-source-note {
  margin-top: 16px;
  color: var(--m-muted);
  font-size: 10px;
  line-height: 1.55;
}

.f-inline-link {
  color: inherit;
  border-bottom: 1px solid currentColor;
}

@media (min-width: 620px) {
  .m-hero,
  .f-hero {
    padding-right: 42px;
    padding-left: 42px;
  }

  .m-intro,
  .m-proof,
  .m-download,
  .m-watch-teaser,
  .f-section,
  .f-next,
  .f-screen-stage {
    padding-right: 42px;
    padding-left: 42px;
  }

  .m-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 18px;
    padding-left: 18px;
  }

  .m-feature-card {
    min-height: 650px;
  }

  .m-card-copy h3 {
    font-size: 64px;
  }

  .m-watch-teaser {
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 28px;
    padding-bottom: 70px;
  }

  .m-watch-media {
    margin: 0;
  }

  .f-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .f-page-nav {
    padding-right: 42px;
    padding-left: 42px;
  }

  .f-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .f-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 374px) {
  .m-header-cta {
    display: none;
  }

  .m-header {
    grid-template-columns: 1fr auto;
  }

  .m-hero h1 {
    font-size: 22.8vw;
  }

  .m-card-copy h3 {
    font-size: 14vw;
  }

  .m-store-row,
  .f-next-links {
    grid-template-columns: 1fr;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none;
  }
}

@media print {
  .m-header,
  .m-bottom-nav,
  .m-progress,
  .m-menu,
  .m-hero-actions,
  .m-back-top {
    display: none !important;
  }

  body {
    max-width: none;
    color: #000;
    background: #fff;
    box-shadow: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Refined mobile brand scale, physical watch presentation, and provider marquee */

.april-watch {
  position: relative;
  width: min(80vw, 420px);
  aspect-ratio: 1;
  isolation: isolate;
}

.april-watch-strap {
  position: absolute;
  z-index: -2;
  left: 50%;
  width: 43%;
  height: 39%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 16% 84%, rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #151515, #292a28 48%, #111);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.72),
    inset 10px 0 22px rgba(255, 255, 255, 0.035),
    0 22px 34px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.april-watch-strap-top {
  top: -28%;
  border-radius: 42px 42px 17px 17px;
}

.april-watch-strap-bottom {
  bottom: -28%;
  border-radius: 17px 17px 42px 42px;
}

.april-watch-case {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 4.2%;
  border: 1px solid #62635f;
  border-radius: 50%;
  isolation: isolate;
  background:
    conic-gradient(from 225deg, #111 0 12%, #73746f 20%, #20211f 35%, #858681 49%, #171816 64%, #5d5e59 78%, #10110f 100%);
  box-shadow:
    inset 0 0 0 2px #080908,
    inset 0 0 0 5px rgba(255, 255, 255, 0.09),
    0 30px 60px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(237, 58, 13, 0.08);
}

.april-watch-case::before,
.april-watch-case::after {
  content: none;
}

.april-watch-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #030403;
  border-radius: 50%;
  background: #000;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.04),
    inset 0 0 30px rgba(0, 0, 0, 0.72);
}

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

.april-watch-crown {
  position: absolute;
  z-index: 4;
  top: 45.5%;
  right: -4.4%;
  width: 9.2%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #6f706b;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 4deg, #5f605c 0 3deg, #242522 3deg 7deg),
    #30312e;
  box-shadow:
    inset 0 0 0 3px #252623,
    inset 0 0 0 4px rgba(255, 255, 255, 0.14),
    3px 4px 10px rgba(0, 0, 0, 0.38);
}

.april-watch-crown::after {
  position: absolute;
  inset: 29%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #171815;
  content: "";
}

.home-watch-device {
  margin: 108px auto 118px;
}

.f-watch-device {
  margin: 112px auto 125px;
}

.watch-flow {
  display: flex;
  gap: 15px;
  margin: 44px -20px 0;
  padding: 0 20px 20px;
  overflow-x: auto;
  scroll-padding-inline: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.watch-flow::-webkit-scrollbar {
  display: none;
}

.watch-flow-card {
  flex: 0 0 min(78vw, 340px);
  padding: 26px 18px 24px;
  border: 1px solid rgba(238, 232, 214, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 37%, rgba(237, 58, 13, 0.1), transparent 42%),
    #11120f;
  scroll-snap-align: center;
}

.watch-flow-device {
  position: relative;
  width: min(50vw, 205px);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  padding: 5.2%;
  border: 1px solid #62635d;
  border-radius: 50%;
  isolation: isolate;
  background: conic-gradient(from 210deg, #10110f, #6b6c67, #171816, #777872, #11120f);
  box-shadow:
    inset 0 0 0 3px #0a0b0a,
    0 20px 32px rgba(0, 0, 0, 0.35);
}

.watch-flow-crown {
  position: absolute;
  z-index: 0;
  top: 45.5%;
  right: -3.8%;
  width: 9.5%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #5f605c;
  border-radius: 50%;
  background: repeating-conic-gradient(#585954 0 4deg, #252623 4deg 8deg);
  box-shadow: inset 0 0 0 3px #20211e, 3px 3px 8px rgba(0, 0, 0, 0.32);
}

.watch-flow-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 2px solid #020302;
  border-radius: 50%;
  background-color: #000;
  background-image: url("/assets/mobile/watch-gallery.png");
  background-repeat: no-repeat;
  background-size: 315% auto;
  box-shadow: inset 0 0 25px #000;
}

.watch-flow-active { background-position: 1% 45.4%; }
.watch-flow-rest { background-position: 50% 45.4%; }
.watch-flow-complete { background-position: 50% 91.9%; }

.watch-flow-card > span {
  color: var(--m-desktop-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.watch-flow-card h3 {
  margin-top: 11px;
  color: var(--m-desktop-cream);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.watch-flow-card p {
  margin-top: 8px;
  color: rgba(238, 232, 214, 0.54);
  font-size: 12px;
  line-height: 1.58;
}

.home-technology {
  position: relative;
  overflow: hidden;
  padding: 96px 0 78px;
  color: var(--m-desktop-cream);
  background:
    radial-gradient(circle at 80% 18%, rgba(237, 58, 13, 0.13), transparent 27%),
    var(--m-desktop-night);
}

.home-technology > .home-index,
.home-technology > h2,
.tech-disclaimer {
  margin-right: 20px;
  margin-left: 20px;
}

.home-technology > h2 {
  max-width: 720px;
  margin-top: 22px;
  font-family: "April Orbitron", sans-serif;
  font-size: clamp(42px, 11.4vw, 72px);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.87;
  text-transform: uppercase;
}

.tech-marquee {
  margin-top: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.tech-marquee::-webkit-scrollbar {
  display: none;
}

.tech-marquee.is-dragging {
  cursor: grabbing;
}

.tech-marquee:focus-visible {
  outline: 1px solid rgba(238, 232, 214, 0.5);
  outline-offset: 5px;
}

.tech-track {
  display: flex;
  width: max-content;
}

.tech-group {
  display: flex;
  gap: 11px;
  padding-right: 11px;
}

.tech-logo {
  display: flex;
  min-width: 164px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
  border: 1px solid rgba(238, 232, 214, 0.3);
  border-radius: 18px;
  color: var(--m-desktop-night);
  background: var(--m-desktop-cream);
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tech-logo:hover,
.tech-logo:focus-visible {
  border-color: rgba(238, 232, 214, 0.42);
  color: var(--m-desktop-night);
  background: #fffaf0;
  outline: none;
  transform: translateY(-2px);
}

.tech-logo img {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.tech-logo span {
  font-family: "Anta", "April Inter", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.tech-logo small {
  align-self: center;
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  letter-spacing: 0.12em;
}

.tech-openai span { letter-spacing: -0.055em; }
.tech-alibaba span { color: #ff6a00; }
.tech-minimax span { font-size: 26px; letter-spacing: -0.075em; }
.tech-deepseek span { color: #5f82ff; font-size: 23px; text-transform: lowercase; }
.tech-zhipu span { font-family: "April Orbitron", sans-serif; font-size: 18px; letter-spacing: 0.02em; }

.tech-z-word {
  color: #6146b8;
  font-family: "April Orbitron", sans-serif;
  font-size: 18px;
  letter-spacing: -0.08em;
}

.tech-logo:hover span,
.tech-logo:focus-visible span {
  color: inherit;
}

.tech-disclaimer {
  max-width: 590px;
  margin-top: 30px;
  color: rgba(238, 232, 214, 0.42);
  font-size: 10px;
  line-height: 1.55;
}

.tech-back-top {
  margin-left: 20px;
}

.tech-marquee-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 27px 20px 0;
  color: rgba(238, 232, 214, 0.46);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tech-motion-toggle {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(238, 232, 214, 0.22);
  border-radius: 999px;
  color: var(--m-desktop-cream);
  background: rgba(238, 232, 214, 0.05);
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.tech-motion-toggle:focus-visible {
  border-color: var(--m-desktop-orange);
  outline: none;
}

.tech-control-icon {
  min-width: 10px;
  color: var(--m-desktop-orange);
  font-size: 9px;
  letter-spacing: -0.18em;
  text-align: center;
}

@media (min-width: 620px) {
  .home-technology > .home-index,
  .home-technology > h2,
  .tech-disclaimer {
    margin-right: 42px;
    margin-left: 42px;
  }

  .tech-marquee-controls {
    margin-right: 42px;
    margin-left: 42px;
  }

  .tech-back-top {
    margin-left: 42px;
  }

  .watch-flow {
    margin-right: -42px;
    margin-left: -42px;
    padding-right: 42px;
    padding-left: 42px;
    scroll-padding-inline: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Mobile landing page, built from the desktop April system */

:root {
  --m-brand-morph: 0;
  --m-desktop-paper: #d8d0bb;
  --m-desktop-paper-2: #e5decb;
  --m-desktop-ink: #0a0a08;
  --m-desktop-night: #070706;
  --m-desktop-cream: #eee8d6;
  --m-desktop-orange: #ed3a0d;
  --m-desktop-ease: cubic-bezier(0.2, 0.75, 0.18, 1);
}

.m-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  display: flex;
  width: 100%;
  max-width: 820px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 0;
  color: var(--m-desktop-ink);
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
  transform: translateX(-50%);
  transition: color 420ms var(--m-desktop-ease);
}

.m-header::before {
  position: absolute;
  z-index: -1;
  inset: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(216, 208, 187, 0);
  content: "";
  transition:
    border-color 420ms var(--m-desktop-ease),
    background-color 420ms var(--m-desktop-ease),
    backdrop-filter 420ms var(--m-desktop-ease);
}

.m-header.is-scrolled::before {
  border-color: rgba(10, 10, 8, 0.11);
  background: rgba(216, 208, 187, 0.78);
  backdrop-filter: blur(18px);
}

.m-header.is-dark {
  color: var(--m-desktop-cream);
}

.m-header.is-dark.is-scrolled::before {
  border-color: rgba(238, 232, 214, 0.13);
  background: rgba(8, 8, 7, 0.75);
}

.m-header > * {
  pointer-events: auto;
}

.m-brand {
  position: relative;
  display: block;
  width: 145px;
  height: 36px;
}

.m-brand-glyphs {
  position: absolute;
  inset: 0;
  display: block;
}

.m-glyph,
.m-brand .m-glyph {
  position: absolute;
  top: 50%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transform-origin: 50% 50%;
  transition: filter 400ms var(--m-desktop-ease);
  will-change: opacity, transform, filter;
}

.m-glyph-a,
.m-brand .m-glyph-a {
  left: 0;
  width: 31px;
  transform: translateY(-50%);
}

.m-glyph-p,
.m-brand .m-glyph-p {
  left: 36px;
  width: 27px;
  opacity: calc(1 - var(--m-brand-morph));
  transform: translateY(-50%);
}

.m-glyph-r,
.m-brand .m-glyph-r {
  left: 67px;
  width: 28px;
  opacity: calc(1 - var(--m-brand-morph));
  transform: translateY(-50%);
}

.m-glyph-i,
.m-brand .m-glyph-i {
  left: 101px;
  width: 17px;
  transform: translate(calc(var(--m-brand-morph) * -65px), -50%);
}

.m-glyph-l,
.m-brand .m-glyph-l {
  left: 122px;
  width: 22px;
  opacity: calc(1 - var(--m-brand-morph));
  transform: translateY(-50%);
}

.m-glyph-p,
.m-glyph-r,
.m-glyph-l {
  translate: 0 calc(var(--m-brand-morph) * -7px);
  scale: calc(1 - var(--m-brand-morph) * 0.14);
}

.m-header.is-dark .m-glyph {
  filter: invert(1) sepia(0.12) saturate(0.55) brightness(1.45);
}

.m-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.m-header-link {
  position: relative;
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.72;
}

.m-header-cta {
  min-height: 42px;
  padding: 0 16px;
  color: var(--m-desktop-cream);
  background: var(--m-desktop-ink);
}

.m-header.is-dark .m-header-cta {
  color: var(--m-desktop-ink);
  background: var(--m-desktop-cream);
}

.m-menu-button,
.m-menu,
.m-bottom-nav {
  display: none !important;
}

.home-hero {
  position: relative;
  min-height: max(100svh, 760px);
  overflow: hidden;
  padding: 122px 18px 0;
  color: var(--m-desktop-ink);
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.36), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(119, 101, 72, 0.14), transparent 33%),
    linear-gradient(90deg, transparent 49.9%, rgba(10, 10, 8, 0.05) 50%, transparent 50.1%),
    var(--m-desktop-paper);
  isolation: isolate;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, rgba(10, 10, 8, 0.5) 0 0.6px, transparent 0.8px);
  background-size: 9px 9px;
  content: "";
  pointer-events: none;
}

.home-orbit {
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 10, 8, 0.1);
  border-radius: 50%;
  animation: home-orbit-drift 14s ease-in-out infinite alternate;
}

.home-orbit-one {
  top: -21vw;
  right: -48vw;
  width: 108vw;
}

.home-orbit-two {
  bottom: 4%;
  left: -52vw;
  width: 90vw;
  animation-delay: -4s;
}

@keyframes home-orbit-drift {
  to { transform: translate3d(20px, 14px, 0) scale(1.025); }
}

.home-hero-inner {
  position: relative;
  z-index: 3;
}

.home-eyebrow,
.home-index {
  color: var(--m-desktop-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.home-title {
  display: flex;
  flex-direction: column;
  margin-top: 31px;
  font-family: "April Orbitron", sans-serif;
  font-size: clamp(50px, 15.9vw, 88px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
  transform-origin: 0 50%;
  will-change: transform, opacity;
}

.home-title-line {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
}

.home-line-old {
  margin-top: 0.08em;
  margin-left: 5vw;
}

.home-old-phrase {
  position: relative;
  display: block;
  white-space: nowrap;
}

.home-strike {
  position: absolute;
  inset: 44% -2.5% auto -2.5%;
  height: 0.16em;
  transform: rotate(-2.2deg);
}

.home-strike i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 38%;
  border-radius: 999px;
  background: var(--m-desktop-orange);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 680ms cubic-bezier(0.72, 0, 0.2, 1);
}

.home-strike i:nth-child(2) {
  top: 55%;
  left: 1%;
  width: 98%;
  transform-origin: 100% 50%;
}

body.is-ready .home-strike i:first-child {
  transform: scaleX(1);
  transition-delay: 1.05s;
}

body.is-ready .home-strike i:nth-child(2) {
  transform: scaleX(1);
  transition-delay: 1.22s;
}

.home-line-new {
  margin-top: 0.12em;
  margin-left: 11vw;
  color: var(--m-desktop-orange);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateY(0.22em);
  transition:
    clip-path 900ms var(--m-desktop-ease),
    transform 900ms var(--m-desktop-ease),
    opacity 300ms ease;
}

body.is-ready .home-line-new {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  transition-delay: 1.48s;
}

.home-reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 850ms var(--m-desktop-ease),
    transform 850ms var(--m-desktop-ease);
}

body.is-ready .home-reveal-up {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .home-eyebrow { transition-delay: 150ms; }
body.is-ready .home-line-one { transition-delay: 280ms; }
body.is-ready .home-line-old { transition-delay: 430ms; }
body.is-ready .home-hero-foot { transition-delay: 1.8s; }

.home-hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-top: 39px;
  padding-top: 19px;
  border-top: 1px solid rgba(10, 10, 8, 0.16);
}

.home-hero-foot p {
  max-width: 245px;
  font-size: 13px;
  line-height: 1.48;
}

.home-hero-foot a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 720;
  letter-spacing: 0.06em;
}

.home-hero-foot a span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.home-hero-showcase {
  position: relative;
  z-index: 2;
  height: 478px;
  margin-top: 52px;
}

.home-phone,
.home-clean-phone {
  position: relative;
  overflow: hidden;
  border: 7px solid #1a1b18;
  border-radius: 38px;
  background: var(--m-desktop-paper-2);
  box-shadow:
    0 0 0 1px #4a4942,
    0 25px 55px rgba(10, 10, 8, 0.28);
}

.home-phone img,
.home-clean-phone img {
  width: 100%;
}

.home-phone {
  position: absolute;
  width: min(61vw, 315px);
}

.home-phone-back {
  top: 50px;
  left: -8%;
  opacity: 0.55;
  transform: rotate(-8deg) translate3d(0, var(--m-parallax, 0), 0);
}

.home-phone-front {
  top: 0;
  right: 5%;
  transform: rotate(3deg) translate3d(0, var(--m-parallax, 0), 0);
}

.home-real-label {
  position: absolute;
  right: 1%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(238, 232, 214, 0.2);
  border-radius: 999px;
  color: rgba(238, 232, 214, 0.75);
  background: rgba(10, 10, 8, 0.88);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.home-real-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9d978;
}

.home-signal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 13px;
  padding: 25px 18px;
  color: rgba(238, 232, 214, 0.62);
  background: var(--m-desktop-night);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 720;
  letter-spacing: 0.09em;
}

.home-signal i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--m-desktop-orange);
}

.home-overview,
.home-principles {
  padding: 94px 20px;
  background: var(--m-desktop-paper-2);
}

.home-section-copy h2,
.home-feature-copy h2,
.home-principles h2 {
  margin-top: 22px;
  font-family: "April Orbitron", sans-serif;
  font-size: clamp(47px, 13vw, 78px);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.home-section-copy > p:last-child,
.home-feature-copy > p:not(.home-index) {
  max-width: 510px;
  margin-top: 27px;
  color: rgba(10, 10, 8, 0.61);
  font-size: 14px;
  line-height: 1.72;
}

.home-context-list {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid rgba(10, 10, 8, 0.16);
}

.home-context-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 10, 8, 0.16);
}

.home-context-list span,
.home-principle-list article > span {
  grid-row: 1 / 3;
  color: var(--m-desktop-orange);
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 760;
}

.home-context-list h3 {
  font-size: 19px;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.home-context-list p {
  margin-top: 5px;
  color: rgba(10, 10, 8, 0.54);
  font-size: 12px;
  line-height: 1.58;
}

.home-feature,
.home-watch {
  position: relative;
  overflow: hidden;
  padding: 90px 20px 0;
}

.home-feature-eat {
  background: #eee8d6;
}

.home-feature-train,
.home-watch {
  color: var(--m-desktop-cream);
  background:
    radial-gradient(circle at 65% 75%, rgba(237, 58, 13, 0.16), transparent 34%),
    var(--m-desktop-night);
}

.home-feature-ai {
  background: #ded9ca;
}

.home-feature-track {
  background: #dce3cc;
}

.home-feature-train .home-feature-copy > p:not(.home-index),
.home-watch .home-feature-copy > p:not(.home-index) {
  color: rgba(238, 232, 214, 0.58);
}

.home-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 27px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: "April Orbitron", sans-serif;
  font-size: 7px;
  font-weight: 730;
  letter-spacing: 0.05em;
}

.home-feature-link span {
  color: var(--m-desktop-orange);
  font-size: 12px;
}

.home-feature-media {
  position: relative;
  min-height: 570px;
  margin-top: 46px;
}

.home-clean-phone {
  width: min(72vw, 380px);
  margin: 0 auto;
}

.home-food-media .home-clean-phone {
  margin-left: 3%;
}

.home-scan-preview {
  position: absolute;
  z-index: 3;
  top: 175px;
  right: -8%;
  width: min(46vw, 230px);
  height: 245px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 8, 0.17);
  border-radius: 23px;
  background: var(--m-desktop-paper-2);
  box-shadow: 0 22px 44px rgba(10, 10, 8, 0.2);
  transform: rotate(4deg);
}

.home-scan-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.home-training-media {
  min-height: 585px;
}

.home-workout-phone {
  width: min(76vw, 390px);
}

.home-workout-video {
  position: absolute;
  z-index: 2;
  top: 10.273224%;
  left: 3.883495%;
  width: 92.233010%;
  height: 27.650273%;
  border-radius: 5.263158% / 7.905138%;
  background: #0c0d0d;
  object-fit: cover;
}

.home-workout-name {
  position: absolute;
  z-index: 3;
  top: 40.1%;
  left: 3.5%;
  display: flex;
  width: 60%;
  height: 5.25%;
  align-items: center;
  padding-top: 1px;
  color: #050505;
  background: #dfd8c2;
  font-family: "April Bebas", sans-serif;
  font-size: clamp(19px, 5.7vw, 29px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}

.home-model-showcase {
  width: calc(100% + 40px);
  margin: 32px -20px 0;
}

.home-model-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 20px 12px;
  color: rgba(10, 10, 8, 0.48);
  font-family: "April Orbitron", sans-serif;
  font-size: 6px;
  font-weight: 740;
  letter-spacing: 0.08em;
}

.home-model-marquee:focus-visible {
  border-color: var(--m-desktop-orange);
  outline: none;
}

.home-model-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.home-model-marquee::-webkit-scrollbar {
  display: none;
}

.home-model-marquee.is-dragging {
  cursor: grabbing;
}

.home-model-track {
  display: flex;
  width: max-content;
}

.home-model-group {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.home-model-card {
  --model-accent: #e03a14;
  --model-tint: #f6d9cd;
  position: relative;
  display: flex;
  width: clamp(252px, 74vw, 314px);
  height: 142px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--model-accent) 24%, rgba(10, 10, 8, 0.1));
  border-radius: 22px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.46), transparent 45%),
    color-mix(in srgb, var(--model-tint) 72%, #ded9ca);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.45),
    0 16px 32px rgba(10, 10, 8, 0.045);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.home-model-card:hover,
.home-model-card:focus-visible {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.56),
    0 19px 38px rgba(10, 10, 8, 0.09);
  outline: none;
  transform: translateY(-2px);
}

.home-model-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background: repeating-linear-gradient(118deg, transparent 0 16px, color-mix(in srgb, var(--model-accent) 13%, transparent) 16px 17px);
  pointer-events: none;
  content: "";
}

.home-model-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--model-accent);
  font-family: "April Orbitron", sans-serif;
  font-size: 5.5px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.home-model-name {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Anta", "April Orbitron", sans-serif;
  font-size: clamp(34px, 9.6vw, 44px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.35px color-mix(in srgb, var(--model-accent) 58%, #080807);
  filter: drop-shadow(0 7px 12px color-mix(in srgb, var(--model-accent) 18%, transparent));
  white-space: nowrap;
}

.home-model-card > span {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--model-accent) 18%, transparent);
}

.home-model-card > span::after {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--model-accent);
  content: "";
}

.home-model-qwen {
  --model-accent: #ad6713;
  --model-tint: #f5e4c4;
}

.home-model-qwen .home-model-name {
  background-image:
    repeating-linear-gradient(112deg, rgba(255, 247, 213, 0.56) 0 1px, transparent 1px 6px),
    linear-gradient(96deg, #6d3905 0%, #d98b25 27%, #7f4508 53%, #edbd61 73%, #8d4d08 100%);
}

.home-model-deepseek {
  --model-accent: #e03a14;
  --model-tint: #f6d9cd;
}

.home-model-deepseek .home-model-name {
  background-image:
    repeating-linear-gradient(-18deg, rgba(255, 225, 210, 0.5) 0 2px, transparent 2px 8px),
    linear-gradient(98deg, #8e1f0c 0%, #f35a25 31%, #a8280f 55%, #ff8b57 74%, #9e260f 100%);
}

.home-model-glm {
  --model-accent: #6146b8;
  --model-tint: #e9e3f9;
}

.home-model-glm .home-model-name {
  background-image:
    repeating-linear-gradient(135deg, rgba(241, 235, 255, 0.55) 0 2px, transparent 2px 9px),
    linear-gradient(102deg, #392471 0%, #8f6ddd 29%, #4f3598 55%, #b497f2 78%, #53369c 100%);
}

.home-model-luna {
  --model-accent: #3659a8;
  --model-tint: #e1e8fa;
}

.home-model-luna .home-model-name {
  background-image:
    radial-gradient(circle, rgba(241, 245, 255, 0.92) 0 1px, transparent 1.45px),
    radial-gradient(circle, rgba(154, 181, 241, 0.82) 0 1px, transparent 1.5px),
    linear-gradient(98deg, #203e82 0%, #7090db 30%, #294a98 58%, #a8bced 77%, #2c4b94 100%);
  background-position: 1px 2px, 7px 8px, 0 0;
  background-size: 13px 13px, 17px 17px, 100% 100%;
}

.home-model-minimax {
  --model-accent: #16776b;
  --model-tint: #ddf1ec;
}

.home-model-minimax .home-model-name {
  background-image:
    repeating-linear-gradient(0deg, rgba(218, 255, 247, 0.46) 0 1px, transparent 1px 6px),
    linear-gradient(96deg, #0b4c45 0%, #2aa291 29%, #105d54 55%, #66cbbb 76%, #12675c 100%);
}

.home-model-wide .home-model-name {
  font-size: clamp(27px, 7.35vw, 35px);
}

.home-ai-media .home-clean-phone {
  margin-right: 2%;
}

.home-context-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 128px;
  padding: 11px 13px;
  border: 1px solid rgba(238, 232, 214, 0.15);
  border-radius: 14px;
  color: rgba(238, 232, 214, 0.62);
  background: rgba(10, 10, 8, 0.92);
  box-shadow: 0 18px 35px rgba(10, 10, 8, 0.22);
  font-family: "April Orbitron", sans-serif;
  font-size: 5px;
  font-weight: 720;
  letter-spacing: 0.06em;
}

.home-context-chip b {
  color: #b9d978;
  font-size: 5px;
}

.home-chip-one {
  top: 175px;
  left: -3%;
  transform: rotate(-4deg);
}

.home-chip-two {
  top: 236px;
  right: -2%;
  transform: rotate(3deg);
}

.home-progress-media .home-clean-phone {
  margin-left: 2%;
}

.home-insight-card {
  position: absolute;
  z-index: 3;
  top: 205px;
  right: -11%;
  width: min(53vw, 260px);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 8, 0.14);
  border-radius: 22px;
  background: var(--m-desktop-paper-2);
  box-shadow: 0 22px 44px rgba(10, 10, 8, 0.2);
  transform: rotate(3deg);
}

.home-insight-card img {
  width: 100%;
}

.home-watch {
  padding-bottom: 0;
}

.home-watch-media {
  width: min(112%, 660px);
  margin: 48px -6% -7%;
  overflow: hidden;
  border: 1px solid rgba(238, 232, 214, 0.13);
  border-radius: 48% 48% 0 0;
  box-shadow: 0 -12px 50px rgba(237, 58, 13, 0.12);
}

.home-watch-media img {
  width: 100%;
}

.home-principles {
  background: var(--m-desktop-paper);
}

.home-principle-list {
  display: grid;
  margin-top: 44px;
  border-top: 1px solid rgba(10, 10, 8, 0.16);
}

.home-principle-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 10, 8, 0.16);
}

.home-principle-list h3 {
  font-size: 20px;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.home-principle-list p {
  margin-top: 7px;
  color: rgba(10, 10, 8, 0.54);
  font-size: 12px;
  line-height: 1.6;
}

.home-download {
  padding-top: 92px;
  padding-bottom: 92px;
}

.home-download h2 {
  font-family: "April Orbitron", sans-serif;
  font-size: clamp(68px, 18vw, 112px);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.m-footer {
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
}

.m-footer-logo {
  --m-brand-morph: 0;
  width: 145px;
  height: 36px;
}

.m-footer nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not([data-page="home"]) .f-hero {
  padding-top: 122px;
}

body:not([data-page="home"]) .m-header {
  color: var(--m-desktop-cream);
}

body:not([data-page="home"]) .m-header .m-glyph {
  filter: invert(1) sepia(0.12) saturate(0.55) brightness(1.45);
}

body:not([data-page="home"]) .m-header-cta {
  color: var(--m-desktop-ink);
  background: var(--m-desktop-cream);
}

body:not([data-page="home"]) .m-header.is-scrolled::before {
  border-color: rgba(238, 232, 214, 0.16);
  background: rgba(7, 7, 6, 0.97);
  backdrop-filter: blur(20px);
}

.f-hero h1,
.f-section h2,
.f-next h2 {
  font-family: "April Orbitron", sans-serif;
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.f-hero h1 {
  font-size: clamp(55px, 16.8vw, 102px);
}

.f-section h2,
.f-next h2 {
  font-size: clamp(45px, 12.7vw, 78px);
}

body:not([data-page="home"]) .m-footer {
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
}

@media (min-width: 620px) {
  .home-hero,
  .home-overview,
  .home-feature,
  .home-watch,
  .home-principles {
    padding-right: 42px;
    padding-left: 42px;
  }

  .home-title {
    font-size: 94px;
  }

  .home-hero-showcase {
    height: 560px;
  }

  .home-feature-media {
    min-height: 680px;
  }

  .home-model-showcase {
    width: calc(100% + 84px);
    margin-right: -42px;
    margin-left: -42px;
  }

  .home-model-controls {
    margin-right: 42px;
    margin-left: 42px;
  }

  .home-context-list,
  .home-principle-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid rgba(10, 10, 8, 0.16);
  }

  .home-context-list article,
  .home-principle-list article {
    display: block;
    padding: 25px;
    border-right: 1px solid rgba(10, 10, 8, 0.16);
  }

  .home-context-list h3,
  .home-principle-list h3 {
    margin-top: 34px;
  }
}

@media (max-width: 374px) {
  .m-header-link {
    display: none;
  }

  .home-title {
    font-size: 15.1vw;
  }

  .home-hero-foot p {
    max-width: 210px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-orbit {
    animation: none;
  }

  .home-reveal-up,
  .home-line-new {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .home-strike i {
    transform: scaleX(1);
  }
}

@media print {
  .m-header,
  .m-progress {
    display: none !important;
  }

  .home-reveal-up,
  .home-line-new {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

/* Keep the crossed hero phrase inside every phone-width viewport. */

.home-title {
  font-size: clamp(45px, 12.5vw, 82px);
}

.home-line-new {
  margin-left: 5vw;
}

@media (min-width: 620px) {
  .home-title {
    font-size: clamp(68px, 10.8vw, 82px);
  }
}

@media (max-width: 374px) {
  .home-title {
    font-size: clamp(43px, 12.2vw, 46px);
  }
}

/* Readable long-form guides. The home page keeps its editorial display scale. */

.mobile-site:not([data-page="home"]) {
  font-family: "April Inter", Arial, sans-serif;
  font-weight: 430;
}

.mobile-site:not([data-page="home"]) .f-kicker,
.mobile-site:not([data-page="home"]) .f-section-index {
  display: none;
}

.mobile-site:not([data-page="home"]) .f-hero {
  min-height: auto;
  padding: 120px 24px 58px;
}

.mobile-site:not([data-page="home"]) .f-hero::before {
  top: -120px;
  right: -170px;
  width: 360px;
}

.mobile-site:not([data-page="home"]) .f-hero h1 {
  max-width: 680px;
  margin-top: 0;
  font-family: "Anta", "April Anta", sans-serif;
  font-size: clamp(40px, 10.6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.mobile-site:not([data-page="home"]) .f-hero > p:not(.f-kicker) {
  max-width: 600px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.68;
}

.mobile-site:not([data-page="home"]) .f-hero .m-button {
  margin-top: 24px;
}

.mobile-site:not([data-page="home"]) .f-page-nav {
  gap: 20px;
  padding: 16px 24px;
}

.mobile-site:not([data-page="home"]) .f-page-nav a,
.mobile-site:not([data-page="home"]) .f-page-nav a:first-child {
  padding: 3px 0;
  border: 0;
  border-radius: 0;
  color: var(--m-muted);
  background: transparent;
  font-family: "Anta", "April Anta", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.mobile-site:not([data-page="home"]) .f-page-nav a:first-child {
  color: var(--m-orange);
}

.mobile-site:not([data-page="home"]) .f-section,
.mobile-site:not([data-page="home"]) .f-next {
  padding: 56px 24px 62px;
}

.mobile-site:not([data-page="home"]) .f-section h2,
.mobile-site:not([data-page="home"]) .f-next h2 {
  max-width: 640px;
  margin-top: 0;
  font-family: "Anta", "April Anta", sans-serif;
  font-size: clamp(28px, 7.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.mobile-site:not([data-page="home"]) .f-section > p:not(.f-section-index),
.mobile-site:not([data-page="home"]) .f-next > p:not(.f-section-index) {
  max-width: 610px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.72;
}

.mobile-site:not([data-page="home"]) .f-stat-grid {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 28px;
}

.mobile-site:not([data-page="home"]) .f-stat-card {
  min-height: 0;
  padding: 18px 19px;
  border-radius: 18px;
}

.mobile-site:not([data-page="home"]) .f-stat-card strong {
  font-family: "Anta", "April Anta", sans-serif;
  font-size: clamp(25px, 7vw, 36px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  overflow-wrap: normal;
  white-space: nowrap;
}

.mobile-site:not([data-page="home"]) .f-stat-card b {
  margin-top: 10px;
  font-size: 14px;
}

.mobile-site:not([data-page="home"]) .f-stat-card p {
  margin-top: 5px;
  font-size: 12px;
}

.mobile-site:not([data-page="home"]) .f-detail-grid,
.mobile-site:not([data-page="home"]) .f-split-grid {
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--m-line);
}

.mobile-site:not([data-page="home"]) .f-detail-card,
.mobile-site:not([data-page="home"]) .f-split-card,
.mobile-site:not([data-page="home"]) .f-section-dark .f-detail-card,
.mobile-site:not([data-page="home"]) .f-section-dark .f-split-card {
  padding: 21px 0;
  border: 0;
  border-bottom: 1px solid var(--m-line);
  border-radius: 0;
  background: transparent;
}

.mobile-site:not([data-page="home"]) .f-section-dark .f-detail-grid,
.mobile-site:not([data-page="home"]) .f-section-dark .f-split-grid {
  border-color: var(--m-line-dark);
}

.mobile-site:not([data-page="home"]) .f-section-dark .f-detail-card,
.mobile-site:not([data-page="home"]) .f-section-dark .f-split-card {
  border-color: var(--m-line-dark);
}

.mobile-site:not([data-page="home"]) .f-detail-card h3,
.mobile-site:not([data-page="home"]) .f-split-card h3 {
  margin-top: 10px;
  font-family: "Anta", "April Anta", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.mobile-site:not([data-page="home"]) .f-detail-card p,
.mobile-site:not([data-page="home"]) .f-split-card p,
.mobile-site:not([data-page="home"]) .f-split-card li {
  font-size: 13px;
  line-height: 1.65;
}

.mobile-site:not([data-page="home"]) .f-flow-list {
  margin-top: 28px;
}

.mobile-site:not([data-page="home"]) .f-flow-step {
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
}

.mobile-site:not([data-page="home"]) .f-flow-step > span {
  width: 30px;
  height: 30px;
  font-size: 6px;
}

.mobile-site:not([data-page="home"]) .f-flow-step h3 {
  font-family: "Anta", "April Anta", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mobile-site:not([data-page="home"]) .f-flow-step p {
  font-size: 13px;
}

.mobile-site:not([data-page="home"]) .f-callout {
  margin-top: 28px;
  padding: 20px;
  border-radius: 19px;
}

.mobile-site:not([data-page="home"]) .f-callout h3 {
  margin-top: 10px;
  font-family: "Anta", "April Anta", sans-serif;
  font-size: clamp(21px, 5.7vw, 30px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.mobile-site:not([data-page="home"]) .f-real-media {
  margin-top: 28px;
  border-radius: 20px;
}

.mobile-site:not([data-page="home"]) .f-inline-device {
  width: min(78vw, 410px);
  margin: 30px auto 34px;
}

.mobile-site:not([data-page="home"]) .f-recipe-media {
  width: min(78vw, 330px);
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
  border: 0;
  background: transparent;
}

.mobile-site:not([data-page="home"]) .f-recipe-media img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 24px 64px rgba(39, 20, 12, 0.14);
}

.mobile-site:not([data-page="home"]) .f-recipe-media figcaption {
  padding: 13px 2px 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.mobile-site:not([data-page="home"]) .f-faq {
  margin-top: 28px;
}

.mobile-site:not([data-page="home"]) .f-faq summary {
  font-size: 15px;
}

.mobile-site:not([data-page="home"]) .f-source-note {
  font-size: 11px;
}

.f-model-links {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--m-line);
}

.f-model-links a {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--m-line);
}

.f-model-links span {
  font-family: "Anta", "April Anta", sans-serif;
  font-size: 16px;
}

.f-model-links small {
  color: var(--m-muted);
  font-size: 12px;
  text-align: right;
}

.f-model-links a:hover,
.f-model-links a:focus-visible {
  color: var(--m-orange);
}

.mobile-site:not([data-page="home"]) .f-next-links {
  margin-top: 26px;
}

.mobile-site:not([data-page="home"]) .watch-flow-card h3 {
  font-family: "Anta", "April Anta", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

@media (min-width: 620px) {
  .mobile-site:not([data-page="home"]) .f-hero,
  .mobile-site:not([data-page="home"]) .f-section,
  .mobile-site:not([data-page="home"]) .f-next,
  .mobile-site:not([data-page="home"]) .f-page-nav {
    padding-right: 42px;
    padding-left: 42px;
  }

  .mobile-site:not([data-page="home"]) .f-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-site:not([data-page="home"]) .f-detail-grid,
  .mobile-site:not([data-page="home"]) .f-split-grid {
    grid-template-columns: 1fr;
  }
}
