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

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

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

:root {
  --ink: #050506;
  --ink-soft: #0d0b0c;
  --surface-dark: #111114;
  --paper: #f4f5f8;
  --warm-paper: #faf7f2;
  --white: #ffffff;
  --text: #242326;
  --muted: #625f62;
  --coral: #ff4757;
  --action: #e02d4d;
  --action-pressed: #c81d3a;
  --cyan: #21d4f3;
  --gold: #ffd24a;
  --violet: #8b5cf6;
  --burgundy: #741a16;
  --line: #dde1e7;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
select,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.7vw, 4.7rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 11vw, 160px);
}

.section--paper {
  background: var(--warm-paper);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-logo {
  width: 102px;
  height: auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-logo--dark,
.brand-mark--dark {
  display: none;
}

.is-scrolled .brand-logo--light,
.is-open .brand-logo--light,
.is-scrolled .brand-mark--light,
.is-open .brand-mark--light {
  display: none;
}

.is-scrolled .brand-logo--dark,
.is-open .brand-logo--dark,
.is-scrolled .brand-mark--dark,
.is-open .brand-mark--dark {
  display: block;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.primary-nav a,
.header-login {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
}

.primary-nav a::after,
.header-login::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.header-login:hover::after {
  transform: scaleX(1);
}

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

.language-control {
  position: relative;
}

.language-control::before {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  content: "A";
  pointer-events: none;
  transform: translateY(-50%);
}

.language-control select {
  width: clamp(150px, 14vw, 204px);
  height: 38px;
  padding: 0 28px 0 27px;
  border: 1px solid currentColor;
  border-radius: 6px;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-control option {
  background: var(--white);
  color: var(--ink);
}

.language-control::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button--coral {
  background: var(--action);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(224, 45, 77, 0.24);
}

.button--coral:hover {
  background: var(--action-pressed);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(5, 5, 6, 0.48);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  border-color: var(--white);
  background: rgba(5, 5, 6, 0.7);
}

.menu-button {
  display: none;
  min-width: 66px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(900px, 92svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.download-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.78) 37%, rgba(5, 5, 6, 0.2) 68%, rgba(5, 5, 6, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.68) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(900px, 92svh);
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 90px;
}

.hero-copy {
  width: min(720px, 67%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--action);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--cyan {
  color: var(--cyan);
}

.eyebrow--gold-dark {
  color: #9a7200;
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-scroll span:last-child {
  color: var(--gold);
  font-size: 1.1rem;
}

.context-rail {
  overflow: hidden;
  border-top: 4px solid var(--coral);
  background: var(--ink);
  color: var(--white);
}

.context-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.context-track i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.context-track i:nth-of-type(2),
.context-track i:nth-of-type(5) {
  background: var(--gold);
}

.context-track i:nth-of-type(3) {
  background: var(--coral);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 72px;
}

.section-heading--wide {
  max-width: 960px;
}

.section-heading > p:last-child,
.feature-lead,
.coaching-copy > p:last-child,
.privacy-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-steps li {
  position: relative;
  min-width: 0;
  padding: 30px 28px 14px 0;
  border-top: 2px solid #c9c6c2;
}

.journey-steps li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.journey-steps li:nth-child(2)::before {
  background: var(--gold);
}

.journey-steps li:nth-child(3)::before {
  background: var(--cyan);
}

.journey-steps li:nth-child(4)::before {
  background: var(--violet);
}

.journey-steps span {
  display: block;
  margin-bottom: 24px;
  color: #8b8784;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
}

.journey-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.journey-steps p {
  max-width: 220px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-story {
  overflow: hidden;
  background: var(--white);
}

.feature-layout,
.library-layout,
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.product-visual {
  position: relative;
  min-height: 720px;
}

.phone-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 72px;
  box-shadow: 0 28px 65px rgba(5, 5, 6, 0.18);
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.phone-shot--back,
.phone-shot--front {
  position: absolute;
  width: min(66%, 335px);
}

.phone-shot--back {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.phone-shot--front {
  right: 0;
  bottom: 0;
  transform: rotate(2deg);
}

.product-visual--pair::before {
  position: absolute;
  top: 12%;
  right: 5%;
  bottom: 10%;
  left: 12%;
  border: 1px solid #eadbd3;
  border-radius: 50%;
  content: "";
}

.feature-copy h2,
.library-copy h2 {
  max-width: 590px;
}

.clean-list {
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.clean-list li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 12px;
  height: 3px;
  background: var(--coral);
  content: "";
}

.clean-list li:nth-child(2)::before {
  background: var(--cyan);
}

.clean-list li:nth-child(3)::before {
  background: var(--gold);
}

.clean-list li:nth-child(4)::before {
  background: var(--violet);
}

.coaching {
  overflow: hidden;
}

.coaching::after {
  position: absolute;
  top: 0;
  right: 13%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.07);
  content: "";
}

.coaching-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.coaching-copy > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.metric-stage {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--surface-dark);
}

.metric-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-head span,
.metric span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
}

.metric-head strong {
  max-width: 240px;
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px 0;
}

.metric {
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric + .metric {
  padding-left: 24px;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin: 12px 0 2px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1;
}

.metric small {
  color: rgba(255, 255, 255, 0.48);
}

.metric--coral strong {
  color: var(--coral);
}

.metric--cyan strong {
  color: var(--cyan);
}

.metric--gold strong {
  color: var(--gold);
}

.pace-line {
  height: 8px;
  overflow: hidden;
  background: #29292f;
}

.pace-line span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral) 0 42%, var(--gold) 42% 69%, var(--cyan) 69%);
}

.metric-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.library {
  overflow: hidden;
}

.library-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.library-phone {
  justify-self: end;
  width: min(100%, 370px);
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 42px;
}

.feature-columns > div {
  padding-top: 18px;
  border-top: 3px solid var(--coral);
}

.feature-columns > div:nth-child(2) {
  border-color: var(--cyan);
}

.feature-columns strong {
  font-size: 1.05rem;
}

.feature-columns p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #cecac5;
  border-bottom: 1px solid #cecac5;
}

.audience-list article {
  min-width: 0;
  padding: 42px 36px 42px 0;
}

.audience-list article + article {
  padding-left: 36px;
  border-left: 1px solid #cecac5;
}

.audience-list span {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--action);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
}

.audience-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.privacy-mark {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  place-items: center;
}

.privacy-mark img {
  position: relative;
  z-index: 2;
  width: 36%;
}

.privacy-rings,
.privacy-rings::before,
.privacy-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
  inset: 0;
}

.privacy-rings::before {
  inset: 18%;
  border-color: rgba(33, 212, 243, 0.3);
}

.privacy-rings::after {
  inset: 36%;
  border-color: rgba(255, 71, 87, 0.48);
}

.privacy-copy > p {
  color: rgba(255, 255, 255, 0.64);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--cyan);
  color: var(--white);
  font-weight: 700;
}

.download {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(900px, 92svh);
  overflow: hidden;
  color: var(--white);
}

.download-media {
  object-position: 68% 42%;
}

.download-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.75) 45%, rgba(5, 5, 6, 0.12) 75%);
}

.download-content {
  position: relative;
  z-index: 2;
  width: min(680px, 58vw);
  padding-block: clamp(110px, 12vw, 170px);
}

.download-content h2,
.download-content > p:not(.eyebrow) {
  max-width: 660px;
}

.download-content h2 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

.download-content > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
}

.store-button {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
  min-height: 68px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transition: transform 160ms ease, border-color 160ms ease;
}

.store-button:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  margin-left: 11px;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 3px;
  font-size: 0.68rem;
}

.store-button strong {
  font-size: 1.13rem;
}

.store-actions .button {
  min-height: 68px;
}

.store-symbol {
  position: relative;
  width: 24px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.store-symbol::before {
  position: absolute;
  top: -8px;
  left: 9px;
  content: "•";
  font-size: 0.8rem;
}

.play-symbol {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 21px solid var(--cyan);
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid #27272b;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 54px;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.footer-lockup > img:first-child {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo {
  width: 122px;
}

.footer-grid p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  align-content: start;
  gap: 18px 36px;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #27272b;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-bottom span:last-child {
  color: var(--gold);
}

.legal-page {
  background: var(--white);
  color: var(--text);
}

.site-header--static {
  position: sticky;
}

.legal-main {
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.9), rgba(255, 255, 255, 0) 340px),
    var(--white);
}

.legal-document {
  max-width: 860px;
  padding-top: clamp(70px, 9vw, 116px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.legal-document h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.legal-document h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document p {
  margin-bottom: 16px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal-document a {
  color: var(--action);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1050px) {
  .primary-nav {
    gap: 18px;
  }

  .header-login,
  .header-cta {
    display: none;
  }

  .feature-layout,
  .library-layout,
  .privacy-layout,
  .coaching-layout {
    gap: 58px;
  }

  .product-visual {
    min-height: 620px;
  }

  .phone-shot {
    border-radius: 58px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 32px, 620px);
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
  }

  .brand-logo {
    width: 92px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .menu-button {
    display: block;
  }

  .header-actions {
    gap: 10px;
  }

  .language-control select {
    min-width: 64px;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - var(--header-height));
    padding: 22px 16px 32px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero,
  .hero-content {
    min-height: max(720px, 92svh);
  }

  .hero-media {
    object-position: 67% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.22) 0%, rgba(5, 5, 6, 0.38) 28%, rgba(5, 5, 6, 0.92) 68%, rgba(5, 5, 6, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 6, 0.42), rgba(5, 5, 6, 0.04));
  }

  .hero-content {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 78px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }

  .hero-note,
  .hero-scroll {
    display: none;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .context-track {
    justify-content: flex-start;
    width: max-content;
    min-height: 68px;
    animation: context-scroll 25s linear infinite;
  }

  .context-track::after {
    content: "";
    width: 20px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

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

  .journey-steps li {
    min-height: 210px;
  }

  .feature-layout,
  .library-layout,
  .privacy-layout,
  .coaching-layout {
    grid-template-columns: 1fr;
  }

  .product-visual {
    order: 2;
    width: min(100%, 560px);
    min-height: 680px;
    margin-inline: auto;
  }

  .feature-copy {
    order: 1;
  }

  .phone-shot {
    border-radius: 64px;
  }

  .coaching::after {
    right: 24px;
  }

  .metric-stage {
    padding: 26px;
  }

  .library-phone {
    justify-self: center;
    order: 2;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list article,
  .audience-list article + article {
    padding: 30px 0;
    border-left: 0;
  }

  .audience-list article + article {
    border-top: 1px solid #cecac5;
  }

  .audience-list span {
    margin-bottom: 26px;
  }

  .privacy-mark {
    width: min(72vw, 360px);
    margin-inline: auto;
  }

  .download {
    min-height: 780px;
    align-items: flex-end;
  }

  .download-media {
    object-position: 62% 44%;
  }

  .download-shade {
    background: linear-gradient(180deg, rgba(5, 5, 6, 0.14) 0%, rgba(5, 5, 6, 0.48) 42%, rgba(5, 5, 6, 0.98) 82%);
  }

  .download-content {
    width: var(--shell);
    padding-bottom: 72px;
  }

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

  @keyframes context-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-22%); }
  }
}

@media (max-width: 520px) {
  .section {
    padding-block: 82px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 1.05rem;
  }

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

  .journey-steps li {
    min-height: auto;
    padding-bottom: 36px;
  }

  .journey-steps p {
    max-width: none;
  }

  .product-visual {
    min-height: 560px;
  }

  .phone-shot {
    border-radius: 48px;
  }

  .phone-shot--back,
  .phone-shot--front {
    width: min(70%, 285px);
  }

  .metric-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-head strong {
    text-align: left;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .metric,
  .metric + .metric {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric strong {
    grid-row: span 2;
    margin: 0;
  }

  .metric small {
    grid-column: 1;
  }

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

  .library-phone {
    width: min(88vw, 350px);
  }

  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 84px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-control,
  .language-control select {
    width: 62px;
    min-width: 62px;
  }

  .menu-button {
    min-width: 62px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
