@font-face {
  font-family: "Helsinki";
  src: url("./helsinki.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #090707;
  --paper: #fff4d6;
  --paper-soft: #fff9e8;
  --red: #d61d18;
  --blue: #1172d6;
  --yellow: #ffd51d;
  --green: #36b535;
  --purple: #7d36d6;
  --shadow: #050505;
  --text: #1e1714;
  --muted: #66574f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper-soft);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16px 16px, rgba(5, 5, 5, 0.1) 0 2px, transparent 2px 100%),
    var(--paper-soft);
  background-size: 26px 26px;
  opacity: 0.28;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 4px solid var(--ink);
  background: rgba(255, 244, 214, 0.96);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Helsinki", Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.brand > .brand-icon {
  display: block;
  flex: 0 0 44px;
  width: 44px;
  max-width: 44px;
  height: 44px;
  max-height: 44px;
  object-fit: cover;
  border-radius: 13px;
}

.brand > .brand-wordmark {
  display: block;
  flex: 0 1 148px;
  width: auto;
  max-width: min(148px, 40vw);
  height: 34px;
  max-height: 34px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 rgba(5, 5, 5, 0.28));
}

.site-header .brand {
  gap: 0px;
}

.site-header .brand > .brand-wordmark {
  flex-basis: 190px;
  max-width: min(190px, 44vw);
  height: 44px;
  max-height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 12px;
  border: 3px solid transparent;
  border-radius: 8px;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  border-color: var(--ink);
  background: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 7px 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fffdf4;
  box-shadow: 3px 4px 0 var(--shadow);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.store-button:hover {
  transform: translateY(-1px);
  box-shadow: 4px 5px 0 var(--shadow);
}

.store-button:active {
  transform: translateY(2px);
  box-shadow: 1px 2px 0 var(--shadow);
}

.store-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.store-button small {
  display: block;
  font-size: 0.62rem;
  line-height: 1;
  opacity: 0.86;
}

.store-button span {
  display: block;
  line-height: 1.04;
}

.store-button.disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.52;
  pointer-events: none;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.store-badge:active {
  transform: translateY(1px);
}

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

.apple-store-badge img {
  width: 136px;
}

.store-badge.disabled,
.store-badge.disabled:hover,
.store-badge.disabled:active {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.52;
  pointer-events: none;
  transform: none;
}

.store-badge:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  background: var(--red);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(116, 0, 0, 0.55), rgba(116, 0, 0, 0.06) 54%, rgba(116, 0, 0, 0.2)),
    url("./hero-pop-art-bg.png");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
  max-width: min(1320px, calc(100vw - 44px));
  min-height: 700px;
  margin: 0 auto;
  padding: 64px 22px 84px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  color: #fffdf4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 5px 0 var(--shadow);
  font-family: "Helsinki", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Helsinki", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 620px;
  color: #fffdf4;
  font-size: clamp(4.8rem, 13vw, 9.6rem);
  text-shadow:
    5px 5px 0 var(--ink),
    9px 9px 0 rgba(5, 5, 5, 0.35);
}

.hero-logo-title {
  width: min(760px, 100%);
  max-width: none;
  overflow: visible;
  color: transparent;
  font-size: 0;
  line-height: 1;
  text-shadow: none;
}

.hero-logo-title img {
  width: 139.8%;
  max-width: none;
  height: auto;
  transform: translateX(-14.15%);
  filter:
    drop-shadow(5px 5px 0 var(--ink))
    drop-shadow(4px 4px 0 rgba(5, 5, 5, 0.35));
}

.hero-copy p {
  max-width: 560px;
  margin: clamp(12px, 2vw, 20px) 0 0;
  color: #fff8d8;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-shadow: 2px 2px 0 rgba(5, 5, 5, 0.72);
}

.hero-level-path {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 560px;
  margin-top: 24px;
}

.hero-level-path::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  height: 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 4px 0 rgba(5, 5, 5, 0.55);
}

.hero-level-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  flex: 1 1 0;
  gap: 8px;
  min-width: 0;
  color: #fffdf4;
  font-family: "Helsinki", Arial, sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 0.95;
  text-align: center;
  text-shadow: 2px 2px 0 var(--ink);
}

.hero-level-node {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 5px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 5px 0 rgba(5, 5, 5, 0.6);
  text-shadow: none;
}

.hero-level-step:nth-child(2) .hero-level-node {
  background: var(--green);
}

.hero-level-step:nth-child(3) .hero-level-node {
  background: #fffdf4;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions .store-badge img {
  width: 184px;
}

.hero-actions .apple-store-badge img {
  width: 160px;
}

.hero-note {
  margin-top: 18px;
  color: #fff2bd;
  font-size: 0.95rem;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  min-height: 640px;
  transform: translateX(clamp(18px, 4vw, 72px));
}

.phone-sticker {
  position: absolute;
  z-index: 1;
  width: 130px;
  filter: drop-shadow(6px 8px 0 rgba(5, 5, 5, 0.45));
}

.phone-sticker.node {
  top: 8px;
  left: 0;
  transform: rotate(-10deg);
}

.phone-sticker.atom {
  right: 0;
  bottom: 42px;
  transform: rotate(11deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(365px, 88vw);
  margin: 0 auto;
  padding: 14px;
  border: 7px solid var(--ink);
  border-radius: 38px;
  background: #14100e;
  box-shadow: 14px 18px 0 rgba(5, 5, 5, 0.5);
  transform: rotate(3deg);
}

.phone-screen {
  min-height: 604px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16px 16px, rgba(5, 5, 5, 0.18) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, #1478d7 0%, #0e5eb0 54%, #0b3d78 100%);
  background-size: 18px 18px, auto;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px 10px;
  color: #fffdf4;
}

.phone-title {
  font-family: "Helsinki", Arial, sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  text-shadow: 3px 3px 0 var(--ink);
}

.bolt {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Helsinki", Arial, sans-serif;
}

.phone-panel {
  margin: 9px 12px;
  padding: 12px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 4px 5px 0 var(--shadow);
}

.phone-panel.dark {
  background: #116bd0;
  color: #fffdf4;
}

.phone-panel h3 {
  font-size: 1.3rem;
  text-shadow: 2px 2px 0 var(--ink);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.mini-card {
  min-height: 76px;
  padding: 8px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-card:nth-child(2) {
  background: #44b945;
}

.mini-card:nth-child(3) {
  background: #9251dc;
  color: #fffdf4;
}

.tree-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 14px;
  padding: 16px 4px 10px;
}

.node-dot {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--shadow);
  font-family: "Helsinki", Arial, sans-serif;
  font-size: 0.78rem;
  text-align: center;
}

.node-dot.done {
  background: var(--green);
}

.node-dot.locked {
  background: #d5d3cf;
  color: #5b5750;
}

.phone-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 12px 14px;
}

.phone-button {
  padding: 10px 4px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  font-family: "Helsinki", Arial, sans-serif;
  font-size: 0.75rem;
  text-align: center;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.section-kicker {
  margin: 0 0 10px;
  font-family: "Helsinki", Arial, sans-serif;
  color: var(--red);
  letter-spacing: 0;
}

.section h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  text-shadow: 3px 3px 0 #ffffff;
}

.section-lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 42px;
}

.feature-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 8px 0 var(--shadow);
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  background: #cbe8ff;
}

.feature-card:nth-child(3) {
  background: #d8f2c8;
}

.feature-card:nth-child(4) {
  background: #ffe5aa;
}

.feature-card:nth-child(1) {
  grid-row: span 2;
}

.feature-card img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(4px 5px 0 rgba(5, 5, 5, 0.25));
}

.feature-card h3 {
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.feature-card p {
  max-width: 480px;
  margin: 12px 0 0;
  color: #332a25;
  font-size: 1.02rem;
  font-weight: 700;
}

.life-strip {
  border-block: 5px solid var(--ink);
  background: #11100f;
  color: #fffdf4;
}

.life-strip .section {
  padding-block: 48px;
}

.life-strip h2 {
  color: #fffdf4;
  text-shadow: 4px 4px 0 #4b4b4b;
}

.life-tags {
  --life-tag-gap: 12px;
  display: flex;
  gap: var(--life-tag-gap);
  overflow: hidden;
  margin-top: 26px;
  padding: 4px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.life-tags-track {
  display: flex;
  flex: 0 0 max-content;
  gap: var(--life-tag-gap);
  min-width: max-content;
  animation: life-tags-marquee 28s linear infinite;
  will-change: transform;
}

.life-tags:hover .life-tags-track {
  animation-play-state: paused;
}

.life-tags span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 4px 0 #ffffff;
  font-family: "Helsinki", Arial, sans-serif;
  letter-spacing: 0;
}

@keyframes life-tags-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--life-tag-gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .life-tags {
    flex-wrap: wrap;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .life-tags-track {
    flex-wrap: wrap;
    min-width: 0;
    animation: none;
  }

  .life-tags-track[aria-hidden="true"] {
    display: none;
  }
}

.story-band {
  background: var(--blue);
  border-block: 5px solid var(--ink);
  color: #fffdf4;
}

.story-band h2 {
  color: #fffdf4;
  text-shadow: 4px 4px 0 var(--ink);
}

.story-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 7px 8px 0 var(--shadow);
}

.story-card img {
  width: min(260px, 70vw);
  margin: 0 auto;
}

.story-card h3 {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.story-card p {
  margin: 14px 0 0;
  color: #473a32;
  font-weight: 700;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--red);
  color: #fffdf4;
  box-shadow: 8px 9px 0 var(--shadow);
}

.cta-panel h2 {
  color: #fffdf4;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  text-shadow: 4px 4px 0 var(--ink);
}

.cta-panel p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #fff2cf;
  font-weight: 800;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-self: end;
  width: 184px;
  min-width: 184px;
}

.cta-actions .store-button {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.cta-actions .store-badge {
  justify-content: center;
  width: 100%;
}

.cta-actions .store-badge img {
  width: 184px;
}

.cta-actions .apple-store-badge img {
  width: 160px;
}

.page-hero {
  border-bottom: 5px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(116, 0, 0, 0.72), rgba(116, 0, 0, 0.2)),
    url("./hero-pop-art-bg.png");
  background-position: center;
  background-size: cover;
  color: #fffdf4;
}

.page-hero .section {
  padding-block: 82px;
}

.page-hero h1 {
  font-size: clamp(3.6rem, 11vw, 7.4rem);
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #fff3cb;
  font-size: 1.18rem;
  font-weight: 800;
  text-shadow: 2px 2px 0 var(--ink);
}

.article-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.article-card,
.legal-card,
.blog-article {
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 8px 0 var(--shadow);
}

.article-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.article-card img {
  width: 140px;
  margin: auto;
}

.article-card h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

.article-card p,
.blog-article p,
.blog-article li,
.legal-card p,
.legal-card li {
  color: #463932;
  font-size: 1.06rem;
  font-weight: 700;
}

.article-card .meta,
.blog-article .meta {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Helsinki", Arial, sans-serif;
  letter-spacing: 0;
}

.blog-article {
  padding: clamp(24px, 5vw, 46px);
}

.blog-article h2 {
  margin-top: 40px;
  font-size: clamp(1.7rem, 5vw, 2.9rem);
}

.blog-article p {
  max-width: 760px;
}

.legal-card {
  padding: clamp(24px, 5vw, 44px);
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card ul {
  padding-left: 1.35rem;
}

.legal-card li + li {
  margin-top: 8px;
}

.site-footer {
  border-top: 5px solid var(--ink);
  background: #11100f;
  color: #fffdf4;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 22px;
}

.footer-copyright {
  margin: 0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
  }

  .hero-inner,
  .feature-grid,
  .story-card,
  .cta-panel,
  .article-card {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 54px 72px;
  }

  .cta-actions {
    justify-self: start;
  }

  .phone-stage {
    min-height: 600px;
    transform: none;
  }

  .feature-card:nth-child(1) {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    justify-content: center;
    gap: 10px;
    padding-inline: 18px;
  }

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

  .brand > .brand-icon {
    flex-basis: 40px;
    width: 40px;
    max-width: 40px;
    height: 40px;
    max-height: 40px;
  }

  .site-header .brand > .brand-wordmark {
    flex-basis: 150px;
    max-width: min(150px, 48vw);
    height: 34px;
    max-height: 34px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    padding: 8px 7px;
    font-size: 0.92rem;
  }

  .nav-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-header .nav-actions {
    display: none;
  }

  .store-button {
    flex: 0 0 auto;
    justify-content: center;
    width: 100%;
  }

  .store-badge {
    width: 100%;
  }

  .store-badge img,
  .hero-actions .store-badge img,
  .cta-actions .store-badge img {
    width: min(220px, 100%);
  }

  .apple-store-badge img,
  .hero-actions .apple-store-badge img,
  .cta-actions .apple-store-badge img {
    width: min(192px, 100%);
  }

  h1 {
    font-size: clamp(4.2rem, 25vw, 6.8rem);
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    row-gap: 18px;
    overflow: hidden;
  }

  .hero-copy {
    display: contents;
    width: 100%;
    max-width: 100%;
    --mobile-hero-copy-width: min(320px, calc(100vw - 70px));
  }

  .hero-logo-title {
    order: 1;
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin: 0 auto;
    overflow: visible;
  }

  .hero-logo-title img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .hero-copy p {
    order: 3;
    width: var(--mobile-hero-copy-width);
    max-width: var(--mobile-hero-copy-width);
    margin-right: auto;
    margin-left: auto;
    font-size: 1.08rem;
    text-align: center;
  }

  .hero-level-path {
    order: 5;
    gap: 6px;
    width: var(--mobile-hero-copy-width);
    max-width: var(--mobile-hero-copy-width);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-level-path::before {
    left: 28px;
    right: 28px;
  }

  .hero-level-node {
    width: 54px;
    height: 54px;
    border-width: 4px;
  }

  .hero-note {
    order: 6;
    width: var(--mobile-hero-copy-width);
    max-width: var(--mobile-hero-copy-width);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-actions {
    order: 4;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    width: min(334px, calc(100vw - 44px));
    max-width: min(334px, calc(100vw - 44px));
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions .store-badge,
  .hero-actions .store-button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .hero-actions .store-badge img {
    width: min(160px, 100%);
  }

  .hero-actions .apple-store-badge img {
    width: min(142px, 100%);
  }

  .hero-actions .store-button {
    gap: 6px;
    padding: 6px 8px;
  }

  .hero-actions .store-button img {
    width: 22px;
    height: 22px;
  }

  .hero-actions .store-button span {
    font-size: 0.8rem;
  }

  .hero-actions .store-button small {
    font-size: 0.54rem;
  }

  .phone-stage {
    order: 2;
    min-height: auto;
    width: 100%;
    margin: -4px auto 0;
  }

  .phone {
    width: min(248px, 72vw);
    padding: 8px;
    border-width: 5px;
    border-radius: 28px;
    box-shadow: 9px 12px 0 rgba(5, 5, 5, 0.5);
    transform: none;
  }

  .phone-screen {
    min-height: 342px;
    border-width: 3px;
    border-radius: 21px;
  }

  .phone-top {
    padding: 10px 9px 6px;
  }

  .phone-title {
    font-size: 1.45rem;
  }

  .bolt {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 0.78rem;
  }

  .phone-panel {
    margin: 6px 8px;
    padding: 8px;
    border-width: 3px;
    box-shadow: 3px 3px 0 var(--shadow);
  }

  .phone-panel h3 {
    font-size: 0.98rem;
  }

  .mini-cards {
    gap: 5px;
    margin-top: 6px;
  }

  .mini-card {
    min-height: 54px;
    padding: 5px;
    border-width: 2px;
    font-size: 0.55rem;
  }

  .tree-map {
    gap: 10px 7px;
    padding: 8px 2px 5px;
  }

  .node-dot {
    min-height: 44px;
    border-width: 3px;
    box-shadow: 2px 2px 0 var(--shadow);
    font-size: 0.58rem;
  }

  .phone-bottom {
    gap: 5px;
    padding: 6px 8px 9px;
  }

  .phone-button {
    padding: 7px 3px;
    border-width: 2px;
    font-size: 0.55rem;
  }

  .phone-sticker {
    width: 78px;
  }

  .phone-sticker.node {
    top: 14px;
    left: calc(50% - 168px);
  }

  .phone-sticker.atom {
    right: calc(50% - 168px);
    bottom: 16px;
  }

  .section {
    padding-block: 58px;
  }

  .feature-card,
  .story-card,
  .cta-panel,
  .article-card,
  .legal-card,
  .blog-article {
    padding: 22px;
    box-shadow: 5px 6px 0 var(--shadow);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
