:root {
  --bg: #020202;
  --bg-soft: #0c0d10;
  --text: #efefef;
  --muted: #c2c2c2;
  --line: #232323;
  --accent: #ff742e;
  --accent-2: #f04a00;
  --surface: linear-gradient(180deg, #3d3d40 0%, #1a1b1e 55%, #08090b 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 20% -20%, #2b2c30 0%, transparent 60%),
    radial-gradient(900px 500px at 80% 0%, #1b1d21 0%, transparent 65%),
    linear-gradient(180deg, #202228 0%, #0a0b0f 52%, #000000 100%);
  z-index: -2;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgb(2 2 2 / 95%), rgb(2 2 2 / 50%));
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 4px 16px rgb(0 0 0 / 20%);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), opacity 240ms ease;
  transform-origin: center;
  will-change: transform, opacity;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: inline-flex;
  gap: 2rem;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #fff;
}

.nav-links a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
}

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

.button.solid {
  color: #111;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 14px 32px rgb(245 89 5 / 25%);
}

.button.solid:hover {
  box-shadow: 
    0 14px 32px rgb(245 89 5 / 35%),
    0 0 20px rgb(255 116 46 / 40%);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 3%);
  backdrop-filter: blur(12px);
}

.button.ghost:hover {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 0 20px rgb(255 255 255 / 10%);
}

.nav-links .button.ghost {
  display: none;
}

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button.desktop-only {
  display: inline-flex;
}

.hero-wrapper{
background: linear-gradient( #000000  0%,  #021c2d 40%, #000 100%);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  width: 100vw;

   /* background: linear-gradient(#000000 0%, #471f09 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%); */
}
.hero {
  text-align: left;
  padding-top: 7rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: center;
  
}

.hero .hero-visual[data-scroll-speed],
.hero .hero-content[data-scroll-speed] {
  transform: none;
}

.hero-content {
  max-width: 520px;
}

.award {
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d6dae0;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  color: #c9c9c9;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.97;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.15rem, 6.5vw, 4.9rem);
  max-width: 46ch;
  margin-inline: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 34ch;
  font-size: clamp(2rem, 5vw, 4rem);
}

.subhero h1 {
  margin-inline: auto;
  max-width: 40ch;
}

.subhero-heading {
  max-width: 22ch;
}

.hero-copy {
  max-width: 68ch;
  margin: 1.4rem auto 0;
  color: #c8c8c8;
  line-height: 1.6;
}

.store-row {
  margin-top: 1.9rem;
  margin-left: -10px;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hero-app-store-badge {
  width: 170px;
  min-width: 150px;
  height: 52px;
  min-height: 52px;
}

.store-badge {
  min-width: 132px;
  min-height: 43px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 22%);
  background: linear-gradient(180deg, #101115 0%, #08090b 100%);
  color: #fff;
  text-decoration: none;
  padding: 0.38rem 0.62rem 0.34rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgb(255 255 255 / 38%);
  box-shadow: 0 8px 20px rgb(255 116 46 / 20%);
}

.store-small {
  font-size: 0.55rem;
  line-height: 1;
  color: #c8c8c8;
}

.store-name {
  margin-top: 0.16rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.08;
}

.hero-visual {
  margin-top: 0;
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}

.device-frame {
  width: min(310px, 76vw);
  aspect-ratio: 9 / 19;
  border-radius: 28px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: #030303;
  position: absolute;
  overflow: hidden;
  box-shadow: 
    0 40px 80px rgb(0 0 0 / 56%),
    inset 0 1px 0 rgb(255 255 255 / 8%),
    0 0 40px rgb(255 116 46 / 15%);
}

.device-frame.back {
  transform: translateX(38px) rotate(-7deg) translateY(26px);
  opacity: 0.72;
}

.device-frame.front {
  transform: translateX(-38px) rotate(7deg);
  z-index: 2;
}

.screen-gradient {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-front.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.screen-gradient.alt {
  background-image: url("assets/hero-back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.camera-ui {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgb(255 255 255 / 10%) 0 18%, transparent 22%),
    linear-gradient(to top, rgb(0 0 0 / 90%) 0 24%, transparent 24% 100%);
}

.hero-visual .camera-ui,
.story-device .camera-ui {
  display: none;
}

.story {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: 4rem;
  align-items: start;
}

.story-phone-wrap {
  position: relative;
  min-height: 100%;
}

.story-phone {
  position: sticky;
  top: 16vh;
  min-height: 54vh;
  display: grid;
  place-items: center;
}

.story-device {
  width: min(290px, 65vw);
  position: relative;
}

.story-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story-screen.active {
  opacity: 1;
}

.state-1 {
  background-image: url("assets/step-1.png");
}

.state-2 {
  background-image: url("assets/step-2.png");
}

.state-3 {
  background-image: url("assets/step-3.png");
}

.story-steps {
  display: grid;
  gap: 12vh;
}

.story-step {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-image {
  display: none;
  margin-top: 0.8rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
}

.step-image img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.label {
  margin: 0;
  color: #c8c8c8;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
}

.story-step h2 {
  margin-top: 1.1rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  max-width: 14ch;
}

.story-step p {
  color: #c7c7c7;
  margin-top: 0.85rem;
  line-height: 1.58;
  max-width: 34ch;
}

.split {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 12ch;
}

.split-copy p {
  color: #c8c8c8;
  line-height: 1.64;
}

.stacked-panels {
  min-height: 420px;
  position: relative;
}



.panel {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: var(--surface);
  background-size: cover;       /* Makes the image fill the entire panel */
  background-position: center;  /* Centers the image within the panel */
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel:hover {
  transform: translateY(-4px) !important;
}

.p1 {
  transform: rotate(-11deg) translateX(-18px);
  background-image: url(/assets/anthony-maw-GWRuNS8Y0KM-unsplash.jpg);
  width: 100%;
  object-fit: fill;
}

.p2 {
  transform: rotate(-2deg) translateY(18px);
    background-image: url(/assets/kyle-thacker-6ifWgyH5tuc-unsplash.jpg);
  object-fit: fill;

}

.p3 {
  transform: rotate(9deg) translateX(18px) translateY(14px);
    background-image: url(/assets/lee-robinson-Yc9h5SJdEzI-unsplash.jpg);
  object-fit: fill;

  /* background: linear-gradient(180deg, #0f1012 0%, #0b0d12 45%, #ff742e 100%); */
}

.cta {
  margin-top: 8rem;
  margin-bottom: 3rem;
  text-align: center;
  padding: 4rem 1.4rem 0;
  overflow: hidden;
}

.cta-icon {
  width: 72px;
  height: 72px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cta h2 {
  margin-top: 1.35rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 16ch;
  margin-inline: auto;
  line-height: 1.05;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-badges {
  position: relative;
  z-index: 5;
  margin-top: 2.4rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-store-badge {
  width: 190px;
  min-width: 150px;
  height: 55px;
  min-height: 55px;
  object-fit: contain;
  display: block;
}

.cta-phones {
  margin: 9rem auto -40px;
  width: min(760px, 100%);
  min-height: 430px;
  position: relative;
}

.cta-phone {
  width: min(246px, 34vw);
  aspect-ratio: 9 / 19;
  position: absolute;
  bottom: 0;
  border-radius: 20px;
  border: 1px solid rgb(255 255 255 / 28%);
  background: #060708;
  overflow: hidden;
  box-shadow: 
    0 28px 70px rgb(0 0 0 / 62%),
    inset 0 1px 0 rgb(255 255 255 / 8%),
    0 0 40px rgb(255 116 46 / 12%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-screen {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-center {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.cta-left {
  left: 14%;
  transform: translateY(46px);
  z-index: 2;
}

.cta-right {
  right: 14%;
  transform: translateY(60px);
  z-index: 1;
}

.cta-screen-center {
  background-image: url("assets/cta-center.png");
}

.cta-screen-left {
  background-image: url("assets/cta-left.png");
}

.cta-screen-right {
  background-image: url("assets/cta-right.png");
}

.subhero {
  padding-top: 6.2rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.subhero-copy {
  max-width: 60ch;
  margin: 1.1rem auto 0;
  color: #c6c6c6;
  line-height: 1.6;
}

.updates-list {
  padding-bottom: 4rem;
  display: grid;
  gap: 1.5rem;
}

.update-item {
  display: grid;
  gap: 1.2rem 2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-areas:
    "meta showcase"
    "content showcase";
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 1%));
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.update-item:hover {
  border-color: rgb(255 116 46 / 40%);
  box-shadow: 
    0 12px 32px rgb(0 0 0 / 32%),
    0 0 20px rgb(255 116 46 / 20%);
  transform: translateY(-4px);
}

.update-meta {
  grid-area: meta;
}

.update-meta h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-showcase {
  grid-area: showcase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #15171c 0%, #0a0b0e 100%);
}

.update-phone {
  width: min(72%, 220px);
  aspect-ratio: 9 / 19;
  max-height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgb(255 255 255 / 22%);
  box-shadow: 0 22px 48px rgb(0 0 0 / 52%);
  position: relative;
  z-index: 1;
}

.update-content {
  grid-area: content;
  padding: 0;
}

.update-date {
  margin: 0.25rem 0 0;
  color: #a8a8a8;
  font-size: 1rem;
}

.update-content p {
  margin-top: 0.6rem;
  color: #c9c9c9;
  line-height: 1.55;
  font-size: clamp(1.03rem, 1.55vw, 1.23rem);
}

.update-content ul,
.policy-block ul {
  margin: 0.95rem 0 0;
  padding-left: 1.2rem;
  color: #d0d0d0;
  line-height: 1.6;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.faq {
  padding-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 1%));
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgb(255 116 46 / 40%);
  box-shadow: 
    0 12px 32px rgb(0 0 0 / 32%),
    0 0 20px rgb(255 116 46 / 20%);
  transform: translateY(-4px);
}

.faq-item h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.01em;
}

.faq-item h4 {
  margin: 0.9rem 0 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: #c9c9c9;
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
}

.support-cta {
  margin-top: 1.8rem;
  margin-bottom: 5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.3rem 1.4rem;
  text-align: center;
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 1%));
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-cta:hover {
  border-color: rgb(255 116 46 / 40%);
  box-shadow: 
    0 12px 32px rgb(0 0 0 / 32%),
    0 0 20px rgb(255 116 46 / 20%);
}

.support-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.support-cta p {
  margin: 0.85rem auto 1.5rem;
  max-width: 46ch;
  color: #c8c8c8;
}

.policy {
  padding-bottom: 5rem;
  display: grid;
  gap: 1.5rem;
}

.policy-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 1%));
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-block:hover {
  border-color: rgb(255 116 46 / 40%);
  box-shadow: 
    0 12px 32px rgb(0 0 0 / 32%),
    0 0 20px rgb(255 116 46 / 20%);
  transform: translateY(-4px);
}

.policy-block h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -0.01em;
}

.policy-block p {
  margin: 0.6rem 0 0;
  color: #c9c9c9;
  line-height: 1.62;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
}
  /* background-color: #011a2a; */

#download {
  background: linear-gradient(#000000 0%, #011a2a 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.site-footer {
  border-top: none;
  min-height: 92px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
}

.site-footer.mobile-layout {
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 1.2rem;
}

.site-footer.mobile-layout .brand.small {
  flex: 0 0 auto;
}

.site-footer.mobile-layout .footer-links {
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-footer.mobile-layout p {
  flex: 0 0 100%;
  margin-top: 1rem;
  padding-top: 0;
}

.brand.small img {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: inline-flex;
  gap: 1.4rem;
}

.site-footer p {
  color: #ababab;
  margin: 0;
  font-size: 0.9rem;
  flex: 0 0 100%;
  margin-top: 0.6rem;
}

.site-footer .footer-legal {
  display: flex;
  justify-content: center;
  color: #383838 !important;
  font-size: 0.7rem !important;
  margin-top: 0.6rem !important;
  line-height: 1.5;
  flex: 0 0 100%;
}



.reveal {
  --reveal-shift: 24px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-shift) + var(--scroll-shift, 0px)), 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  --reveal-shift: 0px;
  opacity: 1;
}

/* Text Animation - stagger effect for words */
h1 span, h2 span, .hero-copy span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: textReveal 0.6s ease forwards;
}

h1 span:nth-child(1) { animation-delay: 0.05s; }
h1 span:nth-child(2) { animation-delay: 0.1s; }
h1 span:nth-child(3) { animation-delay: 0.15s; }
h1 span:nth-child(4) { animation-delay: 0.2s; }
h1 span:nth-child(5) { animation-delay: 0.25s; }
h1 span:nth-child(6) { animation-delay: 0.3s; }

h2 span:nth-child(1) { animation-delay: 0.05s; }
h2 span:nth-child(2) { animation-delay: 0.1s; }
h2 span:nth-child(3) { animation-delay: 0.15s; }
h2 span:nth-child(4) { animation-delay: 0.2s; }

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

[data-scroll-speed] {
  transform: translate3d(0, var(--scroll-shift, 0px), 0);
  will-change: transform;
}

@media (max-width: 980px) {
  .nav-links {
    display: inline-flex;
    gap: 1rem;
  }

  .hero-visual {
    margin-top: 6.5rem;
    min-height: 420px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 5.6rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-inline: auto;
  }

  h1 {
    max-width: 22ch;
    margin-inline: auto;
  }

  .award {
    margin-inline: auto;
  }

  .store-row {
    justify-content: center;
    margin-left: 0;
  }

  .device-frame.back {
    transform: translateX(56px) rotate(10deg) translateY(20px);
  }

  .device-frame.front {
    transform: translateX(-46px) rotate(-8deg);
  }

  .story {
    margin-top: 10rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-phone {
    top: 10vh;
    min-height: 44vh;
  }

  .story-device {
    width: min(250px, 62vw);
  }

  .story-steps {
    gap: 7vh;
  }

  .story-step {
    min-height: 42vh;
    justify-content: flex-start;
  }

  .story-phone-wrap {
    display: none;
  }

  .story-steps {
    gap: 3.2rem;
  }

  .step-image {
    display: block;
    width: min(360px, 78vw);
    margin-inline: auto;
  }

  .story-step h2,
  .story-step p {
    max-width: 100%;
  }

  .subhero {
    padding-top: 4.8rem;
    padding-bottom: 5rem;
  }

  .update-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "showcase"
      "content";
    gap: 1rem;
  }

  .update-showcase {
    min-height: 280px;
  }

  .update-phone {
    width: min(48%, 220px);
  }

  .split {
    margin-top: 10rem;
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .split h2 {
    max-width: 100%;
  }

  .stacked-panels {
    min-height: 300px;
  }

  .cta {
    margin-top: 10rem;
    margin-bottom: 4.3rem;
    padding-top: 4.2rem;
  }

  .cta h2 {
    max-width: 18ch;
  }

  .cta-phones {
    min-height: 360px;
    margin-top: 8rem;
    margin-bottom: -30px;
  }

  .cta-phone {
    width: min(210px, 35vw);
    border-radius: 28px;
  }

  .cta-left {
    left: 8%;
  }

  .cta-right {
    right: 8%;
  }

  .site-footer {
    min-height: auto;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-footer .brand.small {
    flex: 0 0 auto;
  }

  .site-footer .footer-links {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .site-footer p {
    flex: 0 0 100%;
    margin-top: 1rem;
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .site-header {
    position: sticky;
    background: #000;
  }

  .site-header::before {
    content: "";
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms cubic-bezier(.2,.9,.2,1);
    z-index: 15;
  }

  .site-header:has(.nav-links.active)::before {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    justify-content: flex-start;
    position: relative;
  }

  .brand {
    margin-inline: 0;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 0;
    top: calc(50% - 14px);
    z-index: 21;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: #000;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 360ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease, transform 260ms ease;
    pointer-events: none;
    text-align: center;
    z-index: 20;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-links .button.ghost {
    display: inline-flex;
    margin-top: 1.2rem;
  }

  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .button.desktop-only {
    display: none;
  }

  .hero {
    padding-top: 4.4rem;
    padding-bottom: 1rem;
    text-align: center;
  }

  .hero-copy {
    font-size: 0.97rem;
  }

  .hero-visual {
    margin-top: 3.4rem;
    min-height: 420px;
  }

  .store-row {
    gap: 0.45rem;
  }

  .store-badge {
    min-width: 124px;
  }

  .cta {
    margin-bottom: 2.2rem;
  }

  .cta-badges .store-badge {
    min-width: 150px;
    min-height: 52px;
  }

  .cta-phones {
    min-height: 240px;
    margin-top: 6.5rem;
    margin-bottom: -20px;
  }

  .cta-phone {
    width: min(136px, 29vw);
    border-radius: 18px;
  }

  .cta-left {
    left: 3%;
    transform: translateY(26px);
  }

  .cta-right {
    right: 3%;
    transform: translateY(36px);
  }

  .story-phone {
    position: relative;
    top: auto;
    min-height: 32vh;
    margin-bottom: 1.2rem;
  }

  .story-step {
    min-height: 34vh;
    justify-content: flex-start;
  }

  .step-image {
    border-radius: 14px;
    width: min(300px, 72vw);
  }

  .subhero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .story {
    margin-top: 8.5rem;
  }

  .split {
    margin-top: 8.5rem;
  }

  .cta {
    margin-top: 8.5rem;
  }

  .updates-list,
  .faq,
  .policy {
    gap: 2.2rem;
  }

  .update-content,
  .faq-item,
  .policy-block {
    padding: 1.1rem;
  }

  .update-content {
    padding: 0;
  }

  .update-showcase {
    min-height: 230px;
  }

  .update-phone {
    width: min(52%, 200px);
    border-radius: 18px;
  }

  [data-scroll-speed] {
    transform: none;
    will-change: auto;
  }

  .device-frame {
    width: min(230px, 68vw);
    border-radius: 24px;
  }

  .device-frame.back {
    transform: translateX(42px) rotate(9deg) translateY(48px);
  }

  .device-frame.front {
    transform: translateX(-34px) rotate(-8deg) translateY(28px);
  }
}
