:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f7f2e8;
  --soft: #d8d0c3;
  --muted: #9d968c;
  --amber: #f0c66d;
  --aqua: #8ee7d3;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --card: rgba(255, 255, 255, 0.045);
  --cta: linear-gradient(135deg, #fff0b6 0%, #f0c66d 42%, #c89538 100%);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.marketing-route {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 86% 8%, rgba(240, 198, 109, 0.18), transparent 17rem),
    radial-gradient(circle at 8% 72%, rgba(142, 231, 211, 0.075), transparent 18rem),
    #050505;
  background-size: 74px 74px, 74px 74px, auto, auto, auto;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.marketing-shell {
  width: min(calc(100vw - 40px), 440px);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding:
    calc(16px + env(safe-area-inset-top, 0px))
    0
    calc(34px + env(safe-area-inset-bottom, 0px));
}

.marketing-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.marketing-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.footer-pills {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.footer-pill {
  min-width: 0;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.footer-pill-icon {
  width: 48px;
  min-height: 48px;
  color: var(--aqua);
  border-color: rgba(142, 231, 211, 0.24);
  background:
    linear-gradient(145deg, rgba(142, 231, 211, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.footer-pill-icon svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(240, 198, 109, 0.38);
  border-radius: 13px;
  color: var(--amber);
  background:
    linear-gradient(145deg, rgba(240, 198, 109, 0.15), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 8, 0.74);
  overflow: hidden;
}

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

.brand-mark .brand-logo-ironpass {
  display: none;
}

html[data-site="ironpass"] .brand-mark .brand-logo-bali {
  display: none;
}

html[data-site="ironpass"] .brand-mark {
  border-color: transparent;
  background: transparent;
}

html[data-site="ironpass"] .brand-mark .brand-logo-ironpass {
  display: block;
}

.marketing-brand strong,
.marketing-brand small {
  display: block;
}

.marketing-brand strong {
  font-size: 0.98rem;
  line-height: 1.08;
}

.marketing-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-pill {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(240, 198, 109, 0.28);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(240, 198, 109, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-section,
.section-block,
.how-section,
.freedom-section,
.app-save-section,
.location-photo-section,
.location-video-section,
.location-save-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(145deg, rgba(33, 33, 32, 0.88), rgba(7, 7, 7, 0.96));
  background-size: 74px 74px, 74px 74px, auto;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.35);
}

.hero-section {
  min-height: min(660px, calc(100vh - 118px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 12vh, 78px) 22px 24px;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -92px;
  top: 28px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 198, 109, 0.18), transparent 70%);
  pointer-events: none;
}

html:not([data-site="ironpass"]) .location-hero,
html:not([data-site="ironpass"]) .location-photo-section,
html:not([data-site="ironpass"]) .location-video-section,
html:not([data-site="ironpass"]) .location-save-section {
  display: none;
}

html[data-site="ironpass"] .bali-home-hero,
html[data-site="ironpass"] .bali-content,
html[data-site="ironpass"] .launch-app-button {
  display: none;
}

html:not([data-site="ironpass"]) .coming-soon-modal {
  display: none;
}

html[data-site="ironpass"] .marketing-shell {
  min-height: 100vh;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

html[data-site="ironpass"] .location-photo-section {
  display: none;
}

.location-photo-section {
  min-height: min(660px, calc(100vh - 118px));
  padding: 0;
  background: #060606;
  isolation: isolate;
}

.location-video-section {
  min-height: 0;
  aspect-ratio: 5 / 8;
  padding: 0;
  background: #060606;
  isolation: isolate;
}

.location-photo-frame,
.location-photo-slide,
.location-photo-slide picture,
.location-photo-slide img {
  position: absolute;
  inset: 0;
}

.location-video-frame,
.location-video-frame video,
.location-video-motion-fallback,
.location-video-poster,
.location-video-overlay {
  position: absolute;
  inset: 0;
}

.location-photo-frame {
  overflow: hidden;
  border-radius: inherit;
  background: #060606;
}

.location-video-frame {
  overflow: hidden;
  border-radius: inherit;
  background: #060606;
}

.location-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 28%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 76% 12%, rgba(240, 198, 109, 0.12), transparent 34%);
  pointer-events: none;
}

.location-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 34%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 74% 12%, rgba(240, 198, 109, 0.12), transparent 34%);
  pointer-events: none;
}

.location-photo-slide {
  z-index: 1;
  display: block;
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.025);
}

.location-photo-slide:first-child {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.location-photo-section.is-photo-flow-active .location-photo-slide:nth-child(1) {
  animation: locationPhotoSlideOne 11760ms ease-in-out infinite both;
}

.location-photo-section.is-photo-flow-active .location-photo-slide:nth-child(2) {
  animation: locationPhotoSlideTwo 11760ms ease-in-out infinite both;
}

.location-photo-section.is-photo-flow-active .location-photo-slide:nth-child(3) {
  animation: locationPhotoSlideThree 11760ms ease-in-out infinite both;
}

.location-photo-slide picture {
  display: block;
}

.location-photo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-video-poster,
.location-video-motion-fallback,
.location-video-frame video {
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-video-poster {
  opacity: 1;
}

.location-video-motion-fallback {
  z-index: 2;
  opacity: 0;
  transition: opacity 240ms ease;
}

.location-video-frame video {
  z-index: 4;
  background: #060606;
  opacity: 0;
  transition:
    filter 900ms ease,
    opacity 240ms ease,
    transform 900ms ease;
  transform: scale(1);
  transform-origin: center;
}

.location-video-frame.is-video-playing video {
  opacity: 1;
}

.location-video-frame.is-video-copy-two-active video,
.location-video-frame.is-video-choice-active video {
  filter: blur(8px) brightness(0.68);
  transform: scale(1.035);
}

.location-video-frame.is-motion-fallback-active .location-video-poster {
  opacity: 0;
}

.location-video-frame.is-motion-fallback-active .location-video-motion-fallback {
  opacity: 1;
}

.location-video-frame.is-video-playing .location-video-poster,
.location-video-frame.is-video-playing .location-video-motion-fallback {
  opacity: 0;
}

.location-video-overlay {
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
}

.location-video-copy,
.location-video-choice {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: max-content;
  max-width: 92%;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
  opacity: 0;
  will-change: opacity, transform;
}

.location-video-copy {
  color: rgba(243, 238, 229, 0.92);
  font-size: clamp(44px, 15vw, 78px);
  font-weight: 900;
  line-height: 0.92;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.54);
  transform: translate(72vw, -50%) scale(0.98);
}

.location-video-copy-two {
  font-size: clamp(40px, 13.6vw, 70px);
}

.location-video-choice {
  color: transparent;
  background: linear-gradient(90deg, #d2cbbd 0%, #f8f1df 38%, #9a6b12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(54px, 18vw, 94px);
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 22px 42px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -50%) scale(0.985);
}

.location-video-choice::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(105deg, transparent 0%, transparent 34%, rgba(255, 248, 196, 0.96) 45%, #fffdf2 50%, rgba(240, 198, 109, 0.86) 56%, transparent 68%, transparent 100%);
  background-size: 240% 100%;
  background-position: 160% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  text-shadow: none;
}

.location-video-frame.is-video-copy-one-active .location-video-copy-one {
  animation: locationVideoTextPass 3920ms linear both;
}

.location-video-frame.is-video-copy-two-active .location-video-copy-two {
  animation: locationVideoTextPass 2340ms linear both;
}

.location-video-frame.is-video-choice-active .location-video-choice {
  animation: locationVideoChoiceReveal 2960ms linear both;
}

.location-video-frame.is-video-choice-active .location-video-choice::after {
  animation: locationVideoChoiceShine 1320ms cubic-bezier(0.22, 1, 0.36, 1) 1620ms both;
}

.location-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(7, 7, 7, 0.48);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.location-video-play[hidden] {
  display: none;
}

.location-video-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
}

@media (max-width: 759px) {
  .location-photo-slide:nth-child(2) img,
  .location-photo-slide:nth-child(3) img {
    transform: scale(1.025);
  }
}

.location-photo-caption {
  position: absolute;
  right: 26px;
  bottom: 58px;
  left: 26px;
  z-index: 6;
  margin: 0;
  color: var(--text);
  font-size: 3.05rem;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.56);
  pointer-events: none;
  will-change: opacity, transform;
}

.location-photo-caption-rise {
  opacity: 0;
  transform: translateY(170px);
}

.location-photo-section.is-photo-flow-active .location-photo-slide:nth-child(1) .location-photo-caption-rise {
  animation: locationPhotoCaptionOne 11760ms cubic-bezier(0.14, 0.78, 0.16, 1) infinite both;
}

.location-photo-section.is-photo-flow-active .location-photo-slide:nth-child(2) .location-photo-caption-rise {
  animation: locationPhotoCaptionTwo 11760ms cubic-bezier(0.14, 0.78, 0.16, 1) infinite both;
}

.location-photo-caption-choice {
  right: 20px;
  left: 20px;
  bottom: 68px;
  overflow: visible;
  color: #ffffff;
  font-size: 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
}

.location-photo-caption-choice::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(135deg, #fff5bd 0%, #f4cf72 34%, #d99c2b 70%, #8f5d18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  clip-path: inset(0 100% 0 0);
}

.location-photo-caption-choice::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(105deg, transparent 0%, transparent 37%, rgba(255, 255, 255, 0.98) 47%, rgba(255, 240, 177, 0.98) 52%, transparent 64%, transparent 100%);
  background-size: 240% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
}

.location-photo-choice-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: block;
  width: min(80vw, 470px);
  height: 160px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.location-photo-choice-burst i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--burst-w, 8px);
  height: var(--burst-h, 4px);
  border-radius: var(--burst-radius, 2px);
  background: var(--burst-color, #f4cf72);
  box-shadow: 0 0 12px color-mix(in srgb, var(--burst-color, #f4cf72) 68%, transparent);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
}

.location-photo-choice-burst i:nth-child(1) { --burst-x: -220px; --burst-y: -74px; --burst-r: -230deg; --burst-w: 10px; --burst-h: 4px; --burst-color: #f4cf72; }
.location-photo-choice-burst i:nth-child(2) { --burst-x: -176px; --burst-y: 48px; --burst-r: 210deg; --burst-w: 6px; --burst-h: 10px; --burst-color: #8ee7d3; }
.location-photo-choice-burst i:nth-child(3) { --burst-x: -134px; --burst-y: -96px; --burst-r: -145deg; --burst-w: 7px; --burst-h: 7px; --burst-radius: 50%; --burst-color: #fff3bd; }
.location-photo-choice-burst i:nth-child(4) { --burst-x: -98px; --burst-y: 82px; --burst-r: 178deg; --burst-w: 12px; --burst-h: 3px; --burst-color: #d99c2b; }
.location-photo-choice-burst i:nth-child(5) { --burst-x: -58px; --burst-y: -124px; --burst-r: -268deg; --burst-w: 5px; --burst-h: 12px; --burst-color: #ffffff; }
.location-photo-choice-burst i:nth-child(6) { --burst-x: -28px; --burst-y: 108px; --burst-r: 236deg; --burst-w: 9px; --burst-h: 5px; --burst-color: #f4cf72; }
.location-photo-choice-burst i:nth-child(7) { --burst-x: 8px; --burst-y: -118px; --burst-r: -190deg; --burst-w: 6px; --burst-h: 6px; --burst-radius: 50%; --burst-color: #8ee7d3; }
.location-photo-choice-burst i:nth-child(8) { --burst-x: 40px; --burst-y: 112px; --burst-r: 154deg; --burst-w: 11px; --burst-h: 4px; --burst-color: #fff3bd; }
.location-photo-choice-burst i:nth-child(9) { --burst-x: 72px; --burst-y: -86px; --burst-r: -246deg; --burst-w: 4px; --burst-h: 11px; --burst-color: #d99c2b; }
.location-photo-choice-burst i:nth-child(10) { --burst-x: 104px; --burst-y: 74px; --burst-r: 228deg; --burst-w: 7px; --burst-h: 7px; --burst-radius: 50%; --burst-color: #ffffff; }
.location-photo-choice-burst i:nth-child(11) { --burst-x: 140px; --burst-y: -108px; --burst-r: -172deg; --burst-w: 12px; --burst-h: 4px; --burst-color: #f4cf72; }
.location-photo-choice-burst i:nth-child(12) { --burst-x: 182px; --burst-y: 42px; --burst-r: 198deg; --burst-w: 5px; --burst-h: 12px; --burst-color: #8ee7d3; }
.location-photo-choice-burst i:nth-child(13) { --burst-x: 224px; --burst-y: -62px; --burst-r: -214deg; --burst-w: 9px; --burst-h: 5px; --burst-color: #fff3bd; }
.location-photo-choice-burst i:nth-child(14) { --burst-x: -198px; --burst-y: -12px; --burst-r: 128deg; --burst-w: 6px; --burst-h: 6px; --burst-radius: 50%; --burst-color: #ffffff; }
.location-photo-choice-burst i:nth-child(15) { --burst-x: -14px; --burst-y: -154px; --burst-r: -310deg; --burst-w: 13px; --burst-h: 3px; --burst-color: #d99c2b; }
.location-photo-choice-burst i:nth-child(16) { --burst-x: 198px; --burst-y: 104px; --burst-r: 276deg; --burst-w: 8px; --burst-h: 8px; --burst-radius: 50%; --burst-color: #f4cf72; }
.location-photo-choice-burst i:nth-child(17) { --burst-x: 18px; --burst-y: 146px; --burst-r: 305deg; --burst-w: 5px; --burst-h: 12px; --burst-color: #8ee7d3; }
.location-photo-choice-burst i:nth-child(18) { --burst-x: 238px; --burst-y: 8px; --burst-r: -152deg; --burst-w: 10px; --burst-h: 4px; --burst-color: #ffffff; }

.location-photo-section.is-photo-flow-active .location-photo-caption-choice {
  animation: locationPhotoChoiceIntro 11760ms ease-in-out infinite both;
}

.location-photo-section.is-photo-flow-active .location-photo-caption-choice::before {
  animation: locationPhotoChoiceGold 11760ms ease-in-out infinite both;
}

.location-photo-section.is-photo-flow-active .location-photo-caption-choice::after {
  animation: locationPhotoChoiceShine 11760ms ease-in-out infinite both;
}

.location-photo-section.is-photo-flow-active .location-photo-choice-burst i {
  animation: locationPhotoChoiceBurst 11760ms cubic-bezier(0.15, 0.82, 0.2, 1) infinite both;
}

@keyframes locationPhotoSlideOne {
  0%,
  17% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  23.13%,
  93.88% {
    opacity: 0;
    filter: blur(14px);
    transform: scale(1.018);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes locationPhotoSlideTwo {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1.025);
  }

  17% {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1.025);
  }

  23.13%,
  40.14% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  46.26%,
  100% {
    opacity: 0;
    filter: blur(14px);
    transform: scale(1.018);
  }
}

@keyframes locationPhotoSlideThree {
  0%,
  40.14% {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1.025);
  }

  46.26%,
  93.88% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(14px);
    transform: scale(1.018);
  }
}

@keyframes locationPhotoCaptionOne {
  0% {
    opacity: 0;
    transform: translateY(170px);
  }

  4.3%,
  15.5% {
    opacity: 1;
    transform: translateY(0);
  }

  22.5%,
  100% {
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes locationPhotoCaptionTwo {
  0%,
  17% {
    opacity: 0;
    transform: translateY(170px);
  }

  21.3%,
  38% {
    opacity: 1;
    transform: translateY(0);
  }

  45.5%,
  100% {
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes locationPhotoChoiceIntro {
  0%,
  59.7% {
    opacity: 0;
    transform: translateY(8px);
  }

  68.3%,
  91.2% {
    opacity: 1;
    transform: translateY(0);
  }

  93.4% {
    opacity: 0.08;
    transform: translateY(-2px) scale(1.02);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.03);
  }
}

@keyframes locationPhotoChoiceGold {
  0%,
  68.3% {
    clip-path: inset(0 100% 0 0);
  }

  76.9%,
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes locationPhotoChoiceShine {
  0%,
  76.9% {
    opacity: 0;
    background-position: 120% 0;
  }

  80.3% {
    opacity: 0.95;
  }

  91.2% {
    opacity: 0.95;
    background-position: -120% 0;
  }

  100% {
    opacity: 0;
    background-position: -120% 0;
  }
}

@keyframes locationPhotoChoiceBurst {
  0%,
  91.2% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  }

  91.9% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12) rotate(18deg);
  }

  93.5% {
    opacity: 0.98;
    transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y))) scale(0.88) rotate(var(--burst-r));
  }

  95.2% {
    opacity: 0;
    transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y) + 30px)) scale(0.65) rotate(var(--burst-r));
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y) + 30px)) scale(0.65) rotate(var(--burst-r));
  }
}

@keyframes locationVideoTextPass {
  0% {
    opacity: 0;
    transform: translate(72vw, -50%) scale(0.98);
  }

  4.5% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  95.5% {
    opacity: 1;
    transform: translate(-60%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-172%, -50%) scale(1);
  }
}

@keyframes locationVideoChoiceReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.982);
  }

  46% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes locationVideoChoiceShine {
  0% {
    opacity: 0;
    background-position: 160% 0;
  }

  16% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: -70% 0;
  }
}

.location-save-section {
  min-height: auto;
  display: grid;
  gap: 20px;
  align-content: space-between;
  padding: 28px 18px 24px;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(240, 198, 109, 0.2), transparent 15rem),
    radial-gradient(circle at 18% 76%, rgba(142, 231, 211, 0.1), transparent 17rem),
    linear-gradient(145deg, rgba(31, 31, 30, 0.9), rgba(5, 5, 5, 0.98));
  background-size: 74px 74px, 74px 74px, auto, auto, auto;
}

.location-save-section::before {
  content: "";
  position: absolute;
  inset: 20px 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 20%, rgba(142, 231, 211, 0.08), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.location-save-copy {
  position: relative;
  z-index: 2;
  max-width: 25rem;
  padding: 20px 14px 0;
}

.location-save-section h2 {
  color: var(--text);
  font-size: clamp(2rem, 9.4vw, 2.75rem);
  line-height: 0.96;
  font-weight: 950;
}

.location-save-section ol {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: saveStep;
}

.location-save-section li {
  position: relative;
  z-index: 1;
  min-height: 40px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 850;
  transform-origin: left center;
  will-change: transform, color;
}

.location-save-section.is-step-sequence-active li {
  animation: locationSaveStepPulse 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.location-save-section.is-step-sequence-active li:nth-child(1) {
  animation-delay: 160ms;
}

.location-save-section.is-step-sequence-active li:nth-child(2) {
  animation-delay: 810ms;
}

.location-save-section.is-step-sequence-active li:nth-child(3) {
  animation-delay: 1460ms;
}

.location-save-section li::before {
  counter-increment: saveStep;
  content: counter(saveStep);
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(240, 198, 109, 0.34);
  border-radius: 999px;
  color: #050505;
  background: var(--cta);
  box-shadow: 0 10px 26px rgba(240, 198, 109, 0.14);
  font-size: 0.82rem;
  font-weight: 950;
}

@keyframes locationSaveStepPulse {
  0% {
    color: var(--soft);
    transform: scale(1);
  }

  30%,
  56% {
    color: var(--text);
    transform: scale(1.1);
  }

  100% {
    color: var(--soft);
    transform: scale(1);
  }
}

.location-save-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.location-save-art {
  position: relative;
  z-index: 1;
  min-height: 244px;
  display: grid;
  place-items: center end;
  padding: 0 20px 12px 0;
}

.location-save-phone {
  --location-save-phone-rotate: -5deg;
  --location-save-phone-shift: 0px;
  position: relative;
  width: min(47vw, 156px);
  height: 236px;
  border: 5px solid #202024;
  border-radius: 32px;
  background:
    linear-gradient(rgba(142, 231, 211, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 231, 211, 0.04) 1px, transparent 1px),
    linear-gradient(160deg, rgba(18, 34, 30, 0.96), rgba(5, 5, 5, 0.98));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: rotate(var(--location-save-phone-rotate)) translateX(var(--location-save-phone-shift));
  animation: locationSavePhoneFloat 8200ms cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.location-save-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 12;
  width: 58px;
  height: 16px;
  border-radius: 999px;
  background: #030303;
  transform: translateX(-50%);
}

.location-save-safari,
.location-save-sheet,
.location-save-add-home,
.location-save-home-screen {
  position: absolute;
  inset: 0;
}

.location-save-safari {
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 38px 12px 14px;
  background:
    linear-gradient(rgba(142, 231, 211, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 231, 211, 0.045) 1px, transparent 1px),
    linear-gradient(160deg, rgba(12, 32, 28, 0.98), rgba(5, 5, 5, 0.98));
  background-size: 32px 32px, 32px 32px, auto;
  animation: locationSaveSafariStage 8200ms cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.location-save-phone-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.location-save-phone-header strong {
  max-width: 4.8rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 0.95;
  font-weight: 950;
}

.location-save-phone-header span {
  flex: 0 0 auto;
  min-height: 28px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #050505;
  background: var(--cta);
  font-size: 0.68rem;
  font-weight: 950;
}

.location-save-browser-card {
  min-height: 82px;
  display: grid;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 10%, rgba(240, 198, 109, 0.12), transparent 4rem),
    rgba(255, 255, 255, 0.035);
}

.location-save-browser-card b {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 0.92;
  font-weight: 950;
}

.location-save-url-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 9px 0 12px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.62rem;
  font-weight: 850;
}

.location-save-share-icon {
  position: relative;
  display: block;
  width: 21px;
  height: 23px;
  flex: 0 0 auto;
  background: var(--aqua);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203.25v11M7.7%207.6%2012%203.25l4.3%204.35M7.15%2011.7H6.1c-1.5%200-2.72%201.22-2.72%202.72v3.88c0%201.5%201.22%202.72%202.72%202.72h11.8c1.5%200%202.72-1.22%202.72-2.72v-3.88c0-1.5-1.22-2.72-2.72-2.72h-1.05%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.35%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203.25v11M7.7%207.6%2012%203.25l4.3%204.35M7.15%2011.7H6.1c-1.5%200-2.72%201.22-2.72%202.72v3.88c0%201.5%201.22%202.72%202.72%202.72h11.8c1.5%200%202.72-1.22%202.72-2.72v-3.88c0-1.5-1.22-2.72-2.72-2.72h-1.05%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.35%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.location-save-share-icon::before {
  content: "";
  display: none;
}

.location-save-share-icon::after {
  content: "";
  display: none;
}

.location-save-sheet {
  z-index: 3;
  display: grid;
  align-content: end;
  padding: 0 10px 12px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(100%);
  animation: locationSaveSheetStage 8200ms cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.location-save-sheet span,
.location-save-sheet b {
  display: block;
  background: rgba(242, 242, 247, 0.96);
  color: #111318;
}

.location-save-sheet span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 16px 16px 0 0;
  color: #6d7380;
  font-size: 0.66rem;
  font-weight: 850;
}

.location-save-sheet b {
  min-height: 42px;
  display: grid;
  align-items: center;
  padding: 0 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 0 16px 16px;
  font-size: 0.76rem;
  line-height: 1.08;
  font-weight: 950;
}

.location-save-add-home {
  z-index: 4;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 42px 10px 14px;
  background: #f7f7f9;
  opacity: 0;
  transform: translateX(28%);
  animation: locationSaveAddHomeStage 8200ms cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.location-save-add-nav {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  gap: 5px;
  color: #3478f6;
  font-size: 0.52rem;
  font-weight: 850;
}

.location-save-add-nav strong {
  color: #171a20;
  font-size: 0.54rem;
  line-height: 1.05;
  text-align: center;
}

.location-save-add-nav em {
  justify-self: end;
  font-style: normal;
  font-weight: 950;
}

.location-save-add-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.location-save-add-card i,
.location-save-home-icon {
  display: grid;
  place-items: center;
  color: var(--amber);
  background:
    linear-gradient(145deg, rgba(240, 198, 109, 0.18), rgba(255, 255, 255, 0.035)),
    #111111;
  font-style: normal;
  font-weight: 950;
}

.location-save-add-card i {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 0.74rem;
}

.location-save-add-card b {
  color: #171a20;
  font-size: 0.74rem;
  line-height: 1.08;
  font-weight: 950;
}

.location-save-home-screen {
  z-index: 5;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 40px 14px 14px;
  background:
    radial-gradient(circle at 20% 14%, rgba(240, 198, 109, 0.45), transparent 4.2rem),
    radial-gradient(circle at 84% 0%, rgba(142, 231, 211, 0.28), transparent 4rem),
    linear-gradient(160deg, #11151a, #050505);
  opacity: 0;
  transform: scale(0.98);
  animation: locationSaveHomeStage 8200ms cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.location-save-home-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(240, 198, 109, 0.42);
  border-radius: 15px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  font-size: 0.9rem;
}

.location-save-home-screen b {
  max-width: 5.4rem;
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.08;
  font-weight: 850;
  text-align: center;
}

.location-save-tap-ring {
  position: absolute;
  z-index: 20;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(240, 198, 109, 0.95);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translate(108px, 168px) scale(0.62);
  animation: locationSaveTapRing 8200ms ease-in-out infinite both;
}

.location-save-tap-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: rgba(240, 198, 109, 0.22);
}

@keyframes locationSavePhoneFloat {
  0%,
  100% {
    transform:
      rotate(var(--location-save-phone-rotate))
      translateX(var(--location-save-phone-shift))
      translateY(0);
  }
  50% {
    transform:
      rotate(calc(var(--location-save-phone-rotate) + 1deg))
      translateX(var(--location-save-phone-shift))
      translateY(-6px);
  }
}

@keyframes locationSaveSafariStage {
  0%,
  29% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateX(-8px) scale(0.985);
  }
}

@keyframes locationSaveSheetStage {
  0%,
  20% {
    opacity: 0;
    transform: translateY(100%);
  }
  28%,
  44% {
    opacity: 1;
    transform: translateY(0);
  }
  52%,
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes locationSaveAddHomeStage {
  0%,
  43% {
    opacity: 0;
    transform: translateX(28%);
  }
  51%,
  67% {
    opacity: 1;
    transform: translateX(0);
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(-18%);
  }
}

@keyframes locationSaveHomeStage {
  0%,
  68% {
    opacity: 0;
    transform: scale(0.98);
  }
  76%,
  94% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes locationSaveTapRing {
  0%,
  15%,
  24%,
  39%,
  48%,
  62%,
  71%,
  86%,
  100% {
    opacity: 0;
  }
  18% {
    opacity: 1;
    transform: translate(108px, 170px) scale(0.62);
  }
  21% {
    opacity: 0;
    transform: translate(108px, 170px) scale(1.08);
  }
  42% {
    opacity: 1;
    transform: translate(28px, 178px) scale(0.62);
  }
  45% {
    opacity: 0;
    transform: translate(28px, 178px) scale(1.08);
  }
  65% {
    opacity: 1;
    transform: translate(112px, 44px) scale(0.62);
  }
  68% {
    opacity: 0;
    transform: translate(112px, 44px) scale(1.08);
  }
  89% {
    opacity: 1;
    transform: translate(58px, 112px) scale(0.62);
  }
  92% {
    opacity: 0;
    transform: translate(58px, 112px) scale(1.08);
  }
}

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

.location-hero-title {
  overflow: hidden;
}

.location-title-line {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}

.location-title-word {
  display: inline-block;
  will-change: transform, opacity;
}

.location-title-word-the {
  animation: locationTitleSlideLeft 460ms cubic-bezier(0.12, 0.82, 0.18, 1) 120ms both;
}

.location-title-word-vip {
  position: relative;
  color: transparent;
  background: linear-gradient(135deg, #fff4bd 0%, #f3cd6f 35%, #d59b31 68%, #8f5c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 24px rgba(240, 198, 109, 0.16);
  animation: locationTitleSlideRight 460ms cubic-bezier(0.12, 0.82, 0.18, 1) 520ms both;
}

.location-title-word-vip::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(105deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 1) 45%, rgba(255, 242, 179, 1) 52%, transparent 66%, transparent 100%);
  background-size: 230% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  pointer-events: none;
  animation: locationVipLightSweep 1200ms cubic-bezier(0.16, 0.78, 0.16, 1) 2300ms both;
}

.location-title-word-pass {
  animation: locationTitleFade 2200ms ease 980ms both;
}

.location-hero .hero-copy {
  margin-top: 18px;
  color: var(--soft);
  font-size: 1.32rem;
  font-weight: 850;
}

@keyframes locationTitleSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-110vw);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes locationTitleSlideRight {
  from {
    opacity: 0;
    transform: translateX(110vw);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes locationTitleFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.location-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}

.location-cta::after {
  content: "";
  position: absolute;
  inset: -52% auto -52% -58%;
  z-index: 0;
  width: 56%;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 238, 172, 0.74) 56%, transparent 100%);
  filter: blur(0.4px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  animation: locationCtaLightSweep 1200ms cubic-bezier(0.16, 0.78, 0.16, 1) 2300ms both;
}

.location-cta > * {
  position: relative;
  z-index: 1;
}

.location-cta b {
  font-size: 1.34rem;
}

@keyframes locationCtaLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-18deg);
  }

  6%,
  70% {
    opacity: 0.88;
  }

  100% {
    opacity: 0;
    transform: translateX(440%) skewX(-18deg);
  }
}

@keyframes locationVipLightSweep {
  0% {
    opacity: 0;
    background-position: 130% 0;
  }

  6%,
  72% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    background-position: -120% 0;
  }
}

.location-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.location-option {
  min-width: 0;
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 13, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.coming-soon-modal[hidden] {
  display: none;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
}

.coming-soon-card {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 30px 22px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 12%, rgba(240, 198, 109, 0.14), transparent 11rem),
    linear-gradient(145deg, rgba(28, 28, 27, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  text-align: center;
}

.coming-soon-card h2 {
  color: var(--text);
  font-size: 2.4rem;
  line-height: 0.95;
}

.coming-soon-card .footer-pill {
  width: 100%;
  border-color: rgba(240, 198, 109, 0.24);
  color: var(--amber);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: none;
  color: var(--text);
  font-size: clamp(3rem, 12.6vw, 3.25rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 21rem;
  margin-top: 20px;
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.43;
}

.primary-cta,
.launch-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  color: #090806;
  background: var(--cta);
  box-shadow: 0 18px 46px rgba(240, 198, 109, 0.18);
  cursor: pointer;
  font-weight: 950;
}

.primary-cta {
  min-height: 56px;
  width: 100%;
  margin-top: 24px;
  font-size: 1rem;
}

.primary-cta b,
.launch-app-button b {
  font-size: 1.08em;
  line-height: 1;
}

.access-pills {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.access-pills span {
  min-width: 0;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.proof-section {
  display: grid;
  gap: 10px;
}

.marketing-columns,
.marketing-column {
  display: contents;
}

.proof-card,
.reward-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.038);
}

.proof-card b,
.reward-card b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--aqua);
  background: rgba(142, 231, 211, 0.11);
  font-size: 0.84rem;
  font-weight: 950;
}

.proof-card h2,
.reward-card h3 {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.18;
}

.proof-card p,
.reward-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.section-block,
.how-section {
  padding: 22px 18px;
}

.freedom-section {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  padding: 38px 28px;
  background:
    radial-gradient(circle at 16% 84%, rgba(142, 231, 211, 0.08), transparent 13rem),
    radial-gradient(circle at 80% 18%, rgba(240, 198, 109, 0.12), transparent 12rem),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(145deg, rgba(18, 18, 17, 0.98), #040404);
  background-size: auto, auto, 74px 74px, 74px 74px, auto;
  box-shadow:
    0 -18px 54px rgba(0, 0, 0, 0.26),
    0 28px 76px rgba(0, 0, 0, 0.35);
}

.section-heading h2,
.how-section h2,
.freedom-section h2,
.app-save-section h2 {
  color: var(--text);
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.freedom-section p:not(.eyebrow) {
  max-width: 24rem;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.app-save-section {
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  background:
    radial-gradient(circle at 86% 16%, rgba(240, 198, 109, 0.12), transparent 11rem),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(145deg, rgba(26, 26, 25, 0.92), rgba(7, 7, 7, 0.98));
  background-size: auto, 74px 74px, 74px 74px, auto;
}

.app-save-section h2 {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.app-save-section h2 span {
  color: var(--amber);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.app-save-section h2 strong {
  display: block;
  color: var(--text);
  font-size: clamp(2rem, 8.4vw, 2.8rem);
  font-weight: 950;
  line-height: 0.96;
}

.app-save-icon {
  display: block;
  width: min(42vw, 156px);
  aspect-ratio: 1;
  margin: 4px auto 6px;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 30px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 24px rgba(240, 198, 109, 0.12));
}

.app-save-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.app-save-button {
  min-width: 0;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 13, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 38px rgba(0, 0, 0, 0.22);
  font-size: 0.94rem;
  font-weight: 900;
}

.app-save-button span {
  flex: 0 0 auto;
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.app-save-button-ios span {
  color: var(--soft);
}

.app-save-button-ios svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.app-save-button-android span::before {
  content: "";
  width: 20px;
  height: 15px;
  border-radius: 9px 9px 5px 5px;
  background: #8ee7d3;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
}

.app-save-button-android span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #050505;
  box-shadow: 8px 0 0 #050505;
}

.plan-list,
.reward-list,
.partner-gym-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.partner-gyms-section {
  transition: opacity 0.2s ease;
}

.partner-gyms-section[hidden] {
  display: none;
}

.partner-gym-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-gym-card {
  min-width: 0;
  display: grid;
  gap: 9px;
  align-content: start;
  justify-items: center;
  padding: 10px 7px 11px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.035);
}

.partner-gym-logo {
  width: clamp(58px, 17vw, 74px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 198, 109, 0.24);
  border-radius: 17px;
  color: var(--amber);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(240, 198, 109, 0.16), rgba(142, 231, 211, 0.08)),
    rgba(10, 10, 10, 0.86);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
}

.partner-gym-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-gym-name {
  width: 100%;
  min-height: 2.28em;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.14;
  text-align: center;
  overflow-wrap: anywhere;
}

.partner-gym-card.is-placeholder {
  min-height: 116px;
  overflow: hidden;
  position: relative;
}

.partner-gym-card.is-placeholder::before,
.partner-gym-card.is-placeholder::after {
  content: "";
  display: block;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.partner-gym-card.is-placeholder::before {
  width: clamp(58px, 17vw, 74px);
  aspect-ratio: 1;
}

.partner-gym-card.is-placeholder::after {
  width: 76%;
  height: 9px;
}

.partner-gyms-section.is-loading .partner-gym-card.is-placeholder {
  animation: marketingPartnerPulse 1200ms ease-in-out infinite;
}

@keyframes marketingPartnerPulse {
  0%,
  100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.92;
  }
}

.plan-card {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.042);
}

.plan-card.is-featured {
  border-color: rgba(240, 198, 109, 0.44);
  background:
    linear-gradient(135deg, rgba(240, 198, 109, 0.14), rgba(142, 231, 211, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.plan-card strong,
.plan-card span,
.plan-card em {
  display: block;
}

.plan-card strong {
  font-size: 1rem;
}

.plan-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.plan-card em {
  display: inline-flex;
  justify-self: end;
  align-items: flex-start;
  gap: 5px;
  color: var(--text);
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 950;
  line-height: 0.95;
}

.plan-card .plan-price-value {
  margin-top: 0;
  color: var(--text);
  font-size: 1em;
}

.plan-card .plan-currency {
  margin-top: -0.06em;
  color: var(--aqua);
  font-size: 0.4em;
  font-weight: 950;
  letter-spacing: 0;
}

.save-note {
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-top: 12px;
  border: 1px solid rgba(142, 231, 211, 0.22);
  border-radius: 999px;
  color: var(--aqua);
  background: rgba(142, 231, 211, 0.09);
  font-size: 0.84rem;
  font-weight: 900;
}

.reward-card {
  align-items: start;
}

.reward-card b {
  color: var(--amber);
  background: rgba(240, 198, 109, 0.12);
}

.review-demo {
  position: relative;
  min-height: 286px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 14%, rgba(240, 198, 109, 0.16), transparent 10rem),
    radial-gradient(circle at 18% 84%, rgba(185, 245, 184, 0.11), transparent 11rem),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    rgba(255, 255, 255, 0.032);
  background-size: auto, auto, 46px 46px, 46px 46px, auto;
}

.review-demo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 82px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.review-demo-phone {
  position: absolute;
  top: 16px;
  right: 34px;
  width: 164px;
  height: 254px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025)),
    #060606;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.56),
    0 24px 56px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  transform: rotate(-4deg);
}

.review-demo-phone::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 4;
  width: 58px;
  height: 15px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.92);
  transform: translateX(-50%);
}

.review-demo-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 72% 12%, rgba(142, 231, 211, 0.15), transparent 38%),
    #0c0d0e;
  background-size: 28px 28px, 28px 28px, auto, auto;
  padding: 36px 11px 11px;
}

.review-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-demo-header strong {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 950;
}

.review-demo-header span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #080806;
  background: linear-gradient(135deg, #ffeaa3, #dfad48);
  font-size: 0.68rem;
  font-weight: 950;
}

.review-demo-compose {
  display: grid;
  gap: 8px;
  margin-top: 19px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(17, 18, 20, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.review-demo-compose h3 {
  color: rgba(247, 242, 232, 0.82);
  font-size: 1.15rem;
  line-height: 0.96;
}

.review-demo-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  font-size: 1.15rem;
}

.review-demo-stars span {
  opacity: 0.24;
  transform: scale(0.82);
  animation: marketingReviewStar 7200ms ease-out infinite;
  animation-delay: calc(var(--i) * 110ms);
}

.review-demo-text {
  min-height: 60px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.22;
}

.review-demo-text span {
  display: block;
  overflow: hidden;
  max-height: 0;
  animation: marketingReviewTyping 7200ms ease-in-out infinite;
}

.review-demo-pass {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 11px;
  z-index: 3;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(185, 245, 184, 0.3);
  border-radius: 16px;
  background: rgba(18, 50, 33, 0.99);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  animation: marketingReviewPass 7200ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.review-demo-pass b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 999px;
  color: #071108;
  background: #b9f5b8;
  font-size: 0.66rem;
  font-weight: 950;
}

.review-demo-pass strong,
.review-demo-pass span {
  display: block;
}

.review-demo-pass strong {
  color: #b9f5b8;
  font-size: 0.82rem;
  line-height: 1.05;
}

.review-demo-pass span {
  margin-top: 2px;
  color: var(--soft);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.2;
}

@keyframes marketingReviewStar {
  0%,
  12%,
  100% {
    opacity: 0.24;
    transform: scale(0.82);
  }
  24%,
  98% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes marketingReviewTyping {
  0%,
  38% {
    max-height: 0;
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  60%,
  100% {
    max-height: 7.5em;
    opacity: 1;
  }
}

@keyframes marketingReviewPass {
  0%,
  76%,
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  84%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.how-section ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.how-section li {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.038);
  color: var(--soft);
  font-size: 0.94rem;
  font-weight: 850;
}

.how-section li span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--amber);
  background: rgba(240, 198, 109, 0.12);
  font-size: 0.78rem;
  font-weight: 950;
}

.scan-demo {
  position: relative;
  min-height: 206px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 74% 24%, rgba(142, 231, 211, 0.14), transparent 11rem),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    rgba(255, 255, 255, 0.032);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.scan-demo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.scan-demo-phone {
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025)),
    #060606;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.52),
    0 20px 48px rgba(0, 0, 0, 0.44);
  overflow: hidden;
}

.scan-demo-phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 3;
  width: 48px;
  height: 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.92);
  transform: translateX(-50%);
}

.scan-demo-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
}

.scan-demo-qr {
  left: 10px;
  bottom: -18px;
  width: 118px;
  height: 198px;
  transform: rotate(-6deg);
}

.scan-demo-camera {
  top: 12px;
  right: 12px;
  width: 150px;
  height: 196px;
  transform: rotate(4deg);
}

.scan-demo-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(142, 231, 211, 0.1), transparent 36%),
    #090a0a;
}

.scan-demo-camera-ui {
  position: absolute;
  inset: 32px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.018);
  background-size: 26px 26px;
}

.scan-demo-frame {
  position: absolute;
  inset: 18% 13%;
  border: 2px solid rgba(142, 231, 211, 0.78);
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(142, 231, 211, 0.2);
}

.scan-demo-frame::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 12%;
  height: 3px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 20px rgba(142, 231, 211, 0.75);
  animation: marketingScanBeam 2200ms ease-in-out infinite;
}

.scan-demo-alert {
  position: absolute;
  right: 10px;
  bottom: 14px;
  left: 70px;
  z-index: 4;
  padding: 11px 12px;
  border: 1px solid rgba(142, 231, 211, 0.28);
  border-radius: 16px;
  background: rgba(14, 15, 17, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  animation: marketingCardPop 3600ms ease-in-out infinite;
}

.scan-demo-alert small,
.scan-demo-alert span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.25;
}

.scan-demo-alert strong {
  display: block;
  margin: 3px 0;
  color: #b7ffb7;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.05;
}

@keyframes marketingScanBeam {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(72px);
  }
}

@keyframes marketingCardPop {
  0%,
  34% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  44%,
  84% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

.launch-app-button {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  z-index: 30;
  min-height: 44px;
  padding: 0 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.marketing-route.has-scrolled .launch-app-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (min-width: 760px) {
  .marketing-shell {
    width: min(calc(100% - 48px), 980px);
    grid-template-columns: 1.06fr 0.94fr;
    align-items: start;
  }

  .marketing-nav,
  .hero-section,
  .location-photo-section,
  .location-video-section,
  .location-save-section,
  .marketing-footer {
    grid-column: 1 / -1;
  }

  .marketing-footer {
    justify-content: flex-start;
  }

  .footer-pills {
    width: 100%;
    grid-template-columns: minmax(0, 410px) 58px minmax(0, 410px);
    justify-content: space-between;
  }

  .footer-pill-icon {
    width: 58px;
    min-height: 58px;
    justify-self: center;
  }

  .hero-section {
    min-height: 620px;
    padding: 70px 48px;
  }

  .location-photo-section,
  .location-video-section {
    min-height: 620px;
  }

  html[data-site="ironpass"] .location-photo-section {
    display: block;
  }

  .location-video-section {
    display: none;
  }

  .location-save-section {
    min-height: 360px;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: center;
    padding: 42px 44px;
  }

  .location-save-section::before {
    inset: 18px;
  }

  .location-save-copy {
    padding: 0;
  }

  .location-save-section ol {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .location-save-note {
    margin-top: 2px;
  }

  .location-save-art {
    min-height: 270px;
    padding: 0 34px 0 0;
  }

  .location-save-phone {
    --location-save-phone-rotate: -7deg;
    --location-save-phone-shift: -8px;
    width: 214px;
    height: 318px;
  }

  .location-hero {
    min-height: min(620px, calc(100vh - 190px));
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(5.6rem, 10vw, 8rem);
  }

  .hero-copy {
    max-width: 28rem;
    font-size: 1.2rem;
  }

  .primary-cta {
    width: fit-content;
    min-width: 250px;
    padding: 0 28px;
  }

  .location-list {
    width: min(100%, 410px);
  }

  .access-pills {
    width: min(100%, 410px);
  }

  .proof-section {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .marketing-columns {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 18px;
    align-items: start;
  }

  .marketing-column {
    display: grid;
    gap: 18px;
    align-content: start;
    min-width: 0;
  }

  .freedom-section {
    min-height: clamp(460px, 52vw, 680px);
    padding: clamp(34px, 5vw, 58px);
  }

  .pricing-section,
  .partner-gyms-section,
  .rewards-section,
  .how-section,
  .app-save-section {
    width: 100%;
  }

  .how-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .freedom-section h2 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 6.4vw, 5.8rem);
    font-weight: 950;
    line-height: 0.88;
  }

  .freedom-section p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .app-save-section {
    padding: 26px 24px;
  }

  .app-save-section h2 strong {
    font-size: 2.75rem;
  }

  .app-save-icon {
    width: 174px;
    margin-block: 6px 8px;
  }

  .scan-demo {
    min-height: 276px;
  }

  .scan-demo-qr {
    left: 14px;
    bottom: -14px;
    width: 136px;
    height: 228px;
  }

  .scan-demo-camera {
    top: 14px;
    right: 14px;
    width: 166px;
    height: 226px;
  }

  .scan-demo-alert {
    left: 68px;
    right: 12px;
    bottom: 18px;
  }
}

@media (max-width: 360px) {
  .marketing-shell {
    width: calc(100vw - 26px);
  }

  h1 {
    font-size: 2.82rem;
  }

  .section-heading h2,
  .how-section h2 {
    font-size: 1.78rem;
  }

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

  .app-save-section h2 strong {
    font-size: 2.22rem;
  }

  .app-save-icon {
    width: 132px;
  }

  .scan-demo {
    min-height: 186px;
  }

  .scan-demo-qr {
    left: 7px;
    width: 100px;
    height: 176px;
  }

  .scan-demo-camera {
    right: 8px;
    width: 128px;
    height: 176px;
  }

  .scan-demo-alert {
    left: 54px;
    right: 8px;
    padding: 10px;
  }

  .scan-demo-alert strong {
    font-size: 0.92rem;
  }

  .review-demo {
    min-height: 264px;
  }

  .review-demo-phone {
    right: 20px;
    width: 150px;
    height: 238px;
  }

  .review-demo-compose {
    margin-top: 18px;
  }

  .review-demo-compose h3 {
    font-size: 1.16rem;
  }

  .review-demo-pass {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 10px;
  }

  .review-demo-pass b {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-title-word {
    opacity: 1 !important;
    transform: none !important;
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .location-save-section.is-step-sequence-active li {
    color: var(--soft);
    transform: none;
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .location-cta::after {
    animation: none;
    opacity: 0;
  }

  .location-photo-slide {
    animation: none;
    filter: none;
    transform: none;
  }

  .location-photo-slide:first-child {
    opacity: 1;
  }

  .location-save-phone,
  .location-save-safari,
  .location-save-sheet,
  .location-save-add-home,
  .location-save-home-screen,
  .location-save-tap-ring {
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .location-save-safari,
  .location-save-sheet,
  .location-save-add-home,
  .location-save-tap-ring {
    opacity: 0;
  }

  .location-save-home-screen {
    opacity: 1;
    transform: scale(1);
  }
}
