:root {
  --bg: #07090b;
  --surface: #0d1115;
  --surface-raised: #12181e;
  --surface-warm: #151114;
  --text: #f7f8fa;
  --muted: #a5abb2;
  --quiet: #737b84;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #1f91ff;
  --accent-bright: #55b6ff;
  --accent-rgb: 31, 145, 255;
  --success: #55d68b;
  --max-width: 1180px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}

html[data-variant='fitgirl'] {
  --accent: #ff3497;
  --accent-bright: #ff70b7;
  --accent-rgb: 255, 52, 151;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

::selection {
  color: #050607;
  background: var(--accent-bright);
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.5rem, 10vw, 8.75rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 680;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #050607;
  background: var(--accent);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px;
  align-items: center;
  width: min(calc(100% - 32px), 1220px);
  min-height: 64px;
  padding: 8px 10px 8px 16px;
  background: rgba(7, 9, 11, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transform: translateX(-50%);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 680;
}

.site-brand img {
  width: 34px;
  height: auto;
}

.site-brand i {
  color: var(--accent);
  font-style: normal;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  padding: 0 24px;
}

.primary-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: var(--text);
}

.variant-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.variant-switch button {
  min-width: 82px;
  min-height: 38px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
}

.variant-switch button.is-active {
  color: #050607;
  background: var(--accent);
}

.site-language-picker {
  position: relative;
}

.site-language-trigger {
  display: grid;
  grid-template-columns: 17px auto 12px;
  align-items: center;
  gap: 7px;
  min-width: 76px;
  min-height: 44px;
  padding: 0 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.site-language-trigger > svg:first-child {
  width: 17px;
  color: var(--accent);
}

.site-language-trigger svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-language-trigger > span {
  font-size: 0.72rem;
  font-weight: 650;
}

.site-language-chevron {
  width: 12px;
  color: var(--quiet);
  transition: transform 160ms ease;
}

.site-language-trigger[aria-expanded='true'] .site-language-chevron {
  transform: rotate(180deg);
}

.site-language-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  display: grid;
  width: 210px;
  padding: 7px;
  overflow: hidden;
  background: rgba(9, 12, 15, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 52px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

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

.site-language-menu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 39px;
  padding: 5px 9px;
  color: var(--muted);
  border-radius: 5px;
  font-size: 0.8rem;
  transition:
    color 140ms ease,
    background 140ms ease;
}

.site-language-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.site-language-menu a > span {
  color: var(--quiet);
  font-size: 0.65rem;
  font-weight: 700;
}

.site-language-menu a.is-active {
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.16);
}

.site-language-menu a.is-active > span {
  color: var(--accent-bright);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(900px, 91svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 142px 0 92px;
}

.hero-inner h1 {
  width: min-content;
  color: var(--text);
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
}

.hero-inner h1::after {
  display: block;
  width: 38%;
  height: 8px;
  margin-top: 12px;
  background: var(--accent);
  content: '';
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d1d5da;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.65;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.75);
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.hero-media .phone {
  position: absolute;
  width: clamp(270px, 29vw, 420px);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.68);
}

.phone-primary {
  top: 88px;
  right: max(3vw, calc((100vw - 1440px) / 2));
  transform: rotate(3deg);
}

.phone-secondary {
  right: max(24vw, calc((100vw - 730px) / 2));
  bottom: -42%;
  width: clamp(230px, 23vw, 340px) !important;
  opacity: 0.58;
  transform: rotate(-5deg);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 65%;
  background: rgba(7, 9, 11, 0.88);
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 720;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.button-primary {
  color: #050607;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-bright);
}

.button-secondary {
  color: var(--text);
  background: rgba(7, 9, 11, 0.56);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-links-hero {
  margin-bottom: 26px;
}

.store-button {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  width: 196px;
  min-height: 60px;
  padding: 8px 13px;
  color: var(--text);
  background: #080a0c;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  transition:
    transform 150ms ease,
    border-color 150ms ease;
}

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

.store-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.store-button span {
  display: grid;
  line-height: 1.15;
}

.store-button small {
  color: var(--muted);
  font-size: 0.58rem;
}

.store-button strong {
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 540;
}

.text-download-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.5);
  font-size: 0.86rem;
  font-weight: 500;
}

.text-download-link::after {
  margin-left: 7px;
  content: '\2192';
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.84rem;
}

.hero-proof li::before {
  margin-right: 8px;
  color: var(--success);
  content: '\2713';
}

.statement-band {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 40px 24px;
  color: #060708;
  background: var(--accent);
}

.statement-band p {
  max-width: 1000px;
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  font-weight: 680;
  line-height: 1.2;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.intro,
.screens,
.practical,
.faq {
  padding-block: clamp(90px, 12vw, 160px);
}

.section-heading {
  display: grid;
  max-width: 920px;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.section-heading > p:last-child,
.feature-copy > p,
.choice-inner p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.feature-index article {
  min-height: 300px;
  padding: 36px 34px 32px 0;
  border-bottom: 1px solid var(--line);
}

.feature-index article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.feature-index span {
  display: block;
  margin-bottom: 74px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 720;
}

.feature-index p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trainer-band,
.workout-band,
.data-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.trainer-band {
  background: var(--surface);
}

.workout-band {
  background: var(--surface-warm);
}

.data-band {
  background: #0a0f13;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  align-items: center;
  gap: clamp(54px, 10vw, 150px);
  min-height: 920px;
  padding-block: clamp(90px, 10vw, 140px);
}

.feature-layout-reverse {
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
}

.feature-layout-reverse .feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-layout-reverse .phone-showcase {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 15px 0 15px 30px;
  color: #d8dde2;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  margin-left: -28px;
  color: var(--accent);
  content: '\2713';
}

.phone {
  position: relative;
  overflow: hidden;
  background: #080a0c;
  border: 7px solid #1d2329;
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 27%;
  height: 22px;
  background: #050607;
  border-radius: 18px;
  content: '';
  transform: translateX(-50%);
}

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

.phone-showcase {
  width: min(100%, 400px);
  margin: 0 auto;
}

.phone-showcase figcaption {
  margin-top: 20px;
  color: var(--quiet);
  text-align: center;
  font-size: 0.78rem;
}

.phone-showcase-trainer .phone img {
  transform: translateY(0);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.metric-row span {
  padding: 7px 10px;
  color: #c4cbd2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.74rem;
}

.screens {
  max-width: 1320px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
}

.screen-grid figure {
  margin: 0;
}

.screen-grid figure:nth-child(even) {
  margin-top: 84px;
}

.screen-grid .phone {
  border-width: 5px;
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.38);
}

.screen-grid .phone::before {
  height: 15px;
}

.screen-grid figcaption {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  font-size: 0.8rem;
}

.screen-grid figcaption strong {
  color: var(--text);
  font-weight: 620;
}

.screen-grid figcaption span {
  color: var(--quiet);
}

.choice-band {
  padding-block: clamp(90px, 10vw, 140px);
  background: var(--surface-raised);
  border-block: 1px solid var(--line);
}

.choice-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: clamp(50px, 10vw, 140px);
}

.choice-inner h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
}

.choice-inner h2 span {
  color: var(--accent);
}

.choice-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-button {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 24px;
  color: var(--text);
  text-align: left;
  background: #090b0e;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

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

.choice-button span {
  color: var(--muted);
  font-size: 0.75rem;
}

.choice-button strong {
  font-size: 1.35rem;
  font-weight: 620;
}

.choice-button.gymbro-choice::before,
.choice-button.fitgirl-choice::before {
  align-self: start;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  border-radius: 50%;
  content: '';
}

.choice-button.gymbro-choice::before {
  background: #1f91ff;
}

.choice-button.fitgirl-choice::before {
  background: #ff3497;
}

.choice-button.is-active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.practical {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
  gap: clamp(60px, 10vw, 140px);
}

.practical .section-heading {
  margin-bottom: 0;
}

.fact-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.fact-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--quiet);
  font-size: 0.78rem;
}

.fact-list dd {
  margin: 0;
  color: #d7dce1;
  font-size: 0.9rem;
}

.faq {
  padding-top: 40px;
}

.download-band {
  color: #050607;
  background: var(--accent);
  scroll-margin-top: 100px;
}

.download-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  min-height: 430px;
  padding-block: 76px;
}

.download-inner .kicker {
  color: #050607;
}

.download-inner h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.download-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(5, 6, 7, 0.75);
  font-size: 1.02rem;
}

.download-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.download-actions .store-links {
  display: grid;
}

.download-actions .store-button:hover {
  border-color: #050607;
}

.download-actions > small {
  color: rgba(5, 6, 7, 0.66);
  font-size: 0.68rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  font-weight: 560;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 300;
  content: '+';
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: '\2212';
}

.faq-list details p {
  max-width: 780px;
  padding: 0 48px 26px 0;
  color: var(--muted);
}

.closing-band {
  display: grid;
  min-height: 760px;
  place-items: center;
  padding-block: 100px;
  background: #050607;
  border-top: 1px solid var(--line);
}

.closing-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-inner img {
  width: min(240px, 44vw);
  margin-bottom: 36px;
}

.closing-inner h2 {
  max-width: 980px;
}

.closing-inner .store-links {
  justify-content: center;
  margin-top: 12px;
}

.back-to-top {
  margin-top: 30px;
  color: var(--quiet);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.back-to-top:hover {
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 120px;
  margin: 0 auto;
  color: var(--quiet);
  font-size: 0.76rem;
}

.site-footer p {
  margin: 0;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer-legal a {
  color: var(--quiet);
}

.site-footer-legal a:hover {
  color: var(--active-accent);
}

.site-footer > p:last-child {
  grid-column: 2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 980px) {
  .primary-nav {
    display: none;
  }

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

  .hero-shade {
    width: 72%;
  }

  .hero-media .phone {
    right: -10%;
  }

  .phone-secondary {
    display: none;
  }

  .feature-layout,
  .feature-layout-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 54px;
    min-height: 780px;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 28px;
  }

  .screen-grid figure:nth-child(even) {
    margin-top: 50px;
  }

  .choice-inner,
  .practical,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .download-actions .store-links {
    display: flex;
  }

  .practical {
    gap: 58px;
  }
}

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

  h1 {
    max-width: 100%;
    font-size: clamp(3.45rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 6px 7px 6px 12px;
  }

  .site-brand img {
    width: 29px;
  }

  .site-header .site-brand span {
    display: none;
  }

  .variant-switch button {
    min-width: 72px;
    min-height: 36px;
    font-size: 0.7rem;
  }

  .site-language-trigger {
    grid-template-columns: 16px auto;
    min-width: 62px;
    min-height: 42px;
    padding: 0 9px;
  }

  .site-language-trigger > svg:first-child {
    width: 16px;
  }

  .site-language-chevron {
    display: none;
  }

  .hero {
    align-items: flex-start;
    min-height: 800px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-top: 124px;
  }

  .hero-inner h1::after {
    height: 5px;
  }

  .hero-lead {
    max-width: 95%;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: 290px;
    margin-bottom: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .store-links-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
  }

  .store-links-hero .store-button,
  .closing-inner .store-button {
    width: 100%;
    grid-template-columns: 24px 1fr;
    padding-inline: 10px;
  }

  .store-links-hero .store-button svg,
  .closing-inner .store-button svg {
    width: 23px;
    height: 23px;
  }

  .store-links-hero .store-button strong,
  .closing-inner .store-button strong {
    font-size: 0.84rem;
  }

  .hero-proof {
    display: grid;
    gap: 7px;
  }

  .hero-shade {
    width: 100%;
    height: 69%;
    background: rgba(7, 9, 11, 0.94);
  }

  .hero-media .phone {
    top: auto;
    right: -16%;
    bottom: -29%;
    width: 88vw;
    opacity: 0.7;
    transform: rotate(3deg);
  }

  .statement-band {
    min-height: 170px;
  }

  .section-shell {
    width: calc(100% - 36px);
  }

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

  .feature-index article,
  .feature-index article + article {
    min-height: auto;
    padding: 30px 0;
    border-left: 0;
  }

  .feature-index span {
    margin-bottom: 34px;
  }

  .feature-layout,
  .feature-layout-reverse {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: 0;
  }

  .feature-layout-reverse .feature-copy,
  .feature-layout-reverse .phone-showcase {
    grid-column: 1;
  }

  .feature-layout-reverse .feature-copy {
    grid-row: 1;
  }

  .feature-layout-reverse .phone-showcase {
    grid-row: 2;
  }

  .phone-showcase {
    width: min(88vw, 370px);
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 14px;
  }

  .screen-grid figure:nth-child(even) {
    margin-top: 42px;
  }

  .screen-grid .phone {
    border-width: 3px;
    border-radius: 18px;
  }

  .screen-grid .phone::before {
    top: 5px;
    height: 10px;
  }

  .choice-controls {
    grid-template-columns: 1fr;
  }

  .choice-button {
    min-height: 150px;
  }

  .fact-list div {
    grid-template-columns: 95px 1fr;
  }

  .download-inner {
    gap: 34px;
    min-height: 0;
  }

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

  .download-actions .store-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .closing-inner .store-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 32px;
  }

  .site-footer-legal {
    justify-content: flex-start;
  }

  .site-footer > p:last-child {
    grid-column: 1;
  }
}

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: #0a0d10;
  }
}
