:root {
  --ink: #080629;
  --ink-soft: #12103f;
  --blue: #022edb;
  --blue-bright: #022edb;
  --purple: #6f39d9;
  --lavender: #b8c4ff;
  --paper: #f7f8ff;
  --white: #ffffff;
  --muted: #c0c5dd;
  --line: rgba(255, 255, 255, 0.12);
  --display: "Sora", sans-serif;
  --body: "Manrope", sans-serif;
  --shadow: 0 30px 80px rgba(3, 2, 30, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(2, 46, 219, 0.32), transparent 38%),
    linear-gradient(145deg, #030722 0%, #061447 48%, #02051c 100%);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.26;
  background-image: radial-gradient(rgba(255, 255, 255, 0.23) 0.7px, transparent 0.7px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

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

#scene {
  position: fixed;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
}

.ambient-one {
  top: 30%;
  left: -240px;
  background: var(--blue);
}

.ambient-two {
  right: -250px;
  bottom: 5%;
  background: var(--white);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 6, 41, 0.34);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(2, 46, 219, 0.27));
}

.brand > span > span {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 21px;
  font-size: 0.84rem;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 36px rgba(2, 46, 219, 0.3);
}

.hero {
  display: grid;
  min-height: 850px;
  padding-top: 152px;
  padding-bottom: 92px;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 1.01;
  letter-spacing: -0.067em;
}

h1 em,
h2 em {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--white), #022edb 56%, var(--lavender));
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

html[data-store-platform="android"] [data-store="ios"],
html[data-store-platform="ios"] [data-store="android"] {
  display: none !important;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 22px rgba(2, 46, 219, 0.25));
}

.store-badge img {
  width: auto;
  object-fit: contain;
}

.store-badge-apple img {
  height: 54px;
}

.store-badge-google img {
  height: 68px;
}

.hero-proof {
  display: flex;
  margin-top: 38px;
  gap: 28px;
}

.hero-proof div {
  display: flex;
  padding-left: 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  flex-direction: column;
}

.hero-proof strong {
  font-size: 0.82rem;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.13), transparent 43%),
    conic-gradient(from 120deg, rgba(2, 46, 219, 0.16), rgba(2, 46, 219, 0.38), rgba(255, 255, 255, 0.08), rgba(111, 57, 217, 0.08));
  filter: blur(4px);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--white);
  box-shadow: 0 0 20px var(--white);
}

.orbit-one {
  width: 560px;
  height: 360px;
}

.orbit-two {
  width: 430px;
  height: 530px;
  border-color: rgba(2, 46, 219, 0.24);
  transform: rotate(54deg);
}

.phone {
  overflow: visible;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 44px;
  background: linear-gradient(145deg, #31304e, #111022 65%);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: var(--white);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-deck {
  position: relative;
  z-index: 4;
  width: 440px;
  height: 620px;
  perspective: 1400px;
  transform-style: preserve-3d;
  animation: phone-float 6s ease-in-out infinite;
}

.phone-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 274px;
  height: 592px;
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(120px, 32px, 80px) rotateY(-16deg) rotateZ(7deg) scale(0.9);
  transform-origin: 50% 55%;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition:
    opacity 680ms ease,
    transform 880ms cubic-bezier(0.18, 0.86, 0.24, 1),
    filter 680ms ease;
  filter: brightness(0.8) saturate(0.75);
  pointer-events: none;
}

.phone-card.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 40px) rotateY(0) rotateZ(0) scale(1);
  filter: brightness(1) saturate(1);
}

.phone-card.is-entering {
  z-index: 6;
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(148px, 46px, 120px) rotateY(-18deg) rotateZ(9deg) scale(0.88);
  filter: brightness(1.1) saturate(1);
}

.phone-card.is-exiting {
  z-index: 4;
  opacity: 0.3;
  transform: translate(-50%, -50%) translate3d(-92px, 18px, -130px) rotateY(13deg) rotateZ(-8deg) scale(0.88);
  filter: brightness(0.66) saturate(0.62) blur(0.4px);
}

.phone-card.is-stack-1 {
  z-index: 3;
  opacity: 0.47;
  transform: translate(-50%, -50%) translate3d(62px, 18px, -90px) rotateY(-7deg) rotateZ(7deg) scale(0.92);
  filter: brightness(0.72) saturate(0.68);
}

.phone-card.is-stack-2 {
  z-index: 2;
  opacity: 0.28;
  transform: translate(-50%, -50%) translate3d(-55px, 30px, -170px) rotateY(8deg) rotateZ(-8deg) scale(0.85);
  filter: brightness(0.58) saturate(0.55);
}

.phone-card.is-stack-3 {
  z-index: 1;
  opacity: 0.12;
  transform: translate(-50%, -50%) translate3d(18px, 43px, -230px) rotateY(-4deg) rotateZ(3deg) scale(0.79);
  filter: brightness(0.48) saturate(0.45);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 70px;
  height: 19px;
  border-radius: 20px;
  transform: translateX(-50%);
  background: #090913;
}

.phone-button {
  position: absolute;
  z-index: -1;
  width: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px 0 0 5px;
  background: linear-gradient(180deg, #454564, #121225);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.36);
}

.phone-button-volume {
  top: 108px;
  left: -5px;
  height: 58px;
  box-shadow: 0 76px 0 #1b1b31, 0 5px 12px rgba(0, 0, 0, 0.36);
}

.phone-button-power {
  top: 152px;
  right: -5px;
  height: 78px;
  border-radius: 0 5px 5px 0;
}

.screen-picker {
  position: absolute;
  z-index: 8;
  bottom: -8px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(12, 9, 56, 0.78);
  backdrop-filter: blur(14px);
}

.screen-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  transition: width 180ms ease, background 180ms ease;
}

.screen-dot.active {
  width: 25px;
  background: var(--white);
}

.screen-toggle {
  display: grid;
  width: 26px;
  height: 26px;
  margin-left: 3px;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  place-items: center;
  color: var(--white);
  background: transparent;
}

.screen-toggle span,
.screen-toggle span::after {
  display: block;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  content: "";
  background: currentColor;
}

.screen-toggle span {
  position: relative;
  margin-left: -5px;
}

.screen-toggle span::after {
  position: absolute;
  left: 6px;
}

.screen-toggle.paused span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.screen-toggle.paused span::after {
  display: none;
}

.floating-note {
  position: absolute;
  z-index: 6;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(18, 16, 63, 0.84);
  box-shadow: 0 16px 42px rgba(3, 2, 30, 0.3);
  backdrop-filter: blur(16px);
  font-size: 0.69rem;
  font-weight: 800;
}

.note-top {
  top: 106px;
  right: -5px;
}

.note-bottom {
  bottom: 82px;
  left: 3px;
}

.note-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(2, 46, 219, 0.2);
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  animation: marquee 24s linear infinite;
  color: rgba(255, 255, 255, 0.23);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.marquee-track i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.42);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

h2 {
  margin-bottom: 21px;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.058em;
}

.section-heading p,
.experience-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  filter: blur(72px);
  opacity: 0.16;
}

.feature-card.featured {
  transform: translateY(-18px);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(145deg, rgba(2, 46, 219, 0.3), rgba(255, 255, 255, 0.05));
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.42);
}

.feature-card.featured:hover {
  transform: translateY(-25px);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.24);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
}

.feature-icon {
  display: flex;
  width: 128px;
  height: 128px;
  margin: -18px 0 26px -15px;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(2, 20, 90, 0.35));
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.23rem;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.feature-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.feature-tag {
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 75% 50%, rgba(2, 46, 219, 0.24), transparent 32%),
    rgba(3, 2, 28, 0.28);
}

.experience-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  font-size: 0.69rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.experience-gallery {
  position: relative;
  min-height: 590px;
}

.experience-gallery::before {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: conic-gradient(from 20deg, rgba(255, 255, 255, 0.1), rgba(2, 46, 219, 0.48), rgba(2, 46, 219, 0.2), rgba(111, 57, 217, 0.08));
  filter: blur(28px);
}

.gallery-card {
  position: absolute;
  overflow: hidden;
  width: 248px;
  height: 536px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  background: linear-gradient(145deg, #34324f, #111022);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  object-fit: cover;
}

.gallery-main {
  z-index: 2;
  top: 0;
  left: 13%;
  transform: rotate(-6deg);
}

.gallery-secondary {
  z-index: 1;
  right: 4%;
  bottom: 0;
  transform: rotate(8deg);
}

.download-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 58px 62px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 55px;
  background:
    radial-gradient(circle at 12% 120%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(125deg, #022edb 0%, #071a62 62%, #0b1448 120%);
  box-shadow: 0 34px 100px rgba(3, 2, 28, 0.42);
}

.download-card::after {
  position: absolute;
  z-index: 0;
  top: -130px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.035), 0 0 0 110px rgba(255, 255, 255, 0.02);
}

.download-copy,
.qr-grid {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: var(--white);
}

.download-copy h2 {
  max-width: 480px;
  margin-bottom: 17px;
}

.download-copy p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.download-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
}

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

html[data-store-platform="android"] .qr-grid,
html[data-store-platform="ios"] .qr-grid {
  grid-template-columns: minmax(0, 240px);
  justify-content: center;
}

.qr-card {
  display: flex;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: rgba(7, 5, 34, 0.52);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease;
}

.qr-card:hover {
  transform: translateY(-4px);
  background: rgba(7, 5, 34, 0.72);
}

.qr-card .qr-code {
  width: 112px;
  height: 112px;
  padding: 7px;
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
}

.qr-store-badge {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.qr-store-apple {
  height: 40px;
}

.qr-store-google {
  height: 51px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 2, 25, 0.5);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-inner .brand img {
  width: 38px;
  height: 38px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.73rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.feature-grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

@media (max-width: 1060px) {
  .hero {
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.9);
  }

  .experience-inner {
    gap: 40px;
  }

  .gallery-main {
    left: 2%;
  }

  .gallery-secondary {
    right: 0;
  }

  .download-card {
    padding: 48px 42px;
    grid-template-columns: 0.78fr 1.22fr;
  }

  .qr-card {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 85px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    min-height: 670px;
    margin-top: 18px;
    overflow: hidden;
    overflow: clip;
    transform: none;
  }

  .phone-deck {
    width: min(440px, 100%);
  }

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

  .feature-card,
  .feature-card.featured {
    min-height: 320px;
    transform: none;
  }

  .feature-card:hover,
  .feature-card.featured:hover {
    transform: translateY(-5px);
  }

  .experience-inner {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 620px;
  }

  .experience-gallery {
    width: 100%;
    max-width: 570px;
    margin-inline: auto;
  }

  .gallery-main {
    left: 9%;
  }

  .gallery-secondary {
    right: 9%;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 480px);
  }

  .site-header {
    background: rgba(8, 6, 41, 0.78);
  }

  .nav {
    min-height: 72px;
  }

  .brand > span {
    display: none;
  }

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

  .button-small {
    min-height: 40px;
    padding-inline: 16px;
  }

  .hero {
    padding-top: 123px;
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .store-actions {
    width: 100%;
    align-items: center;
    flex-direction: column;
  }

  .store-badge-apple img {
    height: 52px;
  }

  .store-badge-google img {
    height: 65px;
  }

  .hero-proof {
    width: 100%;
    margin-top: 32px;
    gap: 8px;
    justify-content: space-between;
  }

  .hero-proof div {
    padding-left: 9px;
    text-align: left;
  }

  .hero-proof strong {
    font-size: 0.7rem;
  }

  .hero-proof span {
    font-size: 0.58rem;
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 0;
  }

  .phone-deck {
    width: 100%;
    height: 560px;
  }

  .phone-card {
    width: 252px;
    height: 545px;
  }

  .floating-note {
    display: none;
  }

  .phone-card.is-stack-1 {
    transform: translate(-50%, -50%) translate3d(34px, 15px, -90px) rotateY(-5deg) rotateZ(5deg) scale(0.93);
  }

  .phone-card.is-stack-2 {
    transform: translate(-50%, -50%) translate3d(-31px, 24px, -160px) rotateY(6deg) rotateZ(-5deg) scale(0.87);
  }

  .phone-card.is-entering {
    transform: translate(-50%, -50%) translate3d(88px, 34px, 100px) rotateY(-14deg) rotateZ(7deg) scale(0.9);
  }

  .phone-card.is-exiting {
    transform: translate(-50%, -50%) translate3d(-62px, 16px, -120px) rotateY(10deg) rotateZ(-6deg) scale(0.9);
  }

  .orbit-one {
    width: 340px;
    height: 250px;
  }

  .orbit-two {
    width: 280px;
    height: 410px;
  }

  .screen-picker {
    bottom: 6px;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  h2 {
    font-size: 2.45rem;
  }

  .feature-card {
    padding: 25px;
  }

  .experience-gallery {
    min-height: 500px;
  }

  .gallery-card {
    width: 203px;
    height: 439px;
  }

  .gallery-main {
    left: 1%;
  }

  .gallery-secondary {
    right: 1%;
  }

  .download-section {
    width: 100%;
    padding: 70px 0;
  }

  .download-card {
    width: calc(100% - 24px);
    padding: 37px 22px;
    border-radius: 26px;
    gap: 36px;
  }

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

  .qr-card {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .qr-card .qr-code {
    width: 124px;
    height: 124px;
  }

  .qr-store-apple {
    height: 42px;
  }

  .qr-store-google {
    height: 54px;
  }

  .footer-inner .brand > span {
    display: inline;
  }
}

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

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

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

  .screen-toggle {
    display: none;
  }
}
