:root {
  --ink: #11120f;
  --paper: #f2eee2;
  --white: #fffdf7;
  --green: #38c78f;
  --green-dark: #0e8d62;
  --coral: #ff5b42;
  --blue: #294cff;
  --yellow: #f6df3b;
  --muted: #66675f;
  --line: rgba(17, 18, 15, 0.2);
  --page-pad: clamp(20px, 5vw, 72px);
  --max-width: 1480px;
  --shadow: 10px 10px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 96px,
    var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  content: "";
  pointer-events: none;
}

body::before {
  top: 94px;
  left: 12px;
}

body::after {
  right: 12px;
  bottom: 28px;
}

img,
svg {
  display: block;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 226, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  height: 84px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--ink);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-word {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 19px !important;
  background: var(--green);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--ink);
  background: transparent;
}

.menu-button svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.mobile-nav {
  padding: 0 var(--page-pad) 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 900;
}

.hero,
.feature-section,
.experience-section,
.manifesto-section,
.download-section,
.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero {
  padding-top: clamp(48px, 7vw, 105px);
  padding-bottom: 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(500px, 1.13fr);
  gap: clamp(40px, 6vw, 104px);
  align-items: center;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 27px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.eyebrow span {
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 7.4vw, 116px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: #484a43;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
}

.button-primary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-width: 260px;
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--green);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 9px 9px 0 var(--green);
}

.button-primary span {
  display: grid;
  gap: 2px;
  font-size: 16px;
  text-align: left;
}

.button-primary small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.button-primary .button-arrow {
  width: 18px;
}

.button-secondary {
  background: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual > img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.poster-label {
  position: absolute;
  z-index: 3;
  top: -20px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.poster-label span:first-child {
  font-size: 15px;
  font-weight: 900;
}

.poster-note {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
}

.poster-note span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.poster-note strong {
  font-size: 18px;
}

.poster-note svg {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 24px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 190px)) 1fr;
  margin-top: 86px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-strip > div {
  display: grid;
  gap: 3px;
  padding: 20px 24px;
  border-right: 1px solid var(--ink);
}

.hero-strip > div:first-child {
  padding-left: 0;
}

.hero-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1;
}

.hero-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-strip p {
  align-self: center;
  justify-self: end;
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
  text-align: right;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(52px, 9vw, 150px);
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(110px, 14vw, 180px);
}

.section-number {
  margin: 0 0 24px;
  color: var(--green-dark);
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-heading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.section-heading h2,
.experience-copy h2,
.download-copy h2 {
  margin: 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(45px, 5.4vw, 86px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-heading > p:last-child,
.experience-copy > p,
.download-copy > p {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--ink);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 9px 26px;
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--ink);
}

.feature-count {
  position: absolute;
  top: 18px;
  right: 0;
  font-family: Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.feature-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid var(--ink);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-coral .feature-icon {
  background: var(--coral);
}

.feature-green .feature-icon {
  background: var(--green);
}

.feature-blue .feature-icon {
  background: var(--blue);
  color: white;
}

.feature-card h3 {
  align-self: end;
  margin: 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.045em;
}

.feature-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
  background: var(--blue);
  color: var(--white);
}

.experience-section .section-number {
  color: var(--yellow);
}

.experience-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.flow-list {
  display: grid;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.flow-list > li > span {
  color: var(--yellow);
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.flow-list strong {
  font-size: 19px;
}

.flow-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.phone-stage {
  position: relative;
  min-height: 690px;
}

.stage-shape {
  position: absolute;
  top: 42px;
  right: 4%;
  width: 82%;
  height: 76%;
  background: var(--coral);
  border: 1px solid var(--ink);
  transform: rotate(5deg);
}

.stage-shape::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 44%;
  height: 44%;
  background: var(--yellow);
  border: 1px solid var(--ink);
  content: "";
}

.phone {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(390px, 76%);
  min-height: 660px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 44px;
  box-shadow: 12px 12px 0 var(--ink);
  color: var(--ink);
  transform: translateX(-50%);
}

.phone-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 5px 8px 18px;
}

.phone-top img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  object-fit: cover;
}

.phone-top div {
  display: grid;
  gap: 2px;
}

.phone-top span,
.phone-top strong {
  font-size: 12px;
}

.phone-top span {
  color: var(--muted);
  font-weight: 700;
}

.phone-top strong {
  font-size: 18px;
  font-weight: 900;
}

.phone-top svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.phone-feature {
  position: relative;
  min-height: 262px;
  padding: 22px;
  background: var(--green);
  border: 1px solid var(--ink);
  overflow: hidden;
}

.phone-feature > span {
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.phone-feature > strong {
  display: block;
  margin-top: 7px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.phone-feature button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.phone-feature button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.product-shape {
  position: absolute;
  background: var(--ink);
}

.product-jacket {
  right: 44px;
  bottom: 20px;
  width: 146px;
  height: 172px;
  clip-path: polygon(30% 0, 70% 0, 82% 18%, 100% 28%, 86% 54%, 75% 46%, 79% 100%, 21% 100%, 25% 46%, 14% 54%, 0 28%, 18% 18%);
}

.product-shoe {
  right: 16%;
  bottom: 17px;
  width: 100px;
  height: 42px;
  background: var(--coral);
  border: 1px solid var(--ink);
  border-radius: 50% 46% 18% 25%;
}

.product-bag {
  right: 26%;
  bottom: 19px;
  width: 72px;
  height: 82px;
  background: var(--yellow);
  border: 1px solid var(--ink);
}

.product-bag::before {
  position: absolute;
  top: -24px;
  left: 19px;
  width: 30px;
  height: 30px;
  border: 7px solid var(--ink);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  content: "";
}

.phone-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.phone-products > div {
  position: relative;
  min-height: 150px;
  padding: 12px;
  background: #e9e4d6;
  border: 1px solid var(--ink);
  overflow: hidden;
}

.phone-products span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 11px;
  font-weight: 800;
}

.phone-products strong {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 12px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.phone-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 15px 17px;
  background: var(--ink);
  color: var(--white);
}

.phone-progress div {
  display: grid;
  gap: 3px;
}

.phone-progress span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.phone-progress strong {
  font-size: 14px;
}

.phone-progress svg {
  width: 22px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.stage-tag {
  position: absolute;
  z-index: 4;
  padding: 11px 14px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.stage-tag-a {
  top: 24%;
  left: 0;
}

.stage-tag-b {
  right: 0;
  bottom: 15%;
  background: var(--white);
}

.manifesto-section {
  padding-top: clamp(100px, 13vw, 190px);
  padding-bottom: clamp(100px, 13vw, 190px);
  background: var(--yellow);
  overflow: hidden;
}

.manifesto-section > p {
  margin: 0 0 24px;
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.manifesto-section h2 {
  margin: 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(56px, 9vw, 148px);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.manifesto-tags span {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.download-section {
  display: grid;
  grid-template-columns: 1fr minmax(430px, 0.85fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: end;
  padding-top: clamp(110px, 14vw, 180px);
  padding-bottom: clamp(110px, 14vw, 170px);
}

.download-panel {
  padding: 34px;
  background: var(--green);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.download-app {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17, 18, 15, 0.38);
}

.download-app img {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  object-fit: cover;
}

.download-app div {
  display: grid;
  gap: 6px;
}

.download-app strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 29px;
  letter-spacing: -0.05em;
}

.download-app span {
  font-size: 12px;
  font-weight: 800;
}

.store-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 28px;
}

.store-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  min-height: 66px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.store-button svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.store-button span {
  display: grid;
  gap: 2px;
  font-size: 15px;
  font-weight: 900;
}

.store-button small {
  font-size: 8px;
  letter-spacing: 0.08em;
}

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

.store-dark small {
  color: rgba(255, 255, 255, 0.62);
}

.store-light {
  background: var(--white);
}

.store-note {
  margin: 20px 0 0;
  font-size: 11px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--ink);
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.site-footer > div:first-child > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mobile-download-bar {
  display: none;
}

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

@media (max-width: 1140px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(54px, 7.2vw, 86px);
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-strip p {
    display: none;
  }

  .hero-strip > div:nth-child(3) {
    border-right: 0;
  }
}

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

  .menu-button {
    display: block;
  }

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

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

  .hero h1 {
    font-size: clamp(66px, 12.5vw, 112px);
  }

  .hero-visual {
    width: min(100%, 790px);
    margin-left: auto;
  }

  .hero-strip {
    margin-top: 76px;
  }

  .feature-section,
  .experience-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

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

  .download-panel {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 20px;
    --shadow: 7px 7px 0 var(--ink);
  }

  body {
    background-size: 100% 72px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  body::before,
  body::after {
    display: none;
  }

  .nav-shell {
    height: 72px;
  }

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

  .brand-word {
    font-size: 22px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 27px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 72px);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .button-primary {
    min-width: 0;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 26px;
    font-size: 10px;
  }

  .trust-list li:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    width: calc(100% - 7px);
    margin-top: 20px;
  }

  .poster-label {
    top: -14px;
    right: 14px;
  }

  .poster-note {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px 13px;
  }

  .poster-note strong {
    font-size: 15px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
  }

  .hero-strip > div {
    padding: 16px 10px;
  }

  .hero-strip > div:first-child {
    padding-left: 0;
  }

  .hero-strip strong {
    font-size: 25px;
  }

  .hero-strip span {
    font-size: 9px;
  }

  .feature-section {
    gap: 50px;
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section-heading h2,
  .experience-copy h2,
  .download-copy h2 {
    font-size: clamp(43px, 13.6vw, 62px);
  }

  .section-heading > p:last-child,
  .experience-copy > p,
  .download-copy > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .feature-card {
    grid-template-columns: 56px 1fr;
    gap: 6px 18px;
    padding: 28px 0 30px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
  }

  .feature-icon svg {
    width: 25px;
  }

  .feature-card h3 {
    font-size: 27px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .experience-section {
    gap: 62px;
    padding-top: 92px;
    padding-bottom: 96px;
  }

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

  .phone {
    width: min(340px, 88%);
    min-height: 550px;
    padding: 14px;
    border-radius: 36px;
  }

  .phone-feature {
    min-height: 220px;
    padding: 18px;
  }

  .phone-feature > strong {
    font-size: 25px;
  }

  .product-jacket {
    right: 26px;
    width: 120px;
    height: 145px;
  }

  .phone-products > div {
    min-height: 126px;
  }

  .stage-tag-a {
    top: 17%;
    left: -4px;
  }

  .stage-tag-b {
    right: -4px;
    bottom: 11%;
  }

  .manifesto-section {
    padding-top: 94px;
    padding-bottom: 100px;
  }

  .manifesto-section h2 {
    font-size: clamp(50px, 16vw, 76px);
  }

  .manifesto-tags {
    margin-top: 36px;
  }

  .download-section {
    gap: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .download-panel {
    width: calc(100% - 7px);
    padding: 24px;
  }

  .download-app img {
    width: 64px;
    height: 64px;
  }

  .download-app strong {
    font-size: 25px;
  }

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

  .site-footer {
    display: grid;
    align-items: start;
    gap: 32px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .footer-links {
    gap: 18px;
  }

  .mobile-download-bar {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 10px 16px;
    background: var(--ink);
    border: 1px solid var(--ink);
    box-shadow: 5px 5px 0 var(--green);
    color: var(--white);
  }

  .mobile-download-bar span {
    display: grid;
    gap: 2px;
    font-size: 16px;
    font-weight: 900;
  }

  .mobile-download-bar small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .mobile-download-bar svg {
    width: 24px;
    fill: none;
    stroke: var(--green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }
}

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

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