/* RateTheRef marketing — Stitch design */

.landing-page {
  --bg: #111125;
  --primary: #3a0ca3;
  --accent: #f72585;
  --gold: #ffd700;
  --surface-low: #1a1a2e;
  --surface: #1e1e32;
  --surface-high: #28283d;
  --text: #e2e0fc;
  --muted: #cac4d6;
  --arcade-shadow: 6px 6px 0 rgba(0, 0, 0, 0.8);
  --arcade-shadow-active: 2px 2px 0 rgba(0, 0, 0, 0.8);
  --font-display: 'Anybody', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
}

.landing-page .container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* —— Arcade buttons & cards —— */
.landing-page .btn-arcade,
.landing-page .card-arcade {
  box-shadow: var(--arcade-shadow);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.landing-page .btn-arcade:hover,
.landing-page .btn-arcade:focus-visible,
.landing-page .card-arcade:hover {
  transform: translateY(4px);
  box-shadow: var(--arcade-shadow-active);
}

.landing-page .btn-arcade:active {
  transform: translateY(4px);
  box-shadow: var(--arcade-shadow-active);
}

.landing-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 3px solid #000;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.landing-page .btn-pink {
  background: var(--accent);
  color: #fff;
}

.landing-page .btn-glossy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.landing-page .btn-gold-outline {
  background: rgba(17, 17, 37, 0.35);
  color: #ffd700;
  border: 3px solid #ffd700;
  box-shadow: 4px 4px 0 rgba(255, 215, 0, 0.4);
}

.landing-page .btn-gold-outline.btn-arcade:hover,
.landing-page .btn-gold-outline.btn-arcade:focus-visible,
.landing-page .btn-gold-outline.btn-arcade:active {
  box-shadow: 2px 2px 0 rgba(255, 215, 0, 0.4);
}

.landing-page .btn-gold {
  background: var(--gold);
  color: #000;
}

/* —— Header —— */
.landing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(17, 17, 37, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-high);
}

.landing-page .site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 168px;
  padding: 14px 0;
}

.landing-page .site-header__brand {
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.landing-page .site-header__logo {
  display: block;
  height: 140px;
  width: auto;
  object-fit: contain;
}

.landing-page .site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  justify-self: center;
  min-width: 0;
}

.landing-page .site-header__nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.landing-page .site-header__nav a:hover {
  color: var(--text);
}

.landing-page .site-header__auth {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: center;
  justify-self: end;
  gap: 0.75rem;
  min-width: 0;
}

.landing-page .site-header__auth--guest {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-page .site-header__auth--user {
  flex-wrap: nowrap;
  justify-content: flex-end;
  max-width: min(520px, 62vw);
}

.landing-page .site-header__auth .btn-nav-auth {
  padding: 10px 20px;
  font-size: 0.78rem;
  white-space: nowrap;
  line-height: 1.2;
}

.landing-page .site-header__auth .btn-gold-outline {
  background: transparent;
  color: #ffd700;
  border: 3px solid #ffd700;
  box-shadow: 4px 4px 0 rgba(255, 215, 0, 0.4);
}

.landing-page .site-header__auth .btn-gold-outline.btn-arcade:hover,
.landing-page .site-header__auth .btn-gold-outline.btn-arcade:focus-visible,
.landing-page .site-header__auth .btn-gold-outline.btn-arcade:active {
  transform: translateY(4px);
  box-shadow: 2px 2px 0 rgba(255, 215, 0, 0.4);
}

.landing-page .site-header__auth .btn-pink.btn-arcade {
  box-shadow: var(--arcade-shadow);
}

.landing-page .site-header__auth .btn-pink.btn-arcade:hover,
.landing-page .site-header__auth .btn-pink.btn-arcade:focus-visible,
.landing-page .site-header__auth .btn-pink.btn-arcade:active {
  transform: translateY(4px);
  box-shadow: var(--arcade-shadow-active);
}

.landing-page .site-header__user-name {
  flex-shrink: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-page .site-header__coming-soon {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Logged-in: pink pill dashboard link (before Log out) */
.landing-page .site-header__auth .btn-nav-dashboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #f72585;
  border: 2px solid rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.2;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.landing-page .site-header__auth .btn-nav-dashboard:hover,
.landing-page .site-header__auth .btn-nav-dashboard:focus-visible {
  color: #fff;
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

/* —— Hero —— */
.landing-page .hero {
  padding: 48px 0 80px;
  text-align: center;
  background: var(--bg);
}

.landing-page .hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}

.landing-page .hero__title {
  margin: 0;
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.landing-page .hero__title--white {
  color: #fff;
}

.landing-page .hero__title--gold {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.landing-page .hero__subtitle {
  width: 100%;
  max-width: 560px;
  margin: 1.5rem 0 2.5rem;
  font-size: 1.26rem;
  font-weight: 600;
  line-height: 1.65;
  color: #ffffff;
  text-align: left;
}

.landing-page .hero__subtitle-lead {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.12em;
  font-weight: 700;
  line-height: 1.35;
  color: #ffd700;
}

.landing-page .hero__subtitle-body {
  display: block;
}

.landing-page .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.landing-page .hero--marketing {
  padding: 64px 0 96px;
  text-align: left;
}

.landing-page .hero--marketing .hero__title--gold {
  margin-bottom: 0;
}

.landing-page .hero__layout {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

.landing-page .hero__copy {
  flex: 1;
  min-width: 0;
  max-width: 560px;
}

.landing-page .hero__subtitle--left {
  max-width: 100%;
  margin: 1.75rem 0 1.5rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

.landing-page .hero__subtitle--center {
  max-width: 640px;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

.landing-page .hero__pill {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 999px;
}

.landing-page .hero__refs {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 420px;
}

.landing-page .hero__ref {
  position: absolute;
  width: 220px;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border: none;
  filter: drop-shadow(4px 4px 16px rgba(0, 0, 0, 0.6));
}

.landing-page .hero__ref--male {
  z-index: 1;
  bottom: 0;
  left: 0;
  margin-top: 20px;
  transform: rotate(-12deg);
}

.landing-page .hero__ref--female {
  z-index: 2;
  bottom: 0;
  right: 0;
  transform: rotate(8deg);
}

@media (max-width: 768px) {
  .landing-page .hero__layout {
    flex-direction: column;
    text-align: center;
  }

  .landing-page .hero__copy {
    max-width: 100%;
  }

  .landing-page .hero__subtitle--left {
    text-align: center;
  }

  .landing-page .hero__refs {
    margin: 0 auto;
  }
}

/* —— The problem —— */
.landing-page .section-problem {
  padding: 72px 0;
  background: var(--surface-low);
  border-top: 1px solid var(--surface-high);
  border-bottom: 1px solid var(--surface-high);
}

.landing-page .section-problem__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.landing-page .section-problem__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
}

.landing-page .section-problem__title-accent {
  display: block;
  color: var(--gold);
}

.landing-page .section-problem__text {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
}

/* —— How it works —— */
.landing-page .section-how {
  padding: 88px 0 72px;
  background: #1a1a2e;
  scroll-margin-top: 180px;
}

.landing-page .section-how__header {
  text-align: center;
  margin-bottom: 3rem;
}

.landing-page .section-how__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.landing-page .section-how__title-white {
  color: #ffffff;
}

.landing-page .section-how__title-gold {
  color: #ffd700;
}

.landing-page .section-how__subtitle {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(226, 224, 252, 0.75);
}

.landing-page .steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 0.75rem;
  align-items: stretch;
  margin-bottom: 0;
}

.landing-page .steps__connector {
  position: absolute;
  top: 42%;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 2px dashed rgba(255, 215, 0, 0.35);
  z-index: 0;
  pointer-events: none;
}

.landing-page .steps__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.75rem;
  color: rgba(255, 215, 0, 0.55);
  z-index: 1;
  padding: 0 0.15rem;
}

.landing-page .step-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  background: linear-gradient(
    155deg,
    rgba(90, 40, 220, 0.95) 0%,
    #3a0ca3 45%,
    #2a0880 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow:
    6px 6px 0 rgba(0, 0, 0, 0.6),
    0 0 32px rgba(58, 12, 163, 0.45);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.landing-page .step-card:hover {
  transform: translateY(-6px);
  border-color: #ffd700;
  box-shadow:
    8px 8px 0 rgba(0, 0, 0, 0.6),
    0 0 48px rgba(247, 37, 133, 0.35);
}

.landing-page .step-card__watermark {
  position: absolute;
  top: 0.05em;
  left: 0.1em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 5rem);
  line-height: 1;
  color: rgba(255, 215, 0, 0.2);
  pointer-events: none;
  user-select: none;
}

.landing-page .step-card__icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 0 1.1rem;
  border-radius: 50%;
  background: #f72585;
  border: 2px solid #000;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(247, 37, 133, 0.45);
}

.landing-page .step-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  color: #ffd700;
  text-transform: uppercase;
}

.landing-page .step-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.landing-page .section-how__ready {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(226, 224, 252, 0.7);
}

.landing-page .section-how__ready-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.landing-page .section-how__ready-link:hover {
  color: #ffffff;
}

.landing-page .section-how__ready-arrow {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  animation: ready-bounce 1.6s ease-in-out infinite;
}

@keyframes ready-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* —— The platform —— */
.landing-page .section-platform {
  padding: 88px 0;
  background: var(--bg);
}

.landing-page .section-platform__inner {
  text-align: center;
}

.landing-page .section-platform__title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
}

.landing-page .section-platform__title-gold {
  display: block;
  color: var(--gold);
}

.landing-page .section-platform__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-page .platform-pill {
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(255, 215, 0, 0.25);
}

/* —— Coming soon —— */
.landing-page .section-launch {
  padding: 88px 0 96px;
  background: linear-gradient(135deg, #3a0ca3 0%, #f72585 100%);
  scroll-margin-top: 180px;
}

.landing-page .section-launch__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.landing-page .section-launch__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.landing-page .section-launch__text {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

/* —— Contact —— */
.landing-page .section-contact {
  padding: 88px 0;
  background: var(--surface-low);
  border-top: 1px solid var(--surface-high);
  scroll-margin-top: 180px;
}

.landing-page .section-contact__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.landing-page .section-contact__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.landing-page .section-contact__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

.landing-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.landing-page .contact-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.landing-page .contact-form__input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #1a1a2e;
  border: 2px solid var(--surface-high);
  border-radius: 10px;
  transition: border-color 0.15s ease;
}

.landing-page .contact-form__input:focus {
  outline: none;
  border-color: var(--gold);
}

.landing-page .contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.landing-page .contact-form__submit {
  align-self: center;
  margin-top: 0.75rem;
  text-transform: uppercase;
}

/* —— Download —— */
.landing-page .section-download {
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #3a0ca3 0%, #f72585 100%);
  scroll-margin-top: 180px;
  overflow: hidden;
}

.landing-page .section-download__stripes {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(0, 0, 0, 0.4) 12px,
    rgba(0, 0, 0, 0.4) 24px
  );
  pointer-events: none;
}

.landing-page .section-download__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  min-height: 720px;
  margin: 0 auto;
  padding: 0 0 0 24px;
  box-sizing: border-box;
}

.landing-page .section-download__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 80px 0;
}

.landing-page .section-download__heading {
  margin: 0 0 1rem;
  font-size: clamp(2.9rem, 6.5vw, 4.25rem);
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
}

.landing-page .section-download__subtitle {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  color: #ffffff;
  max-width: 420px;
}

.landing-page .section-download .store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.landing-page .section-download .store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 20px;
  min-width: 200px;
  background: #ffffff;
  color: #111125;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}

.landing-page .section-download .store-btn span {
  display: block;
  text-align: left;
}

.landing-page .section-download .store-btn__small {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}

.landing-page .section-download .store-btn__big {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #111125;
}

.landing-page .section-download__soon {
  margin: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd700;
}

.landing-page .section-download__divider {
  width: 100%;
  max-width: 420px;
  margin: 2.5rem 0 2rem;
  border: none;
  border-top: 2px solid rgba(255, 215, 0, 0.55);
}

.landing-page .section-download__cta {
  max-width: 480px;
}

.landing-page .section-download__cta-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.landing-page .section-download__cta-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.landing-page .section-download__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  padding: 0;
  margin: 0;
  min-height: 100%;
  overflow: visible;
}

.landing-page .section-download__ref {
  display: block;
  width: auto;
  height: auto;
  max-height: min(620px, 85%);
  max-width: min(560px, 52vw);
  object-fit: contain;
  object-position: center right;
}

@media (min-width: 901px) {
  .landing-page .section-download__ref {
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    z-index: 1;
    max-height: min(620px, 90%);
    max-width: min(640px, 48vw);
    width: auto;
    height: auto;
    transform: translateY(-50%);
  }

  .landing-page .section-download__copy {
    position: relative;
    z-index: 2;
  }
}

/* —— Legal / static content pages —— */
.landing-page .legal-page {
  padding: 56px 0 72px;
  background: var(--bg);
}

.landing-page .legal-page__inner {
  max-width: 760px;
}

.landing-page .legal-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.landing-page .legal-page__title-gold {
  color: var(--gold);
}

.landing-page .legal-page__updated {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.landing-page .legal-page__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.landing-page .legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--gold);
  text-transform: uppercase;
}

.landing-page .legal-section p {
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.65;
}

.landing-page .legal-section p:last-child {
  margin-bottom: 0;
}

.landing-page .legal-section ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.65;
}

.landing-page .legal-section li {
  margin-bottom: 0.45rem;
}

.landing-page .legal-section li:last-child {
  margin-bottom: 0;
}

.landing-page .legal-section a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-page .legal-section a:hover {
  color: #fff;
}

.landing-page .faq-item {
  padding: 1.25rem 1.35rem;
  background: var(--surface-low);
  border: 2px solid var(--surface-high);
  border-radius: 12px;
}

.landing-page .faq-item + .faq-item {
  margin-top: 1rem;
}

.landing-page .faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #fff;
  text-transform: none;
}

.landing-page .faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* —— Footer —— */
.landing-page .site-footer {
  padding: 48px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--surface-high);
}

.landing-page .site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.landing-page .site-footer__logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.landing-page .site-footer__tagline {
  margin: 0;
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.landing-page .site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: flex-start;
}

.landing-page .site-footer__nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
}

.landing-page .site-footer__nav a:hover {
  color: var(--text);
}

.landing-page .site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-high);
}

.landing-page .site-footer__legal {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.landing-page .site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .landing-page .steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-page .steps__connector,
  .landing-page .steps__arrow {
    display: none;
  }

  .landing-page .step-card {
    text-align: center;
  }

  .landing-page .step-card__icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-page .step-card__watermark {
    left: 50%;
    transform: translateX(-50%);
  }

  .landing-page .section-download__grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .landing-page .section-download__visual {
    order: -1;
    min-height: 260px;
    justify-content: center;
    padding: 0;
  }

  .landing-page .section-download__ref {
    position: static;
    transform: none;
    max-width: min(360px, 90vw);
    max-height: 320px;
    margin: 0 auto;
    object-position: center;
  }

  .landing-page .section-download__copy {
    padding: 40px 0 56px;
  }

  .landing-page .site-header__nav {
    display: none;
  }
}

/* —— Auth pages (login / signup) —— */
.landing-page.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.landing-page .auth-card-wrap {
  width: 100%;
  max-width: 420px;
}

.landing-page .auth-card {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 2px solid var(--surface-high);
  border-radius: 16px;
}

.landing-page .auth-card__title {
  margin: 0 0 1.25rem;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.landing-page .auth-card__error {
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 600;
  color: #f87171;
  background: transparent;
  border: none;
  border-radius: 0;
}

.landing-page .auth-card__error[hidden] {
  display: none !important;
}

.landing-page .auth-card__success {
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 600;
  color: #4ade80;
}

.landing-page .auth-card__success[hidden] {
  display: none !important;
}

.landing-page .auth-card__link {
  align-self: flex-end;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-page .auth-card__link:hover {
  color: #fff;
}

.landing-page .auth-card__link:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.landing-page .auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.landing-page .auth-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.landing-page .auth-form .input {
  width: 100%;
  margin-bottom: 0.35rem;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-low);
  border: 2px solid var(--surface-high);
  border-radius: 8px;
}

.landing-page .auth-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.landing-page .auth-card__footer {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.landing-page .auth-card__footer a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.landing-page .auth-card__footer a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .landing-page .hero {
    padding: 32px 0 56px;
  }

  .landing-page .site-header__auth--guest {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .landing-page .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .landing-page .site-header__auth {
    justify-self: stretch;
  }

  .landing-page .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .landing-page .hero__actions .btn {
    width: 100%;
  }

  .landing-page .store-row {
    flex-direction: column;
  }

  .landing-page .store-btn {
    width: 100%;
  }

  .landing-page .site-footer__top {
    flex-direction: column;
  }
}
