/* Per Push — Marketing landing page
   Pure CSS · no external dependencies */

/* -------------------------------------------------------------------------- */
/* Theme                                                                      */
/* -------------------------------------------------------------------------- */

:root {
  --canvas: #fefaf5;
  --ink: #1c1108;
  --ink-muted: #a07858;
  --accent: #d94f0a;
  --accent-bright: #e8651f;
  --accent-wash: #fff4ec;
  --hero-wash: #fff7f1;

  --font-sans: system-ui, -apple-system, "SF Pro Text", "SF Pro Display", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(28, 17, 8, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 17, 8, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 17, 8, 0.12);
  --shadow-accent: 0 12px 32px rgba(217, 79, 10, 0.28);

  --header-height: 72px;
  --container: min(1120px, calc(100% - 2.5rem));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.25s var(--ease-out);
}

/* -------------------------------------------------------------------------- */
/* Reset & base                                                               */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-bright);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 3px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

code {
  font-size: 0.875em;
  padding: 0.15em 0.4em;
  border-radius: 6px;
  background: var(--accent-wash);
  color: var(--ink);
}

/* -------------------------------------------------------------------------- */
/* Utilities                                                                  */
/* -------------------------------------------------------------------------- */

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.section--alt {
  background: linear-gradient(180deg, var(--hero-wash) 0%, var(--canvas) 100%);
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-top: 0.5rem;
}

.section-lead {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-muted);
  line-height: 1.55;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--canvas);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

.reveal--delay {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

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

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

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

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.btn--sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-accent);
  text-decoration: none;
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(217, 79, 10, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

/* App Store badge */
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.app-store-badge:hover {
  color: #fff;
  background: #2a1810;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.app-store-badge--large {
  padding: 0.85rem 1.5rem 0.85rem 1.15rem;
  border-radius: 16px;
}

.app-store-badge__icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}

.app-store-badge--large .app-store-badge__icon {
  width: 32px;
  height: 32px;
}

.app-store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.app-store-badge__line {
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0.92;
}

.app-store-badge__line--bold {
  font-size: 1.125rem;
  font-weight: 700;
  opacity: 1;
}

.app-store-badge--large .app-store-badge__line--bold {
  font-size: 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                               */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(254, 250, 245, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(160, 120, 88, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.nav__brand:hover {
  color: var(--ink);
}

.nav__logo {
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(254, 250, 245, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(160, 120, 88, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--transition),
      opacity var(--transition),
      visibility var(--transition);
  }

  .nav__panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav__links a {
    font-size: 1.0625rem;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 101, 31, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255, 244, 236, 0.9), transparent 55%),
    linear-gradient(180deg, var(--hero-wash) 0%, var(--canvas) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-top: 0.75rem;
}

.hero__subtitle {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-muted);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__character {
  position: absolute;
  bottom: -8%;
  left: 4%;
  width: clamp(72px, 14vw, 120px);
  filter: drop-shadow(0 8px 16px rgba(28, 17, 8, 0.12));
  animation: float 4s ease-in-out infinite;
}

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

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__visual {
    order: -1;
  }

  .hero__character {
    left: 8%;
    bottom: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Phone frame                                                                */
/* -------------------------------------------------------------------------- */

.phone-frame {
  position: relative;
}

.phone-frame__shell {
  position: relative;
  padding: 10px;
  background: linear-gradient(145deg, #2a1810, #1c1108);
  border-radius: clamp(28px, 5vw, 40px);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-frame--hero .phone-frame__shell {
  width: min(280px, 72vw);
}

.phone-frame--compact .phone-frame__shell {
  width: 220px;
}

.phone-frame__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 22px;
  background: #0d0804;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-frame__screen,
.phone-frame__shell img {
  width: 100%;
  border-radius: clamp(20px, 3.5vw, 30px);
  background: #000;
}

.phone-frame__glow {
  position: absolute;
  inset: 20% -15% -10%;
  background: radial-gradient(circle, rgba(217, 79, 10, 0.22), transparent 70%);
  z-index: -1;
  filter: blur(24px);
}

/* -------------------------------------------------------------------------- */
/* Proof strip                                                                */
/* -------------------------------------------------------------------------- */

.proof-strip {
  padding-block: clamp(1.5rem, 4vw, 2.25rem);
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 101, 31, 0.08), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(232, 101, 31, 0.06), transparent 40%),
    var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.proof-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(254, 250, 245, 0.06);
  border: 1px solid rgba(254, 250, 245, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.proof-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 101, 31, 0.18);
  color: var(--accent-bright);
}

.proof-card__icon svg {
  width: 22px;
  height: 22px;
}

.proof-card__stat {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 700;
  color: var(--canvas);
  line-height: 1.35;
}

.proof-card__stat strong {
  color: var(--accent-bright);
  font-weight: 900;
}

.proof-card__detail {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(254, 250, 245, 0.72);
}

@media (max-width: 800px) {
  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* -------------------------------------------------------------------------- */
/* Steps                                                                      */
/* -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(160, 120, 88, 0.12);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card__number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-wash);
  -webkit-text-stroke: 1px rgba(217, 79, 10, 0.15);
}

.step-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--accent-wash);
  color: var(--accent);
}

.step-card__icon svg {
  width: 24px;
  height: 24px;
}

.step-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step-card__text {
  margin-top: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Features grid                                                              */
/* -------------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem;
  background: linear-gradient(160deg, #fff 0%, var(--hero-wash) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(160, 120, 88, 0.1);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 79, 10, 0.2);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--accent-wash);
  color: var(--accent);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Showcase gallery                                                           */
/* -------------------------------------------------------------------------- */

.showcase-gallery {
  margin-top: 0.5rem;
}

.showcase-gallery__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
}

.showcase-gallery__featured {
  margin: 0;
  text-align: center;
}

.showcase-gallery__frame {
  position: relative;
  max-width: min(320px, 72vw);
  margin-inline: auto;
  border-radius: clamp(24px, 4vw, 32px);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(28, 17, 8, 0.18),
    0 0 0 1px rgba(160, 120, 88, 0.08);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.showcase-gallery__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.showcase-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.35s var(--ease-out);
}

.showcase-gallery__image.is-fading {
  opacity: 0;
}

.showcase-gallery__caption {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.showcase-gallery__label {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.showcase-gallery__desc {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  max-width: 420px;
  margin-inline: auto;
}

.showcase-gallery__nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(160, 120, 88, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.showcase-gallery__nav svg {
  width: 22px;
  height: 22px;
}

.showcase-gallery__nav:hover {
  background: var(--accent-wash);
  border-color: rgba(217, 79, 10, 0.3);
  box-shadow: var(--shadow-md);
}

.showcase-gallery__nav:active {
  transform: scale(0.96);
}

.showcase-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: safe center;
}

.showcase-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.showcase-gallery__thumb {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  scroll-snap-align: center;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.showcase-gallery__thumb img {
  width: 56px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  opacity: 0.72;
  transition: opacity var(--transition), box-shadow var(--transition);
}

.showcase-gallery__thumb span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.showcase-gallery__thumb:hover img {
  opacity: 0.9;
}

.showcase-gallery__thumb.is-active {
  border-color: var(--accent);
  background: var(--accent-wash);
}

.showcase-gallery__thumb.is-active img {
  opacity: 1;
  box-shadow: 0 8px 20px rgba(217, 79, 10, 0.22);
}

.showcase-gallery__thumb.is-active span {
  color: var(--accent);
}

.showcase-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.showcase-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(160, 120, 88, 0.25);
  transition:
    background var(--transition),
    transform var(--transition);
}

.showcase-gallery__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .showcase-gallery__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .showcase-gallery__nav {
    width: 44px;
    height: 44px;
  }

  .showcase-gallery__nav--prev {
    grid-row: 2;
    justify-self: start;
  }

  .showcase-gallery__featured {
    grid-row: 1;
  }

  .showcase-gallery__nav--next {
    grid-row: 2;
    justify-self: end;
  }

  .showcase-gallery__thumbs {
    margin-top: 1.25rem;
    justify-content: flex-start;
  }
}

/* -------------------------------------------------------------------------- */
/* Quote                                                                      */
/* -------------------------------------------------------------------------- */

.quote-block {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-wash), #fff);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(217, 79, 10, 0.12);
  box-shadow: var(--shadow-md);
}

.quote-block::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(217, 79, 10, 0.15);
}

.quote-block__text {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.quote-block__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
  font-style: normal;
}

.quote-block__icon {
  border-radius: 8px;
}

.quote-block__footer cite {
  font-weight: 700;
  font-style: normal;
  color: var(--ink-muted);
}

/* -------------------------------------------------------------------------- */
/* Privacy                                                                    */
/* -------------------------------------------------------------------------- */

.privacy__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.privacy__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.privacy__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(160, 120, 88, 0.1);
  box-shadow: var(--shadow-sm);
}

.privacy__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-wash);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.875rem;
}

.privacy__item strong {
  display: block;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.privacy__item p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

@media (max-width: 800px) {
  .privacy__grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* CTA                                                                        */
/* -------------------------------------------------------------------------- */

.cta__card {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 101, 31, 0.12), transparent 55%),
    linear-gradient(180deg, #fff, var(--hero-wash));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(160, 120, 88, 0.12);
  box-shadow: var(--shadow-lg);
}

.cta__icon {
  margin-inline: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.cta__title {
  margin-top: 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 640px;
  margin-inline: auto;
}

.cta__subtitle {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-size: 1.0625rem;
}

.cta .app-store-badge {
  margin-top: 2rem;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(160, 120, 88, 0.12);
  background: var(--hero-wash);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--ink);
}

.site-footer__brand img {
  border-radius: 7px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.site-footer__nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* -------------------------------------------------------------------------- */
/* Legal pages                                                                */
/* -------------------------------------------------------------------------- */

.legal-page main {
  padding-block: clamp(2rem, 5vw, 3rem) clamp(3rem, 8vw, 5rem);
}

.legal-doc {
  max-width: 720px;
  margin-inline: auto;
}

.legal-doc__updated {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.legal-doc__section + .legal-doc__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(160, 120, 88, 0.12);
}

.legal-doc__heading {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.legal-doc__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.legal-doc__body a {
  font-weight: 600;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--accent);
}

.legal-back svg {
  width: 18px;
  height: 18px;
}

.legal-doc__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.legal-page .nav__panel--legal {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 768px) {
  .legal-page .nav__links {
    display: none;
  }
}
