﻿:root {
  --black: #050505;
  --ink: #171717;
  --muted: #74777b;
  --soft: #f4f5f6;
  --line: #e5e7eb;
  --white: #ffffff;
  --pink: #e89ba1;
  --violet: #b44ce0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: min(218px, 42vw);
  height: auto;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--black);
}

.language-toggle {
  display: flex;
  align-items: center;
}

.lang-select {
  min-width: 96px;
  height: 40px;
  padding: 0 38px 0 16px;
  color: var(--black);
  background-color: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  outline: 0;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #171717 50%),
    linear-gradient(135deg, #171717 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 17px,
    calc(100% - 14px) 17px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lang-select:hover {
  border-color: rgba(23, 23, 23, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.lang-select:focus-visible {
  border-color: rgba(23, 23, 23, 0.34);
  box-shadow:
    0 0 0 4px rgba(23, 23, 23, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.12);
}

.lang-select option {
  color: var(--black);
  background: var(--white);
}
.hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 72px) 30px;
  overflow: hidden;
  background: linear-gradient(
    #ffffff 0%,
    #ffffff 66%,
    #f4f5f6 66%,
    #f4f5f6 100%
  );
  text-align: center;
}

.hero-copy {
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: clamp(50px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 24px;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.story-copy p,
.contact-section p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-copy p:not(.eyebrow) {
  max-width: 860px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.black-button,
.text-link,
.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 850;
}

.black-button,
.app-button {
  padding: 0 28px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.text-link {
  color: var(--black);
  border-bottom: 2px solid var(--black);
  border-radius: 0;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 720px;
  margin-top: 18px;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: min(840px, 92vw);
  height: 300px;
  bottom: 44px;
  background: #ededed;
  border-radius: 50%;
  filter: blur(5px);
}

.phone {
  position: relative;
  width: min(378px, 86vw);
  padding: 0;
  background: #f4f4f4;
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-screen {
  min-height: 720px;
  padding: 18px 20px 34px;
  background: #f2f2f2;
  text-align: left;
}

.phone-screen-image {
  display: block;
  width: 100%;
  min-height: 720px;
  aspect-ratio: 378 / 720;
  object-fit: cover;
  background: #f2f2f2;
}

.ios-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  color: var(--black);
  font-size: 15px;
  font-weight: 850;
}

.ios-status strong {
  font-size: 18px;
}

.ios-status span {
  font-size: 13px;
  letter-spacing: 1px;
}

.back-row {
  margin-top: 10px;
  color: var(--black);
  font-size: 15px;
  font-weight: 650;
}

.back-row::first-letter {
  font-size: 36px;
  line-height: 0;
}

.app-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 340px;
  margin-top: 6px;
}

.torso {
  position: relative;
  width: 190px;
  height: 240px;
  background:
    radial-gradient(
      circle at 38% 40%,
      rgba(255, 255, 255, 0.65),
      transparent 24%
    ),
    radial-gradient(circle at 68% 42%, rgba(0, 0, 0, 0.18), transparent 28%),
    linear-gradient(112deg, #5d5d5d 0%, #d7d7d7 48%, #9c9c9c 100%);
  border-radius: 45% 45% 30% 34%;
  clip-path: polygon(
    26% 8%,
    73% 4%,
    92% 31%,
    84% 72%,
    97% 86%,
    17% 94%,
    8% 68%,
    13% 24%
  );
  box-shadow:
    inset 14px 0 28px rgba(0, 0, 0, 0.16),
    inset -18px 0 30px rgba(255, 255, 255, 0.38);
}

.torso::before,
.torso::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(70, 70, 70, 0.45);
  border-radius: 50%;
}

.torso::before {
  left: 60px;
  top: 76px;
}

.torso::after {
  right: 54px;
  top: 91px;
}

.neck,
.arm,
.waist {
  position: absolute;
  background: var(--pink);
}

.neck {
  top: 2px;
  left: 114px;
  width: 62px;
  height: 20px;
  border-radius: 50%;
}

.arm {
  right: -4px;
  top: 104px;
  width: 58px;
  height: 23px;
  border-radius: 50%;
}

.waist {
  right: 6px;
  bottom: 16px;
  width: 168px;
  height: 17px;
  transform: rotate(-4deg);
}

.strap,
.strap-alt {
  position: absolute;
  width: 4px;
  height: 190px;
  background: linear-gradient(#cf6df0, #8d3fd4);
  border-radius: 99px;
  box-shadow: 0 0 5px rgba(180, 76, 224, 0.6);
  transform-origin: top;
}

.strap {
  left: 74px;
  top: 28px;
  transform: rotate(-22deg);
  animation: strapGlow 2.6s ease-in-out infinite;
}

.strap-alt {
  left: 116px;
  top: 46px;
  height: 150px;
  transform: rotate(25deg);
  animation: strapGlow 2.6s ease-in-out infinite 0.35s;
}

.hanging-phone {
  position: absolute;
  left: 115px;
  top: 174px;
  width: 42px;
  height: 70px;
  background: #dfe5ee;
  border: 4px solid #34363a;
  border-radius: 10px;
  transform: rotate(-4deg);
}

.hanging-phone::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 7px;
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 33% 33%, #111 0 18%, transparent 19%),
    radial-gradient(circle at 70% 35%, #111 0 18%, transparent 19%),
    radial-gradient(circle at 50% 72%, #111 0 18%, transparent 19%), #b9c4d1;
  border-radius: 6px;
}

.login-title {
  margin: -2px 0 26px;
  text-align: center;
  font-size: 44px;
  line-height: 1;
}

.login-field {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  margin-bottom: 14px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 18px;
}

.field-icon {
  color: #777;
  font-size: 26px;
  font-weight: 700;
}

.login-field input {
  width: 100%;
  color: var(--black);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 650;
}

.login-field input::placeholder {
  color: #888;
}

.forgot-link {
  display: block;
  margin: 4px 0 28px;
  color: #6c6f73;
  text-align: right;
  font-size: 17px;
  font-weight: 800;
}

.app-button {
  width: 100%;
  min-height: 66px;
  cursor: pointer;
  font-size: 24px;
}

.register-line {
  margin: 28px 0 0;
  color: #6f7378;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
}

.register-line b {
  color: #161b25;
}

.mono-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  margin: clamp(24px, 5vw, 64px) clamp(18px, 5vw, 72px);
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 15% 12%,
      rgba(255, 255, 255, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(180, 76, 224, 0.36),
      transparent 34%
    ),
    #050505;
  border-radius: 36px;
}

.strip-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.strip-copy h2 {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
}

.strip-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 19px;
  line-height: 1.55;
}

.strip-list {
  display: grid;
  gap: 12px;
}

.strip-list article {
  display: grid;
  grid-template-columns: minmax(92px, 0.55fr) minmax(90px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.strip-list article:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(8px);
}

.strip-list span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-list strong {
  color: var(--white);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
}

.strip-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: clamp(84px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.audience-section {
  padding-top: clamp(76px, 9vw, 122px);
  background: var(--white);
}

.audience-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.audience-copy .eyebrow {
  margin-bottom: 0;
}

.audience-copy h2 {
  margin-bottom: 0;
  max-width: 860px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  /* background: var(--line); */
  border: 1px solid var(--line);
  border-radius: 30px;
}

.audience-card {
  min-height: 300px;
  padding: 28px;
  background: var(--soft);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.audience-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.audience-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 72px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.center-section {
  text-align: center;
}

.center-section > h2 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 56px auto 0;
}

.feature-row article {
  min-height: 300px;
  padding: 34px;
  background: var(--soft);
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 28px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: left;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-row article:hover {
  border-color: rgba(23, 23, 23, 0.22);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translateY(-4px);
}

.feature-row span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 70px;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 50%;
  font-weight: 900;
}

.feature-row p,
.steps p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  background: var(--soft);
}

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

.screens-copy {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.screens-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.screen-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.screen-showcase .mock-phone {
  animation: showcasePhoneFloat 6.4s ease-in-out infinite;
}

.screen-showcase .mock-phone:nth-child(2) {
  animation-delay: -2.1s;
}

.screen-showcase .mock-phone:nth-child(3) {
  animation-delay: -4.2s;
}

.mock-phone {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.mock-phone-frame {
  position: relative;
  width: min(270px, 100%);
  padding: 12px;
  background: #090909;
  border-radius: 42px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.mock-phone-main .mock-phone-frame {
  width: min(310px, 100%);
}

.phone-stage .mock-phone-frame {
  width: min(430px, 92vw);
  animation: heroPhoneFloat 5.6s ease-in-out infinite;
}

.mock-phone-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  border-radius: 31px;
}

.mock-phone:hover .mock-phone-frame {
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.24);
  transform: translateY(-8px);
}

.mock-phone h3 {
  margin: 10px 0 0;
}

.mock-phone p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.story-copy p {
  margin-left: 0;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: 28px;
}

.steps span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: #e8e8e8;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--black);
  font-weight: 750;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.contact-section p {
  margin-left: 0;
}

.qr-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.qr-card {
  display: grid;
  min-height: 460px;
  align-content: start;
  gap: 14px;
  padding: 26px;
  background: var(--soft);
  border-radius: 30px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.qr-card:hover {
  background: #f8f8f8;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.qr-card img {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 14px;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.qr-card:hover img {
  filter: contrast(1.08);
  transform: scale(1.025);
}

.qr-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.qr-card h3 {
  margin-bottom: 0;
  font-size: 34px;
}

.qr-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) auto auto;
  gap: 42px;
  padding: 52px clamp(18px, 5vw, 72px) 30px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--black);
}

.footer-brand img {
  display: block;
  width: min(230px, 56vw);
  height: auto;
  margin-bottom: 18px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  line-height: 1.55;
}

.footer-links,
.footer-store {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.footer-store span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-store strong {
  color: var(--white);
  font-size: 22px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.reveal-item {
  opacity: 0;
  border: 1px;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-item:nth-child(2) {
  --reveal-delay: 90ms;
}

.reveal-item:nth-child(3) {
  --reveal-delay: 180ms;
}

.feature-row .reveal-item:nth-child(2),
.steps .reveal-item:nth-child(2),
.qr-downloads .reveal-item:nth-child(2),
.mono-strip .reveal-item:nth-child(2) {
  --reveal-delay: 120ms;
}

.feature-row .reveal-item:nth-child(3),
.steps .reveal-item:nth-child(3),
.mono-strip .reveal-item:nth-child(3) {
  --reveal-delay: 240ms;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroPhoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(16px);
  }
}

@keyframes showcasePhoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes strapGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(180, 76, 224, 0.55);
    filter: saturate(1);
  }

  50% {
    box-shadow: 0 0 14px rgba(180, 76, 224, 0.9);
    filter: saturate(1.25);
  }
}

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

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

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 18px;
  }

  .phone-stage {
    min-height: 680px;
  }

  .mono-strip,
  .feature-row,
  .audience-copy,
  .audience-grid,
  .screen-showcase,
  .story-section,
  .contact-section,
  .qr-downloads {
    grid-template-columns: 1fr;
  }

  .mono-strip {
    margin-right: 18px;
    margin-left: 18px;
  }

  .feature-row article {
    min-height: auto;
    padding: 28px 24px;
  }

  .audience-card {
    min-height: auto;
  }

  .audience-card span {
    margin-bottom: 42px;
  }

  .mock-phone-main {
    order: -1;
  }

  .feature-row span {
    margin-bottom: 42px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
  }

  .brand img {
    width: 154px;
  }

  .lang-select {
    min-width: 82px;
    height: 34px;
    font-size: 13px;
  }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    font-size: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy p:not(.eyebrow),
  .story-copy p,
  .contact-section p {
    font-size: 18px;
  }

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

  .feature-row {
    gap: 14px;
    margin-top: 34px;
  }

  .feature-row article {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .feature-row span {
    margin-bottom: 24px;
  }

  .phone-stage {
    min-height: 650px;
  }

  .phone-stage .mock-phone-frame {
    width: min(380px, 94vw);
  }

  .phone {
    width: min(350px, 92vw);
  }

  .phone-screen {
    min-height: 668px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .phone-screen-image {
    min-height: 668px;
  }

  .app-art {
    height: 292px;
  }

  .torso {
    transform: scale(0.88);
  }

  .login-title {
    font-size: 40px;
  }

  .login-field {
    min-height: 68px;
  }

  .app-button {
    min-height: 62px;
  }

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

  .strip-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .qr-card {
    min-height: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
