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

@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/Archivo-BlackItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ember: #ff4a2e;
  --ember-deep: #c42202;
  --ink: #131216;
  --push: #0d0d10;
  --paper: #f5f4f1;
  --card: #ffffff;
  --chalk: #d9d6cf;
  --steel: #3c3b42;
  --line-dark: rgba(245, 244, 241, 0.16);
  --line-light: rgba(19, 18, 22, 0.15);
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --display: "Archivo", "Arial Black", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lang-es {
  display: none;
}

html[lang="es"] .lang-en {
  display: none;
}

html[lang="es"] .lang-es {
  display: revert;
}

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

a {
  color: inherit;
}

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

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

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.nav.scrolled {
  background: rgba(13, 13, 16, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  direction: ltr;
  unicode-bidi: isolate;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.28);
}

.brand__word {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
}

.brand__word span {
  color: var(--ember);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.85rem;
  font-weight: 700;
}

.nav__links a {
  text-decoration: none;
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-select__compact {
  display: none;
}

.language-select::before {
  content: "文";
  position: absolute;
  z-index: 1;
  left: 12px;
  color: var(--ember);
  font-family: var(--display);
  font-size: 0.72rem;
  pointer-events: none;
}

.language-select select {
  height: 42px;
  width: 142px;
  padding: 0 28px 0 32px;
  color: var(--paper);
  color-scheme: dark;
  background-color: #1d1c21;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font: 700 0.75rem/1 var(--body);
  text-overflow: ellipsis;
  cursor: pointer;
}

.language-select select option {
  color: var(--paper);
  background-color: var(--push);
}

.language-select select:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

.language-select--footer select {
  width: 180px;
}

.nav__download {
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--push);
  background: var(--ember);
  direction: ltr;
  unicode-bidi: isolate;
}

.section-dark,
.section-ink {
  color: var(--paper);
  background: var(--push);
}

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

.section-ember {
  color: var(--push);
  background: var(--ember);
}

#the-set,
#the-record,
#download {
  scroll-margin-top: 92px;
}

.hero {
  min-height: 100svh;
  padding: 132px clamp(24px, 6vw, 100px) 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 52vw;
  height: 52vw;
  right: -14vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(255, 74, 46, 0.24) 0, rgba(255, 74, 46, 0.08) 35%, transparent 68%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: repeating-linear-gradient(90deg, transparent 0 87px, rgba(245, 244, 241, 0.13) 88px 89px);
  mask-image: linear-gradient(to bottom, transparent 0, black 34%, black 76%, transparent 100%);
}

.hero__copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero__copy,
.manifesto__copy,
.manifesto__aside,
.set__intro,
.station__copy,
.record__copy,
.record__card,
.privacy,
.download__copy {
  overflow-wrap: anywhere;
}

.hero__kicker,
.section-label,
.station__name,
.record__stamp {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero__kicker {
  color: var(--ember);
}

.hero h1 {
  margin: 22px 0 28px;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.8vw, 9.5rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.hero h1::first-line {
  color: var(--ember);
}

html:not([lang="en"]) .hero h1 {
  font-size: clamp(4rem, 7.2vw, 8rem);
  line-height: 0.86;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .manifesto h2,
html[dir="rtl"] .set__intro h2,
html[dir="rtl"] .station__copy h3,
html[dir="rtl"] .record h2,
html[dir="rtl"] .privacy h2,
html[dir="rtl"] .download h2 {
  font-style: normal;
  letter-spacing: 0;
}

html:is([lang="ja"], [lang="zh"], [lang="ko"], [lang="bn"], [lang="gu"], [lang="hi"], [lang="kn"], [lang="ml"], [lang="mr"], [lang="or"], [lang="pa"], [lang="ta"], [lang="te"], [lang="th"]) :is(.hero h1, .manifesto h2, .set__intro h2, .station__copy h3, .record h2, .privacy h2, .download h2) {
  font-style: normal;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero__lead {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(245, 244, 241, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.store-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  border-radius: 9px;
}

.store-badge img {
  display: block;
  width: auto;
}

.hero__equipment {
  min-height: 720px;
  display: grid;
  place-items: center;
  position: relative;
}

.barbell {
  position: absolute;
  inset-inline: -7vw;
  top: 50%;
  height: 300px;
  transform: translateY(-50%);
}

.barbell__shaft {
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  right: 0;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(to bottom, #8b8b91 0, #d4d4d7 35%, #53535a 64%, #85858b 100%);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.65);
}

.barbell__plate,
.barbell__collar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 14px;
  background: linear-gradient(90deg, #17171b 0, #3d3c44 24%, #17171b 52%, #39383f 80%, #111114 100%);
  border: 1px solid rgba(245, 244, 241, 0.12);
  box-shadow: inset -5px 0 0 rgba(0, 0, 0, 0.35), 0 16px 40px rgba(0, 0, 0, 0.4);
}

.barbell__plate--outer {
  width: 55px;
  height: 290px;
}

.barbell__plate--inner {
  width: 72px;
  height: 250px;
}

.barbell__plate--left.barbell__plate--outer { left: 0; }
.barbell__plate--left.barbell__plate--inner { left: 60px; }
.barbell__plate--right.barbell__plate--inner { right: 60px; }
.barbell__plate--right.barbell__plate--outer { right: 0; }

.barbell__collar {
  width: 34px;
  height: 110px;
  border-radius: 7px;
  background: var(--ember);
  border: 0;
}

.barbell__collar--left { left: 140px; }
.barbell__collar--right { right: 140px; }

.device {
  margin: 0;
  position: relative;
  border: 10px solid #242329;
  border-radius: 48px;
  overflow: hidden;
  background: #242329;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(245, 244, 241, 0.12);
}

.device::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.device img {
  display: block;
  width: 100%;
  height: auto;
}

.device__island {
  position: absolute;
  z-index: 2;
  width: 30%;
  height: 22px;
  left: 35%;
  top: 11px;
  border-radius: 999px;
  background: #050507;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.08);
}

.device--hero {
  z-index: 4;
  width: min(330px, 29vw);
  transform: rotate(2.2deg);
  animation: settle 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero__time {
  position: absolute;
  z-index: 5;
  right: 3%;
  bottom: 18%;
  width: 132px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--push);
  background: var(--ember);
  transform: rotate(-7deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

.hero__time span {
  font-family: var(--display);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.hero__time b {
  margin-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.hero__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
}

.hero__floor span {
  border-right: 1px solid var(--line-dark);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 60%);
}

.truth-strip {
  min-height: 112px;
  padding: 24px clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 26px;
  color: var(--paper);
  background: var(--ember-deep);
}

.truth-strip p {
  margin: 0;
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  font-weight: 700;
}

.truth-strip strong {
  margin-right: 10px;
  font-family: var(--display);
  font-size: 1.6em;
  font-style: italic;
}

.truth-strip__rule {
  height: 2px;
  background: rgba(245, 244, 241, 0.5);
}

.manifesto {
  min-height: 650px;
  padding: 110px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1.2fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: center;
}

.manifesto__mark {
  width: clamp(120px, 14vw, 210px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 13px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-style: italic;
  line-height: 1;
  color: var(--ember);
  transform: rotate(-5deg);
}

.manifesto h2,
.set__intro h2,
.record h2,
.privacy h2,
.download h2 {
  margin: 16px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6.2vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.manifesto__copy > p:last-child,
.set__intro > p:last-child,
.record__copy > p:last-child,
.download__copy > p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: rgba(19, 18, 22, 0.66);
}

.manifesto__aside {
  border-top: 5px solid var(--ember);
}

.manifesto__aside p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  font-weight: 700;
  line-height: 1.4;
}

.set {
  padding: 120px clamp(18px, 5vw, 84px) 150px;
  position: relative;
  overflow: hidden;
}

.set__intro {
  max-width: 880px;
  margin: 0 auto 110px;
  text-align: center;
}

.set__intro .section-label,
.privacy .section-label,
.download .section-label {
  color: var(--ember);
}

.set__intro > p:last-child {
  margin-inline: auto;
  color: rgba(245, 244, 241, 0.66);
}

.rack {
  position: absolute;
  top: 570px;
  bottom: 160px;
  left: 50%;
  width: 18px;
  transform: translateX(-50%);
  border-radius: 9px;
  background: linear-gradient(90deg, #424149, #8b8a91 48%, #38373e);
  box-shadow: 0 0 0 1px rgba(245, 244, 241, 0.12), 0 14px 30px rgba(0, 0, 0, 0.4);
}

.rack span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 116px auto 0;
  border-radius: 50%;
  background: var(--push);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8), 0 1px 1px rgba(255, 255, 255, 0.12);
}

.station {
  width: min(1180px, 92vw);
  min-height: 680px;
  margin: 0 auto 120px;
  padding: clamp(34px, 5vw, 78px);
  display: grid;
  grid-template-columns: 0.18fr minmax(0, 0.94fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  position: relative;
  border-radius: 48px;
  color: var(--ink);
  background: var(--paper);
}

.station:nth-of-type(even) {
  transform: translateX(-5%);
}

.station:nth-of-type(odd) {
  transform: translateX(5%);
}

.station--ember {
  color: var(--push);
  background: var(--ember);
}

.station--chalk {
  background: var(--chalk);
}

.station--rest {
  background: #e8e6df;
}

.station__number {
  align-self: start;
  font-family: var(--display);
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-style: italic;
  line-height: 0.75;
  color: var(--ember);
}

.station--ember .station__number {
  color: var(--push);
}

.station__copy h3 {
  max-width: 560px;
  margin: 15px 0 22px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.2vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.station__copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(19, 18, 22, 0.67);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.58;
}

.station--ember .station__copy > p:last-child {
  color: rgba(13, 13, 16, 0.9);
}

.device--station {
  width: min(310px, 100%);
  justify-self: center;
  transform: rotate(2deg);
  box-shadow: 0 32px 70px rgba(19, 18, 22, 0.36);
}

.station:nth-of-type(even) .device--station {
  transform: rotate(-2deg);
}

.record {
  min-height: 900px;
  padding: 120px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.68fr) minmax(250px, 0.5fr);
  align-items: center;
  gap: clamp(32px, 5vw, 85px);
  overflow: hidden;
}

.record__copy > p:last-child {
  color: rgba(19, 18, 22, 0.67);
}

.record__card {
  padding: clamp(28px, 4vw, 52px);
  color: var(--paper);
  background: var(--ink);
  border-radius: 28px;
  transform: rotate(-2.6deg);
  box-shadow: 0 28px 60px rgba(19, 18, 22, 0.22);
}

.record__stamp {
  color: rgba(245, 244, 241, 0.56);
}

.record__card blockquote {
  margin: 24px 0 30px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.record__signature {
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 800;
}

.device--record {
  width: min(285px, 100%);
  transform: rotate(3deg);
  box-shadow: 0 40px 80px rgba(19, 18, 22, 0.28);
}

.privacy {
  min-height: 430px;
  padding: 78px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}

.privacy .section-label {
  color: var(--push);
}

.privacy h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.privacy__icon {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 118px;
}

.privacy__icon span {
  width: 28px;
  border-radius: 14px 14px 5px 5px;
  background: var(--push);
}

.privacy__icon span:nth-child(1) { height: 45%; }
.privacy__icon span:nth-child(2) { height: 76%; }
.privacy__icon span:nth-child(3) { height: 100%; }

.privacy ul {
  min-width: 180px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy li {
  padding: 14px 0;
  border-bottom: 2px solid rgba(13, 13, 16, 0.28);
  font-family: var(--display);
  font-size: 1.3rem;
}

.download {
  min-height: 760px;
  padding: 120px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.download::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -260px;
  bottom: -360px;
  border: 90px solid rgba(255, 74, 46, 0.13);
  border-radius: 50%;
}

.download__icon {
  width: 100%;
  height: auto;
  border-radius: 38px;
  transform: rotate(-5deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.download h2 {
  max-width: 970px;
  font-size: clamp(3.4rem, 6.4vw, 7.4rem);
}

.download__copy > p:last-child {
  color: rgba(245, 244, 241, 0.66);
}

.store-badges--large {
  grid-column: 2;
  margin-top: -76px;
  position: relative;
  z-index: 2;
}

.footer {
  min-height: 240px;
  padding: 58px clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 44px;
  color: var(--paper);
  background: #070709;
  border-top: 1px solid var(--line-dark);
}

.footer__brand p,
.footer__copyright {
  margin: 12px 0 0;
  color: rgba(245, 244, 241, 0.5);
  font-size: 0.8rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer__links a,
.footer__links button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer__copyright {
  grid-column: 1 / -1;
}

.snackbar {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  max-width: calc(100vw - 32px);
  padding: 13px 20px;
  color: var(--paper);
  background: rgba(13, 13, 16, 0.96);
  border: 1px solid rgba(245, 244, 241, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, 28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.snackbar--show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes settle {
  from { transform: translateY(42px) rotate(4deg); opacity: 0; }
  to { transform: translateY(0) rotate(2.2deg); opacity: 1; }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  }

  .hero__equipment {
    min-height: 630px;
  }

  .device--hero {
    width: min(300px, 32vw);
  }

  .manifesto {
    grid-template-columns: 160px 1fr;
  }

  .manifesto__aside {
    grid-column: 2;
  }

  .record {
    grid-template-columns: 1fr minmax(250px, 0.55fr);
  }

  .record__card {
    grid-column: 1;
  }

  .device--record {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 821px) and (max-height: 900px) {
  .hero {
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 40px;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    gap: 3vw;
  }

  .hero h1 {
    margin: 28px 0 18px;
    font-size: clamp(4.1rem, 6vw, 6.8rem);
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero__equipment {
    min-height: 560px;
  }

  .device--hero {
    width: min(270px, 24vw);
  }

  .barbell {
    height: 250px;
  }

  .barbell__plate--outer {
    height: 240px;
  }

  .barbell__plate--inner {
    height: 210px;
  }

  .hero__time {
    width: 104px;
    bottom: 12%;
  }
}

@media (max-width: 820px) {
  .nav {
    height: 66px;
    padding-inline: 18px;
  }

  .nav__links a:not(.nav__download) {
    display: none;
  }

  .nav__links {
    gap: 10px;
  }

  .language-select--nav select {
    width: 72px;
    padding: 0;
  }

  .language-select--nav::before {
    display: none;
  }

  .language-select__compact {
    position: absolute;
    z-index: 2;
    inset: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--paper);
    background: #1d1c21;
    border-radius: 999px;
    font: 800 0.75rem/1 var(--body);
    letter-spacing: 0.04em;
    pointer-events: none;
  }

  .nav__download {
    min-height: 38px;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding: 116px 22px 82px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 19vw, 7rem);
  }

  .hero__equipment {
    min-height: 610px;
  }

  .device--hero {
    width: min(310px, 68vw);
  }

  .barbell {
    inset-inline: -180px;
  }

  .hero__time {
    right: 8%;
    bottom: 13%;
    width: 104px;
  }

  .hero__time span {
    font-size: 2rem;
  }

  .truth-strip {
    min-height: 150px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .truth-strip__rule {
    width: 100%;
  }

  .manifesto,
  .record,
  .privacy,
  .download {
    padding: 88px 24px;
    grid-template-columns: 1fr;
  }

  .manifesto {
    min-height: 0;
  }

  .manifesto__mark {
    width: 118px;
    border-width: 9px;
  }

  .manifesto__aside,
  .device--record,
  .record__card,
  .store-badges--large {
    grid-column: 1;
    grid-row: auto;
  }

  .set {
    padding: 90px 14px 100px;
  }

  .set__intro {
    margin-bottom: 72px;
    padding-inline: 16px;
  }

  .rack {
    display: none;
  }

  .station,
  .station:nth-of-type(even),
  .station:nth-of-type(odd) {
    width: 100%;
    min-height: 0;
    margin-bottom: 28px;
    padding: 34px 24px 0;
    grid-template-columns: 76px 1fr;
    gap: 22px 12px;
    transform: none;
    border-radius: 32px;
    overflow: hidden;
  }

  .station__copy {
    align-self: center;
  }

  .station__copy h3 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .device--station {
    grid-column: 1 / -1;
    width: min(300px, 76vw);
    margin-top: 20px;
    transform: translateY(14px) rotate(1.5deg);
  }

  .station:nth-of-type(even) .device--station {
    transform: translateY(14px) rotate(-1.5deg);
  }

  .record {
    gap: 48px;
  }

  .record__card {
    transform: rotate(-1.4deg);
  }

  .device--record {
    width: min(320px, 78vw);
    justify-self: center;
  }

  .privacy {
    gap: 24px;
  }

  .privacy__icon {
    height: 80px;
  }

  .privacy ul {
    min-width: 0;
  }

  .download {
    text-align: left;
  }

  .download__icon {
    width: 120px;
    border-radius: 30px;
  }

  .store-badges--large {
    margin-top: 8px;
  }

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

  .footer__links {
    flex-wrap: wrap;
  }

  .footer__copyright {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .brand__word {
    display: none;
  }

  .nav__download {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 18vw;
  }

  .store-badges {
    align-items: flex-start;
  }

  .store-badge img {
    height: 46px;
  }

  .hero__equipment {
    min-height: 550px;
  }

  .hero__time {
    right: 1%;
  }

  .manifesto h2,
  .set__intro h2,
  .record h2,
  .privacy h2,
  .download h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .station {
    grid-template-columns: 58px 1fr;
  }

  .station__number {
    font-size: 4.2rem;
  }
}

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

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