@font-face {
  font-display: swap;
  font-family: "Stack Sans Headline";
  font-style: normal;
  font-weight: 400 800;
  src: url("/assets/product-media/fonts/StackSans-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Stack Sans Headline";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/product-media/fonts/StackSans-Bold.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #000;
  --canvas: #030303;
  --surface: #0d0d0d;
  --surface-raised: rgba(23, 23, 23, 0.72);
  --surface-button: #262626;
  --surface-line: #404040;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-dim: #737373;
  --accent: #e85d04;
  --accent-2: #f48c06;
  --accent-transparent: rgba(232, 93, 4, 0);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --shell: min(1120px, calc(100vw - 80px));
  --narrow: min(824px, calc(100vw - 80px));
  --nav-width: 544px;
  --ease-out: cubic-bezier(0.12, 0.23, 0.5, 1);
  --ease-soft: cubic-bezier(0.1, 0.59, 0.5, 1);
  --springish: cubic-bezier(0.16, 1, 0.3, 1);
  --phone-enter-y: 250px;
  --phone-exit-y: -150px;
  --hero-lockup-travel: -260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Stack Sans Headline", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 180ms var(--springish);
}

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

.home-page {
  background:
    radial-gradient(50% 44% at 50% 0%, rgba(232, 93, 4, 0.18), transparent 72%),
    #000;
}

[data-parallax] {
  --parallax-y: 0px;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 60;
  display: flex;
  width: var(--nav-width);
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(23, 23, 23, 0.72);
  box-shadow:
    0 0.637px 0.637px -0.938px rgba(0, 0, 0, 0.18),
    0 1.932px 1.932px -1.875px rgba(0, 0, 0, 0.17),
    0 5.106px 5.106px -2.813px rgba(0, 0, 0, 0.15),
    0 16px 16px -3.75px rgba(0, 0, 0, 0.06);
  opacity: var(--appear-opacity, 1);
  transform: translate3d(-50%, var(--appear-y, 0px), 0);
  transition:
    opacity 2000ms var(--springish),
    transform 2000ms var(--springish);
  backdrop-filter: blur(10px);
}

.site-header[data-appear] {
  --appear-opacity: 1;
  --appear-y: -78px;
}

.site-header.is-visible {
  --appear-y: 0px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  object-fit: contain;
}

.site-header .brand {
  min-width: 44px;
  justify-content: center;
}

.site-header .brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition:
    background 180ms var(--springish),
    transform 180ms var(--springish);
}

.site-nav a:not(.nav-cta) {
  padding: 8px 12px;
}

.nav-cta {
  padding: 8px 12px;
  background: var(--surface-button);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 18px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms var(--springish),
    background 180ms var(--springish),
    color 180ms var(--springish);
}

.button-primary {
  background: var(--text);
  color: #171717;
}

.button-secondary {
  background: var(--surface-button);
  color: var(--text);
}

.button:active,
.site-nav a:active {
  transform: translateY(1px) scale(0.99);
}

.appzen-section {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 160px 0;
  overflow: clip;
}

.hero-section {
  min-height: auto;
  flex-direction: column;
  padding: 160px 0 120px;
}

.ambient-bg {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
}

.ambient-glow {
  position: absolute;
  top: 0;
  right: -398px;
  left: -398px;
  height: 600px;
  border-radius: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 93, 4, 0.24), var(--accent-transparent) 100%);
  filter: blur(8px);
  opacity: 0.84;
  -webkit-mask: radial-gradient(31% 29% at 50% 30.6%, rgba(0, 0, 0, 0.24), transparent 100%);
  mask: radial-gradient(31% 29% at 50% 30.6%, rgba(0, 0, 0, 0.24), transparent 100%);
}

.ambient-dots {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  max-width: none;
  height: 600px;
  opacity: 0.26;
  object-fit: cover;
  mix-blend-mode: screen;
  transform: translate3d(-50%, var(--parallax-y, 0px), 0);
  -webkit-mask: radial-gradient(65% 50%, rgba(0, 0, 0, 0.88) 25%, transparent 100%);
  mask: radial-gradient(65% 50%, rgba(0, 0, 0, 0.88) 25%, transparent 100%);
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("/assets/product-media/6mcf62RlDfRfU61Yg5vb2pefpi42774.png");
  background-size: 128px auto;
  background-repeat: repeat;
  pointer-events: none;
}

.hero-title,
.section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 880px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

[data-appear]:not(.site-header) {
  opacity: var(--appear-opacity, 0.001);
  transform: translate3d(0, var(--appear-y, 0px), 0) scale(var(--appear-scale, 1));
  transition:
    opacity var(--appear-duration, 700ms) var(--appear-ease, var(--springish)) var(--appear-delay, 0ms),
    transform var(--appear-duration, 700ms) var(--appear-ease, var(--springish)) var(--appear-delay, 0ms);
  will-change: transform, opacity;
}

[data-appear]:not(.site-header).is-visible {
  --appear-opacity: 1;
  --appear-y: 0px;
  --appear-scale: 1;
}

[data-appear="title"] {
  --appear-duration: 2500ms;
  --appear-ease: var(--ease-out);
}

[data-appear="fade"] {
  --appear-duration: 400ms;
  --appear-ease: cubic-bezier(0.44, 0, 0.56, 1);
}

[data-appear="mockup"],
[data-card] {
  --appear-y: 120px;
  --appear-duration: 1800ms;
}

[data-appear="content"] {
  --appear-y: 20px;
  --appear-duration: 600ms;
  --appear-delay: 400ms;
}

[data-appear="card"] {
  --appear-y: 20px;
  --appear-duration: 600ms;
}

.rating-pill,
.section-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 6px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.rating-pill strong {
  color: var(--text);
}

.rating-pill strong::after {
  content: "*";
  margin-left: 4px;
  color: var(--accent-2);
}

.hero-title h1,
.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(72px, 8.8vw, 142px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.section-heading h2 {
  font-size: clamp(52px, 5.8vw, 84px);
  max-width: 820px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 58px;
}

.hero-visual {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 644px;
  aspect-ratio: 0.766667;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.mockup-mask {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  -webkit-mask: linear-gradient(#000 12%, transparent 100%);
  mask: linear-gradient(#000 12%, transparent 100%);
}

.hero-phone {
  width: min(100%, 610px);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 44px 96px rgba(0, 0, 0, 0.66));
}

.hero-green-glow {
  position: absolute;
  z-index: -1;
  border-radius: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 93, 4, 0.24), transparent 100%);
  filter: blur(8px);
}

.hero-green-glow {
  inset: 20% -18% 0;
  opacity: 0.2;
}

.cta-content {
  --hero-lockup-y: 0px;
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  max-width: 580px;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
  overflow: visible;
}

.cta-content[data-hero-lockup] {
  opacity: 1;
  transform: translate3d(0, var(--hero-lockup-y, 0px), 0);
  will-change: transform;
}

.statement-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  width: var(--statement-logo-size, 148px);
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.statement-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(232, 93, 4, 0.28));
}

.statement-copy {
  max-width: 580px;
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-wrap: balance;
}

.statement-copy span {
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
}

.app-store-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
}

.app-store-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 8px 12px;
  background: var(--surface);
}

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 50;
  width: 1120px;
  max-width: calc(100vw - 24px);
  padding: 12px 12px 56px;
  border-radius: 16px;
  background: radial-gradient(50% 100% at 50% 100%, rgba(0, 0, 0, 0.85), transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 120px, 0);
  transition:
    opacity 600ms var(--springish),
    transform 600ms var(--springish);
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.floating-cta-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.features-section,
.reviews-section,
.launch-section {
  flex-direction: column;
  padding: 160px 0;
}

.feature-cards {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  --mockup-y: 0px;
  --phone-y: 0px;
  --phone-opacity: 1;
  --phone-scale: 1;
  --feature-mask-x: 63.4%;
  --feature-glow-x: 50%;
  position: relative;
  display: flex;
  width: 1120px;
  max-width: var(--shell);
  min-height: 600px;
  overflow: clip;
  border-radius: 44px;
  background: var(--surface);
  opacity: var(--card-opacity, 0);
  transform: translate3d(0, var(--card-y, 64px), 0);
  transition:
    opacity 800ms var(--springish),
    transform 800ms var(--springish),
    border-color 180ms var(--springish);
  will-change: transform, opacity;
}

.feature-card.is-visible {
  --card-opacity: 1;
  --card-y: 0px;
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 410px;
  flex: 0 0 410px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.feature-card-alt .feature-copy {
  order: 2;
}

.feature-card-alt {
  --feature-mask-x: 39.7%;
  --feature-glow-x: 42%;
}

.panel-kicker {
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
}

.feature-copy h3,
.launch-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.feature-copy p,
.launch-card p {
  margin: 22px 0 0;
  color: var(--text-muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(245, 245, 245, 0.82);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  content: "";
  box-shadow: 0 0 18px rgba(232, 93, 4, 0.72);
}

.feature-media {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.feature-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  -webkit-mask: radial-gradient(
    50% 100% at var(--feature-mask-x) 50%,
    rgba(0, 0, 0, 0.32) 0%,
    transparent 100%
  );
  mask: radial-gradient(
    50% 100% at var(--feature-mask-x) 50%,
    rgba(0, 0, 0, 0.32) 0%,
    transparent 100%
  );
  background: rgba(232, 93, 4, 0.16);
}

.feature-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  object-fit: cover;
  mix-blend-mode: screen;
}

.feature-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(50% 50% at var(--feature-glow-x) 58%, rgba(232, 93, 4, 0.2), transparent 62%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.feature-mockup {
  position: relative;
  z-index: 2;
  width: min(560px, 86%);
  max-width: none;
  margin-top: 64px;
  overflow: clip;
  border-radius: 32px;
  filter: saturate(1.14);
  transform: translate3d(0, var(--mockup-y, 0px), 0);
  will-change: transform;
  -webkit-mask: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 56%
  );
  mask: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 56%
  );
}

.feature-phone {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
  opacity: var(--phone-opacity, 1);
  filter: drop-shadow(0 48px 98px rgba(0, 0, 0, 0.62));
  transform: translate3d(0, var(--phone-y, 0px), 0) scale(var(--phone-scale, 1));
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

.reviews-shell {
  display: flex;
  width: min(824px, calc(100vw - 80px));
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.reviews-badge,
.review-feature {
  position: relative;
  overflow: clip;
  border-radius: 32px;
  background: var(--surface);
}

.reviews-badge {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: auto;
  padding: 24px 28px;
}

.reviews-badge strong,
.reviews-badge span {
  display: block;
}

.reviews-badge strong {
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.reviews-badge span,
.reviewer span,
.review-date {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
}

.stacked-avatars {
  display: flex;
  align-items: center;
}

.stacked-avatars img {
  width: 52px;
  height: 52px;
  border: 3px solid var(--surface);
  border-radius: 999px;
  object-fit: cover;
}

.stacked-avatars img + img {
  margin-left: -14px;
}

.review-stage {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  overflow: clip;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
  animation: review-rail 42s linear infinite;
}

.review-track-b {
  animation-direction: reverse;
  animation-duration: 48s;
}

.review-feature {
  display: flex;
  width: 292px;
  min-height: 282px;
  flex: 0 0 292px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    radial-gradient(55% 70% at 84% 12%, rgba(232, 93, 4, 0.14), transparent 70%),
    var(--surface);
}

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

.reviewer {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.reviewer img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
}

.reviewer strong,
.reviewer span {
  display: block;
}

.reviewer strong {
  font-size: 14px;
}

.review-feature h2 {
  margin: 28px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.review-feature p {
  max-width: 100%;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.42;
}

.stars {
  margin-top: 20px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@keyframes review-rail {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

.pricing-cards {
  display: flex;
  width: var(--narrow);
  align-items: stretch;
  gap: 16px;
  margin-top: 56px;
}

.launch-card {
  display: flex;
  min-height: 480px;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 40px;
  background: var(--surface);
  padding: 32px;
  opacity: var(--card-opacity, 0);
  transform: translate3d(0, var(--card-y, 64px), 0);
  transition:
    opacity 800ms var(--springish),
    transform 800ms var(--springish);
}

.launch-card.is-visible {
  --card-opacity: 1;
  --card-y: 0px;
}

.launch-card .button {
  margin-top: 32px;
}

.download-card {
  position: relative;
  gap: 28px;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(232, 93, 4, 0.18), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 38%),
    var(--surface);
}

.download-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(80% 72% at 50% 36%, rgba(0, 0, 0, 0.72), transparent 78%);
  opacity: 0.42;
  pointer-events: none;
}

.download-card > * {
  position: relative;
  z-index: 1;
}

.store-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.store-mark {
  display: inline-flex;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--text);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(232, 93, 4, 0.18);
}

.store-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.download-qr {
  position: relative;
  display: flex;
  width: min(220px, 58vw);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  align-self: center;
  overflow: hidden;
  border: 12px solid rgba(246, 243, 235, 0.92);
  border-radius: 28px;
  background-color: rgba(246, 243, 235, 0.92);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(23, 23, 23, 0.2);
}

.download-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-qr-alt {
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 72px rgba(232, 93, 4, 0.14),
    inset 0 0 0 1px rgba(23, 23, 23, 0.2);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.68;
  pointer-events: none;
}

.template-footer {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 120px 0 0;
  overflow: clip;
}

.footer-card {
  position: relative;
  display: flex;
  width: calc(100vw - 12px);
  max-width: 1440px;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  overflow: clip;
  border-radius: 40px;
  background: rgba(13, 13, 13, 0.72);
  padding: 80px 80px 44px;
}

.footer-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.48;
}

.footer-card::before {
  position: absolute;
  inset: -30% 0 auto;
  height: 80%;
  content: "";
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(232, 93, 4, 0.18), transparent 70%),
    radial-gradient(60% 100% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 64%);
  filter: blur(8px);
}

.footer-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100vw - 40px));
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  padding: 70px 0 48px;
  color: var(--text-muted);
}

.brand-footer {
  justify-content: center;
  color: var(--text);
  font-size: 28px;
}

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

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--text-muted);
  font-weight: 800;
}

.footer-links a {
  position: relative;
  padding: 0 14px;
}

.footer-links a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--surface-line);
  transform: translateY(-50%);
}

.footer-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--surface-line);
  text-align: center;
}

.progressive-blur {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 2;
  height: 140px;
  pointer-events: none;
  backdrop-filter: blur(1px);
}

.progressive-blur-top {
  top: 0;
  -webkit-mask: linear-gradient(to top, transparent 0%, #000 100%);
  mask: linear-gradient(to top, transparent 0%, #000 100%);
}

.progressive-blur-bottom {
  bottom: 0;
  height: 180px;
  -webkit-mask: linear-gradient(to bottom, transparent 0%, #000 100%);
  mask: linear-gradient(to bottom, transparent 0%, #000 100%);
}

.legal-page {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.page-hero,
.support-card,
.legal-content,
.fallback-card {
  border: 1px solid var(--line-soft);
  background: rgba(20, 19, 18, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.page-hero {
  padding: 54px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 93, 4, 0.18), transparent 30%),
    rgba(20, 19, 18, 0.82);
}

.page-hero h1 {
  max-width: 900px;
  margin: 26px 0 0;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.page-hero p,
.legal-content p,
.legal-content li,
.support-card p,
.fallback-card p {
  color: var(--text-muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.support-card {
  padding: 32px;
  border-radius: 30px;
}

.support-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.support-card p {
  margin: 0;
}

.legal-content {
  max-width: 900px;
  margin: 22px auto 0;
  padding: 44px;
  border-radius: 42px;
}

.legal-content h2,
.legal-content h3 {
  margin: 44px 0 12px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-content a,
.support-card a {
  color: var(--accent-2);
  font-weight: 800;
}

.fallback-layout {
  min-height: 100svh;
  display: grid;
  width: min(720px, calc(100% - 36px));
  place-content: center;
  gap: 24px;
  margin: 0 auto;
  padding: 64px 0;
}

.fallback-card {
  padding: 44px;
  border-radius: 42px;
}

.fallback-card h1 {
  margin: 22px 0 14px;
  font-size: clamp(42px, 8vw, 78px);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.route-preview {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover,
  .button:hover,
  .footer-links a:hover {
    transform: translateY(-1px);
  }

  .nav-cta:hover,
  .button-secondary:hover {
    background: #303030;
  }

  .button-primary:hover {
    background: #fff8ef;
  }
}

@media (min-width: 810px) and (max-width: 1439.98px) {
  :root {
    --shell: min(730px, calc(100vw - 80px));
    --narrow: min(824px, calc(100vw - 80px));
    --phone-enter-y: 190px;
    --phone-exit-y: -110px;
    --hero-lockup-travel: -220px;
  }

  .site-header {
    width: min(520px, calc(100vw - 48px));
  }

  .appzen-section {
    padding: 120px 40px;
  }

  .hero-section {
    padding: 160px 40px 120px;
  }

  .hero-title,
  .section-heading,
  .cta-content {
    max-width: 604px;
  }

  .hero-title h1 {
    font-size: clamp(70px, 10vw, 118px);
  }

  .hero-visual {
    max-width: 564px;
  }

  .statement-logo-wrap {
    --statement-logo-size: 128px;
  }

  .feature-cards {
    gap: 16px;
  }

  .feature-card {
    width: 730px;
    max-width: var(--shell);
    flex-direction: column;
    align-items: center;
  }

  .feature-copy,
  .feature-card-alt .feature-copy {
    order: 0;
    width: 100%;
    flex-basis: auto;
    padding: 48px;
  }

  .feature-media {
    width: 100%;
    min-height: 480px;
  }

  .feature-mockup {
    width: min(520px, 78vw);
    margin-top: 32px;
  }

  .reviews-shell,
  .pricing-cards {
    width: min(824px, calc(100vw - 80px));
  }

  .reviews-badge {
    width: 100%;
    min-height: auto;
    flex-basis: auto;
    gap: 40px;
  }

  .review-stage {
    width: 100%;
  }

  .footer-card {
    border-radius: 32px;
    padding: 64px 24px 24px;
  }

}

@media (max-width: 809.98px) {
  :root {
    --shell: min(100%, calc(100vw - 48px));
    --narrow: min(100%, calc(100vw - 48px));
    --phone-enter-y: 140px;
    --phone-exit-y: -72px;
    --hero-lockup-travel: -128px;
  }

  .site-header {
    top: 16px;
    width: calc(100vw - 32px);
    padding: 8px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .appzen-section {
    padding: 80px 24px;
  }

  .hero-section {
    padding: 120px 24px 80px;
  }

  .hero-title,
  .section-heading,
  .cta-content {
    max-width: 604px;
    gap: 24px;
  }

  .hero-title h1 {
    font-size: clamp(48px, 15vw, 76px);
    letter-spacing: -0.052em;
  }

  .section-heading h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-bottom {
    gap: 0;
    margin-top: 42px;
  }

  .hero-visual {
    max-width: 344px;
  }

  .cta-content {
    gap: 32px;
  }

  .statement-logo-wrap {
    --statement-logo-size: 92px;
  }

  .statement-copy {
    font-size: clamp(28px, 8.3vw, 36px);
  }

  .hero-actions,
  .floating-cta-inner {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .floating-cta {
    width: 390px;
    max-width: calc(100vw - 24px);
    padding-bottom: 34px;
  }

  .feature-cards {
    gap: 16px;
  }

  .feature-card {
    width: 342px;
    max-width: var(--shell);
    min-height: 630px;
    flex-direction: column;
    border-radius: 32px;
  }

  .feature-copy,
  .feature-card-alt .feature-copy {
    order: 0;
    width: 100%;
    flex-basis: auto;
    padding: 34px 26px 0;
  }

  .feature-copy h3,
  .launch-card h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .feature-media {
    min-height: 408px;
  }

  .feature-mockup {
    width: min(380px, 92vw);
    margin-top: 34px;
  }

  .reviews-shell,
  .pricing-cards {
    width: var(--narrow);
    flex-direction: column;
  }

  .reviews-badge {
    width: 100%;
    min-height: auto;
    flex-basis: auto;
    gap: 40px;
  }

  .review-stage {
    width: 100%;
  }

  .review-feature {
    width: min(292px, calc(100vw - 72px));
    min-height: 260px;
    flex-basis: min(292px, calc(100vw - 72px));
    padding: 28px;
  }

  .pricing-cards {
    gap: 16px;
  }

  .launch-card {
    min-height: 420px;
  }

  .store-lockup {
    align-items: flex-start;
  }

  .store-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .store-mark img {
    width: 34px;
    height: 34px;
  }

  .download-qr {
    width: min(210px, 70vw);
  }

  .template-footer {
    gap: 40px;
    padding-top: 120px;
  }

  .footer-card {
    border-radius: 32px;
    padding: 64px 24px 24px;
  }

  .footer-card-inner,
  .footer-actions,
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    align-items: center;
  }

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

  .page-hero,
  .legal-content,
  .fallback-card {
    padding: 28px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-appear],
  [data-card],
  .site-header,
  .floating-cta {
    --appear-opacity: 1 !important;
    --appear-y: 0px !important;
    --appear-scale: 1 !important;
    --card-opacity: 1 !important;
    --card-y: 0px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header {
    transform: translateX(-50%) !important;
  }

  [data-parallax] {
    --parallax-y: 0px !important;
  }

  [data-hero-lockup] {
    --hero-lockup-y: 0px !important;
  }

  [data-scroll-section] {
    --mockup-y: 0px !important;
    --phone-y: 0px !important;
    --phone-opacity: 1 !important;
    --phone-scale: 1 !important;
  }

  .review-stage {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .review-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none !important;
    transform: none !important;
  }

  .review-feature[aria-hidden="true"] {
    display: none;
  }
}
