/* No.w.here — Premium App Landing Page (v2) */

:root {
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --accent-soft: rgba(234, 88, 12, 0.08);
  --accent-glow: rgba(234, 88, 12, 0.18);
  --label: #111111;
  --secondary: #6e6e73;
  --tertiary: #999999;
  --surface: #ffffff;
  --surface-muted: #f7f7f7;
  --surface-elevated: #fafafa;
  --border: #eaeaea;
  --border-strong: #e0e0e0;
  --device-border: #1a1a1a;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --max-width: 1120px;
  --nav-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light only;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--label);
  background: var(--surface);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

svg {
  display: block;
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Animations ── */

@keyframes landing-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes deco-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes deco-pulse-ring {
  0% { transform: scale(0.85); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.25; }
  100% { transform: scale(0.85); opacity: 0.5; }
}

@keyframes deco-gentle-spin {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes deco-blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -8px) scale(1.04); }
  66% { transform: translate(-8px, 6px) scale(0.98); }
}

@keyframes hotspot-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

@keyframes hotspot-drift {
  0%, 100% { transform: translate(-50%, -50%); }
  33% { transform: translate(calc(-50% + 3px), calc(-50% - 4px)); }
  66% { transform: translate(calc(-50% - 4px), calc(-50% + 3px)); }
}

@keyframes hotspot-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.landing-animate {
  animation: landing-fade-up 0.6s ease both;
}

.landing-animate-delay-1 { animation-delay: 0.08s; }
.landing-animate-delay-2 { animation-delay: 0.16s; }
.landing-animate-delay-3 { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .landing-animate,
  .landing-deco,
  .landing-hero__pulse,
  .landing-hero__blob,
  .pillar-card__icon,
  .map-pin__ring,
  .map-hotspot,
  .map-drop {
    animation: none !important;
  }

  .map-hotspot__ring {
    animation: none !important;
  }
}

/* ── Layout ── */

.landing-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Promoter bar & modal ── */

.promo-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 48px 0 0;
  background: #fff7f3;
  border-bottom: 1px solid rgba(234, 88, 12, 0.12);
  z-index: 110;
}

.promo-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.promo-bar.is-hidden {
  display: none;
}

.promo-bar__trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: var(--label);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  padding: 7px 16px;
  line-height: 1.2;
  transition: background 0.15s ease;
  border-radius: var(--radius-pill);
}

.promo-bar__trigger:hover {
  background: rgba(234, 88, 12, 0.06);
}

.promo-bar__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(234, 88, 12, 0.1);
  border-radius: var(--radius-pill);
}

.promo-bar__label {
  color: var(--label);
}

.promo-bar__chevron {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.promo-bar__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--secondary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.promo-bar__close svg {
  width: 12px;
  height: 12px;
}

.promo-bar__close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--label);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.promo-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.promo-modal__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: scale(0.96);
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.promo-modal.is-open .promo-modal__card {
  transform: scale(1);
}

.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--secondary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.promo-modal__close svg {
  width: 14px;
  height: 14px;
}

.promo-modal__close:hover {
  background: var(--border);
  color: var(--label);
}

.promo-modal__header {
  margin-bottom: 20px;
  padding-right: 28px;
}

.promo-modal__eyebrow {
  display: inline-flex;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
}

.promo-modal__title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--label);
}

.promo-modal__subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.45;
}

.promo-modal__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--secondary);
}

.promo-modal__lead {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--label);
  line-height: 1.55;
}

.promo-modal__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.promo-modal__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--secondary);
}

.promo-modal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.promo-modal__reward {
  margin: 0 0 18px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--secondary);
}

.promo-modal__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.promo-modal__contact:hover {
  background: var(--surface-elevated);
  border-color: var(--border-strong);
}

.promo-modal__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--surface);
  border-radius: 50%;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.promo-modal__contact-icon svg {
  width: 18px;
  height: 18px;
}

.promo-modal__contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.promo-modal__contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--tertiary);
}

.promo-modal__contact-email {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--label);
  word-break: break-all;
}

.promo-modal__closing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  font-style: italic;
  font-weight: 500;
  color: var(--label);
  text-align: center;
  line-height: 1.5;
}

.promo-modal__heart {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: #ff3b30;
}

.promo-modal__footer {
  margin-top: 4px;
}

.promo-modal__cta {
  display: flex;
  width: 100%;
  padding: 14px 20px;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
}

/* ── Promoter mail picker (inline step) ── */

.promo-mail-picker {
  --mail-picker-bg: var(--surface);
  --mail-picker-surface: var(--surface-muted);
  --mail-picker-border: var(--border);
  --mail-picker-text: var(--label);
  --mail-picker-muted: var(--secondary);
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: var(--mail-picker-bg);
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.promo-mail-picker.is-open {
  opacity: 1;
  visibility: visible;
}

.promo-mail-picker[hidden] {
  display: none;
}

.promo-mail-picker.is-open[hidden] {
  display: flex;
}

.promo-mail-picker__title {
  margin: 0 0 6px;
  padding-right: 28px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mail-picker-text);
}

.promo-mail-picker__hint {
  margin: 0 0 18px;
  font-size: 0.8125rem;
  color: var(--mail-picker-muted);
  line-height: 1.5;
}

.promo-mail-picker__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
}

.promo-mail-picker__list [hidden] {
  display: none;
}

.promo-mail-picker__fallback {
  margin: 0 0 16px;
  font-size: 0.75rem;
  color: var(--mail-picker-muted);
  line-height: 1.5;
}

.promo-mail-picker__option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--mail-picker-border);
  border-radius: 14px;
  background: var(--mail-picker-surface);
  font: inherit;
  color: var(--mail-picker-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.promo-mail-picker__option:hover,
.promo-mail-picker__option:focus-visible {
  background: var(--surface-elevated);
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.promo-mail-picker__option:active {
  transform: translateY(0);
}

.promo-mail-picker__option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--border);
}

.promo-mail-picker__option-icon svg,
.promo-mail-picker__option-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.promo-mail-picker__option-icon img {
  object-fit: contain;
}

.promo-mail-picker__option-icon--gmail {
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--border), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.promo-mail-picker__option-icon--outlook {
  background: #0078d4;
  box-shadow: 0 2px 6px rgba(0, 120, 212, 0.22);
}

.promo-mail-picker__option-icon--default {
  background: var(--surface-muted);
  color: var(--secondary);
}

.promo-mail-picker__option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.promo-mail-picker__option-label {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--mail-picker-text);
}

.promo-mail-picker__option-desc {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--mail-picker-muted);
}

.promo-mail-picker__back {
  appearance: none;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mail-picker-border);
  border-radius: var(--radius-pill);
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mail-picker-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.promo-mail-picker__back:hover,
.promo-mail-picker__back:focus-visible {
  background: var(--surface-muted);
  color: var(--mail-picker-text);
  border-color: var(--border-strong);
  outline: none;
}

@media (max-width: 640px) {
  .promo-mail-picker {
    padding: 24px 20px 20px;
  }

  .promo-mail-picker__title {
    font-size: 1.0625rem;
  }

  .promo-mail-picker__option {
    padding: 12px;
    gap: 12px;
  }

  .promo-mail-picker__option-icon {
    width: 38px;
    height: 38px;
  }

  .promo-mail-picker__option-icon svg,
  .promo-mail-picker__option-icon img {
    width: 20px;
    height: 20px;
  }

  .promo-mail-picker__option-label {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-mail-picker,
  .promo-mail-picker__option,
  .promo-mail-picker__back {
    transition: none;
  }
}

@media (max-width: 640px) {
  .promo-bar {
    min-height: 32px;
    padding-right: 44px;
  }

  .promo-bar__trigger {
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .promo-bar__badge {
    font-size: 0.5625rem;
    padding: 2px 6px;
  }

  .promo-bar__chevron {
    width: 12px;
    height: 12px;
  }

  .promo-modal__card {
    padding: 24px 20px 20px;
    border-radius: 18px;
  }

  .promo-modal__title {
    font-size: 1.3125rem;
  }

  .promo-modal__lead,
  .promo-modal__body {
    font-size: 0.875rem;
  }

  .promo-modal__list li {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-modal,
  .promo-modal__card,
  .promo-bar__trigger,
  .promo-bar__close,
  .promo-modal__contact {
    transition: none;
  }

  .promo-modal__card {
    transform: none;
  }
}

/* ── Navigation ── */

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-height);
  padding-top: env(safe-area-inset-top, 0px);
  height: auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.landing-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  height: 100%;
  gap: 16px;
}

.landing-nav__brand {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--label);
  flex-shrink: 0;
}

.landing-nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
}

.landing-nav__links a:hover {
  color: var(--label);
}

.landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Buttons ── */

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--label);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-store--primary {
  background: var(--label);
  color: var(--surface);
}

.btn-store--primary:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-store--outline {
  background: transparent;
  color: var(--label);
}

.btn-store--outline:hover {
  background: var(--surface-muted);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--surface);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.store-links--center {
  justify-content: center;
}

.store-download-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 28rem;
}

.store-download-block--center {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.store-inapp-hint {
  display: block;
  position: relative;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #222222;
  background: #f2f2f2;
  border-radius: 8px;
  max-width: 28rem;
  width: 100%;
  box-sizing: border-box;
}

.store-inapp-hint--static {
  display: block;
}

.landing-cta .store-inapp-hint {
  text-align: center;
}

/* Clean caret from tip down toward App Store badge */
.store-hint-arrow {
  display: flex;
  justify-content: flex-start;
  padding-left: 5.25rem;
  margin: 2px 0 6px;
  color: #9a9a9a;
  line-height: 0;
}

.store-download-block--center .store-hint-arrow {
  justify-content: center;
  padding-left: 0;
  /* Sit above the left (App Store) badge in a centered pair */
  transform: translateX(-5.75rem);
}

.store-hint-arrow svg {
  display: block;
  width: 22px;
  height: 18px;
}

.store-badge {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.store-badge--secondary {
  opacity: 0.72;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge--secondary:hover {
  opacity: 0.88;
}

.store-badge:active {
  transform: translateY(0);
  opacity: 0.88;
}

.store-badge__img {
  display: block;
  width: 180px;
  height: 54px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .store-badge__img {
    width: 160px;
    height: 48px;
  }
}

/* ── Hero ── */

.landing-hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
}

.landing-hero__blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: deco-blob-drift 14s ease-in-out infinite;
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.landing-hero__content {
  max-width: 520px;
}

.landing-hero__eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
}

.landing-hero__title {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.landing-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--secondary);
  margin: 0 0 28px;
}

.landing-hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 320px;
}

.landing-hero__pulse {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: deco-pulse-ring 3s ease-in-out infinite;
  pointer-events: none;
}

/* ── Decorative elements ── */

.landing-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.landing-deco--pin-1 {
  top: 8%;
  left: 4%;
  animation: deco-float 4s ease-in-out infinite;
}

.landing-deco--pin-2 {
  bottom: 18%;
  right: 2%;
  animation: deco-float 4.5s ease-in-out 0.5s infinite;
}

.landing-deco--pin-3 {
  top: 42%;
  right: 8%;
  animation: deco-float 3.8s ease-in-out 1s infinite;
}

.landing-deco svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  filter: drop-shadow(0 2px 6px var(--accent-glow));
}

/* ── iPhone 15 Device Frame ── */

.device-frame {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: min(100%, clamp(200px, 38vw, 260px));
  border-radius: 48px;
  border: 2px solid var(--device-border);
  background: var(--device-border);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

.device-frame__island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 26px;
  background: var(--device-border);
  border-radius: 20px;
  z-index: 4;
}

/* Screenshots already include status bar — hide decorative island */
.device-frame:has(.device-frame__screen img) .device-frame__island {
  display: none;
}

.device-frame__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1179 / 2556;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
}

.device-frame__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 12px;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--tertiary);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(0, 0, 0, 0.015) 8px,
      rgba(0, 0, 0, 0.015) 16px
    );
  border: 1.5px dashed var(--border-strong);
  margin: 8px;
  border-radius: 32px;
}

.device-frame__placeholder svg {
  width: 22px;
  height: 22px;
  color: var(--tertiary);
  opacity: 0.5;
}

.device-frame__screen:has(img) .device-frame__placeholder {
  display: none;
}

.device-frame__screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 767px) {
  .device-frame {
    width: min(78vw, 280px);
    border-radius: 42px;
    padding: 6px;
  }

  .landing-hero__visual .device-frame {
    width: min(74vw, 260px);
  }

  .device-frame__island {
    top: 12px;
    height: 22px;
  }

  .device-frame__screen {
    border-radius: 36px;
  }
}

/* ── Pillars (compact) ── */

.landing-pillars {
  padding: 0 0 56px;
}

.landing-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pillar-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.pillar-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 11px;
  color: var(--accent);
  animation: deco-gentle-spin 6s ease-in-out infinite;
}

.pillar-card__icon svg {
  width: 20px;
  height: 20px;
}

.pillar-card__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.pillar-card__title {
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--label);
}

/* ── Showcase / Spotlight sections ── */

.landing-spotlight {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.landing-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.landing-spotlight__content {
  max-width: 440px;
}

.landing-spotlight__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.landing-spotlight__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.landing-spotlight__text {
  font-size: 0.9375rem;
  color: var(--secondary);
  line-height: 1.65;
  margin: 0;
}

.spotlight-checks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.spotlight-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.45;
}

.spotlight-checks li:last-child {
  margin-bottom: 0;
}

.spotlight-checks li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.landing-spotlight__visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 280px;
}

.landing-spotlight__visual-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0 4px;
}

.landing-spotlight__visual-inner .device-frame {
  margin: 0 auto;
}

/* ── Vibe images ── */

.vibe-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  box-shadow: var(--shadow-md);
  margin: 0;
}

.vibe-image--wide {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.vibe-image--tall {
  aspect-ratio: 3 / 4;
  width: min(100%, 200px);
}

.vibe-image--square {
  aspect-ratio: 1 / 1;
}

.vibe-image__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(234, 88, 12, 0.14) 0%, rgba(234, 88, 12, 0.04) 40%, var(--surface-muted) 100%);
  border: 1px solid rgba(234, 88, 12, 0.12);
  border-radius: inherit;
}

.vibe-image__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.12);
}

.vibe-image__icon svg {
  width: 24px;
  height: 24px;
}

.vibe-image__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--secondary);
}

.vibe-image:has(img) .vibe-image__placeholder {
  display: none;
}

.vibe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ── Mood grid ── */

.landing-mood {
  padding: 56px 0 64px;
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
}

.landing-mood__header {
  position: relative;
  text-align: center;
  max-width: 420px;
  margin: 0 auto 32px;
}

.landing-mood__deco {
  position: relative;
  height: 28px;
  margin-bottom: 12px;
}

.landing-mood__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: deco-float 4s ease-in-out infinite;
}

.landing-mood__dot--1 {
  width: 8px;
  height: 8px;
  top: 4px;
  left: calc(50% - 72px);
}

.landing-mood__dot--2 {
  width: 6px;
  height: 6px;
  top: 14px;
  right: calc(50% - 80px);
  opacity: 0.25;
  animation-delay: 0.6s;
}

.landing-mood__dot--3 {
  width: 5px;
  height: 5px;
  top: 2px;
  right: calc(50% - 56px);
  opacity: 0.2;
  animation-delay: 1.2s;
}

.landing-mood__spark {
  position: absolute;
  top: 0;
  left: calc(50% + 48px);
  width: 16px;
  height: 16px;
  color: var(--accent);
  opacity: 0.45;
  animation: deco-gentle-spin 5s ease-in-out infinite;
}

.landing-mood__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.landing-mood__subtitle {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}

.landing-mood__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.landing-mood__grid .vibe-card:nth-child(1) {
  transform: rotate(-0.5deg);
}

.landing-mood__grid .vibe-card:nth-child(2) {
  transform: rotate(0.5deg);
}

.landing-mood__grid .vibe-card:nth-child(3) {
  transform: rotate(-0.5deg);
}

/* ── Responsive copy (short mobile / long desktop) ── */

.copy--long {
  display: none;
}

.copy--short {
  display: block;
}

@media (min-width: 768px) {
  .copy--short {
    display: none;
  }

  .copy--long {
    display: block;
  }
}

/* ── Leipzig Live Map ── */

.landing-map {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
}

.landing-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.landing-map__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.landing-map__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.landing-map__text {
  font-size: 0.9375rem;
  color: var(--secondary);
  line-height: 1.65;
  margin: 0;
}

.landing-map__canvas {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 11;
}

.landing-map__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-map__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

.landing-map__radius {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(234, 88, 12, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.landing-map__hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.landing-map__events {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ── Activity Hotspots (App warm orange glow) ── */

.map-hotspot {
  position: absolute;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: hotspot-drift 8s ease-in-out infinite;
}

.map-hotspot--delay-1 { animation-delay: -1.5s; }
.map-hotspot--delay-2 { animation-delay: -3.2s; }
.map-hotspot--delay-3 { animation-delay: -5s; }
.map-hotspot--delay-4 { animation-delay: -6.5s; }
.map-hotspot--delay-5 { animation-delay: -2.8s; }
.map-hotspot--delay-6 { animation-delay: -4.8s; }

.map-hotspot__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: hotspot-breathe 3s ease-in-out infinite;
}

/* size: sm */
.map-hotspot--size-sm .map-hotspot__ring--aura { width: 70px; height: 70px; opacity: 0.28; }
.map-hotspot--size-sm .map-hotspot__ring--outer { width: 50px; height: 50px; opacity: 0.4; }
.map-hotspot--size-sm .map-hotspot__ring--mid { width: 32px; height: 32px; opacity: 0.55; }
.map-hotspot--size-sm .map-hotspot__ring--core { width: 16px; height: 16px; opacity: 0.7; }

/* size: md */
.map-hotspot--size-md .map-hotspot__ring--aura { width: 110px; height: 110px; opacity: 0.3; }
.map-hotspot--size-md .map-hotspot__ring--outer { width: 78px; height: 78px; opacity: 0.42; }
.map-hotspot--size-md .map-hotspot__ring--mid { width: 48px; height: 48px; opacity: 0.58; }
.map-hotspot--size-md .map-hotspot__ring--core { width: 24px; height: 24px; opacity: 0.75; }

/* size: lg */
.map-hotspot--size-lg .map-hotspot__ring--aura { width: 150px; height: 150px; opacity: 0.32; }
.map-hotspot--size-lg .map-hotspot__ring--outer { width: 105px; height: 105px; opacity: 0.45; }
.map-hotspot--size-lg .map-hotspot__ring--mid { width: 65px; height: 65px; opacity: 0.6; }
.map-hotspot--size-lg .map-hotspot__ring--core { width: 32px; height: 32px; opacity: 0.8; }

/* size: xl */
.map-hotspot--size-xl .map-hotspot__ring--aura { width: 200px; height: 200px; opacity: 0.34; }
.map-hotspot--size-xl .map-hotspot__ring--outer { width: 140px; height: 140px; opacity: 0.48; }
.map-hotspot--size-xl .map-hotspot__ring--mid { width: 85px; height: 85px; opacity: 0.62; }
.map-hotspot--size-xl .map-hotspot__ring--core { width: 40px; height: 40px; opacity: 0.82; }

.map-hotspot--warm .map-hotspot__ring--aura {
  background: radial-gradient(circle, rgba(185, 28, 28, 0.18) 0%, rgba(234, 88, 12, 0.06) 45%, transparent 72%);
}
.map-hotspot--warm .map-hotspot__ring--outer {
  background: radial-gradient(circle, rgba(234, 88, 12, 0.38) 0%, rgba(250, 204, 21, 0.1) 50%, transparent 70%);
}
.map-hotspot--warm .map-hotspot__ring--mid {
  background: radial-gradient(circle, rgba(234, 88, 12, 0.55) 0%, rgba(250, 204, 21, 0.15) 55%, transparent 75%);
}
.map-hotspot--warm .map-hotspot__ring--core {
  background: radial-gradient(circle, rgba(234, 88, 12, 0.72) 0%, rgba(250, 204, 21, 0.4) 100%);
  box-shadow: 0 0 14px rgba(234, 88, 12, 0.4);
}

.map-hotspot__ring--outer { animation-delay: 0.3s; }
.map-hotspot__ring--mid { animation-delay: 0.6s; }
.map-hotspot__ring--core { animation-delay: 0.9s; }

/* Zentrum: white halo + solid dot */
.map-hotspot__halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.map-hotspot__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: #ea580c;
  border-radius: 50%;
  z-index: 3;
}

/* ── Event Drop Pins (App DropPin) ── */

.map-drop {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.map-drop__pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  background: #636366;
  flex-shrink: 0;
}

.map-drop__pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-drop__pointer {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #636366;
  margin-top: -1px;
}

.map-drop__label {
  margin-top: 2px;
  max-width: 72px;
  padding: 2px 5px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--label);
  background: #fff;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .map-hotspot--size-xl .map-hotspot__ring--aura { width: 140px; height: 140px; }
  .map-hotspot--size-xl .map-hotspot__ring--outer { width: 100px; height: 100px; }
  .map-hotspot--size-xl .map-hotspot__ring--mid { width: 62px; height: 62px; }
  .map-hotspot--size-xl .map-hotspot__ring--core { width: 30px; height: 30px; }

  .map-hotspot--size-lg .map-hotspot__ring--aura { width: 110px; height: 110px; }
  .map-hotspot--size-lg .map-hotspot__ring--outer { width: 78px; height: 78px; }
  .map-hotspot--size-lg .map-hotspot__ring--mid { width: 48px; height: 48px; }
  .map-hotspot--size-lg .map-hotspot__ring--core { width: 24px; height: 24px; }

  .map-hotspot--size-md .map-hotspot__ring--aura { width: 80px; height: 80px; }
  .map-hotspot--size-md .map-hotspot__ring--outer { width: 56px; height: 56px; }
  .map-hotspot--size-md .map-hotspot__ring--mid { width: 36px; height: 36px; }
  .map-hotspot--size-md .map-hotspot__ring--core { width: 18px; height: 18px; }

  .map-hotspot--size-sm .map-hotspot__ring--aura { width: 52px; height: 52px; }
  .map-hotspot--size-sm .map-hotspot__ring--outer { width: 38px; height: 38px; }
  .map-hotspot--size-sm .map-hotspot__ring--mid { width: 24px; height: 24px; }
  .map-hotspot--size-sm .map-hotspot__ring--core { width: 12px; height: 12px; }

  .map-drop__pin { width: 28px; height: 28px; }
  .map-drop__label { max-width: 64px; font-size: 0.5rem; }
}

/* ── Vibe banner ── */

.vibe-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 21 / 7;
  margin: 0;
  box-shadow: var(--shadow-md);
}

.vibe-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vibe-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
}

.vibe-banner__title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.vibe-banner__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 767px) {
  .vibe-banner {
    aspect-ratio: 21 / 8;
  }

  .vibe-banner__overlay {
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 45%);
  }

  .vibe-banner__title {
    font-size: clamp(0.9rem, 4vw, 1.125rem);
  }

  .vibe-banner__desc {
    font-size: 0.6875rem;
    line-height: 1.35;
    max-width: 92%;
  }
}

.landing-banner-wrap {
  padding: 0 0 48px;
}

/* ── Vibe cards (image + overlay) ── */

.vibe-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  margin: 0;
  box-shadow: var(--shadow-md);
}

.vibe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vibe-card:hover img {
  transform: scale(1.03);
}

.vibe-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
  pointer-events: none;
}

.vibe-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  width: fit-content;
}

.vibe-card__desc {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  max-width: 280px;
}

/* ── FAQ Accordion ── */

.landing-faq {
  padding: 64px 0;
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
}

.landing-faq__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

.landing-faq__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.landing-faq__subtitle {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}

.landing-faq__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.08);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--label);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::marker {
  content: "";
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.faq-item__chevron svg {
  width: 14px;
  height: 14px;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.65;
}

.faq-item__body p {
  margin: 0;
}

.faq-item__body strong {
  color: var(--label);
  font-weight: 600;
}

.landing-faq__more {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-faq__more:hover {
  color: var(--label);
}

.step-card__text--long {
  display: none;
}

@media (min-width: 768px) {
  .step-card__text--long {
    display: block;
  }

  .step-card__text--short {
    display: none;
  }

  .landing-map__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
}

/* ── Steps ── */

.landing-steps {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.landing-steps__header {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 36px;
}

.landing-steps__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.landing-steps__subtitle {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}

.landing-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step-card {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--surface);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
}

.step-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.step-card__text {
  font-size: 0.8125rem;
  color: var(--secondary);
  margin: 0;
  line-height: 1.55;
}

/* ── Final CTA ── */

.landing-cta {
  padding: 72px 0;
  text-align: center;
}

.landing-cta__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 28px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.landing-cta__title {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.landing-cta__text {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0 0 24px;
  line-height: 1.6;
}

.landing-cta__support {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-cta__support:hover {
  color: var(--label);
}

/* ── Footer ── */

.landing-footer {
  padding: 28px 0 calc(36px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  text-align: center;
}

.landing-footer__copy {
  font-size: 0.8125rem;
  color: var(--tertiary);
  margin: 0 0 12px;
}

.landing-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 0.8125rem;
}

.landing-footer__nav a {
  color: var(--secondary);
}

.landing-footer__nav a:hover {
  color: var(--label);
  text-decoration: underline;
}

/* ── Responsive ── */

@media (min-width: 640px) {
  .landing-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-mood__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .landing-nav__links {
    display: flex;
  }

  .landing-hero {
    padding: 64px 0 72px;
  }

  .landing-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .landing-pillars__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .landing-spotlight__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .landing-spotlight--reverse .landing-spotlight__content {
    order: 2;
  }

  .landing-spotlight--reverse .landing-spotlight__visual {
    order: 1;
  }

  .landing-spotlight__content {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .landing-container {
    padding: 0 32px;
  }

  .landing-hero__grid {
    gap: 48px;
  }

  .landing-deco--pin-3 {
    display: block;
  }
}

@media (max-width: 767px) {
  .landing-nav__links {
    display: none;
  }

  .btn-cta--nav {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }

  .landing-deco--pin-3 {
    display: none;
  }

  .landing-spotlight {
    padding: 48px 0;
  }

  .landing-spotlight__grid {
    gap: 28px;
  }

  .landing-spotlight__content {
    max-width: none;
    width: 100%;
  }

  .spotlight-checks {
    margin-top: 14px;
  }

  .spotlight-checks li {
    font-size: 0.8125rem;
  }

  .landing-spotlight__visual {
    min-height: auto;
    padding-top: 4px;
  }

  .landing-spotlight__visual-inner {
    padding: 0;
  }

  .landing-cta__inner {
    padding: 32px 20px;
  }
}
