/* ============================================================
   LANDING PAGE — Global Tour Mart premium SaaS marketing
   Tokens from tokens.css. BEM: landing-*
   ============================================================ */

.landing-page {
  --lp-brand: var(--color-landing-brand);
  --lp-brand-hover: var(--color-landing-brand-hover);
  --lp-brand-soft: var(--color-landing-brand-soft);
  --lp-ink: var(--color-landing-ink);
  --lp-ink-muted: var(--color-landing-ink-muted);
  --lp-canvas: var(--color-landing-canvas);
  --lp-surface: var(--color-landing-surface);
  --lp-glass: rgba(255, 255, 255, 0.82);
  --lp-glass-border: rgba(10, 102, 255, 0.12);
  --lp-nav-bg: rgba(255, 255, 255, 0.86);
  --lp-footer-bg: #0B1220;
  --lp-footer-ink: #F3F6FC;
  --lp-footer-muted: rgba(243, 246, 252, 0.72);
  --lp-section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --lp-hero-overlay: linear-gradient(
    115deg,
    rgba(7, 11, 20, 0.88) 0%,
    rgba(10, 102, 255, 0.62) 52%,
    rgba(7, 11, 20, 0.78) 100%
  );

  margin: 0;
  color: var(--lp-ink);
  background: var(--lp-canvas);
  font-family: var(--font-family-base);
  font-size: var(--font-size-body-lg);
  line-height: var(--line-height-body-lg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing-page[data-theme="dark"] {
  --lp-ink: var(--color-landing-dark-ink);
  --lp-ink-muted: var(--color-landing-dark-ink-muted);
  --lp-canvas: var(--color-landing-dark-canvas);
  --lp-surface: var(--color-landing-dark-surface);
  --lp-glass: rgba(16, 24, 39, 0.78);
  --lp-glass-border: rgba(255, 255, 255, 0.1);
  --lp-brand-soft: rgba(10, 102, 255, 0.2);
  --lp-nav-bg: rgba(7, 11, 20, 0.88);
  --lp-footer-bg: #05080F;
}

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

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p,
.landing-page ul,
.landing-page ol {
  margin: 0;
}

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

.landing-skip {
  position: absolute;
  left: -9999px;
  top: var(--space-xs);
  z-index: 100;
  padding: var(--space-xs) var(--space-sm);
  background: var(--lp-brand);
  color: var(--color-on-primary);
  border-radius: var(--radius-default);
}

.landing-skip:focus {
  left: var(--space-xs);
}

/* Layout primitives */
.landing-section__inner {
  width: min(100% - (var(--space-margin-mobile) * 2), var(--layout-container-max));
  margin-inline: auto;
}

.landing-section__inner--narrow {
  max-width: 46rem;
}

.landing-section {
  padding-block: var(--lp-section-pad);
  position: relative;
}

.landing-section__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.landing-section__header .landing-eyebrow,
.landing-section__header .landing-title,
.landing-section__header .landing-lead {
  margin-inline: auto;
}

.landing-eyebrow {
  color: var(--lp-brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--font-size-label-md);
  font-weight: var(--font-weight-label-md);
  margin-bottom: var(--space-sm);
}

.landing-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: var(--font-weight-headline-lg);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: var(--space-sm);
  color: var(--lp-ink);
}

.landing-title--center {
  max-width: 22ch;
}

.landing-title--sm {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  max-width: none;
}

.landing-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--lp-ink-muted);
  max-width: 40rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.landing-lead--center {
  max-width: 42rem;
}

.landing-body {
  color: var(--lp-ink-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.landing-link {
  color: var(--lp-brand);
  font-weight: var(--font-weight-label-md);
  text-decoration: none;
}

.landing-link:hover {
  text-decoration: underline;
}

.landing-fineprint {
  font-size: var(--font-size-label-sm);
  color: var(--lp-ink-muted);
  margin-top: var(--space-sm);
  line-height: 1.5;
}

.landing-glass {
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    var(--shadow-landing-card);
}

.landing-page[data-theme="dark"] .landing-glass {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.28);
}

.landing-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

/* Buttons */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  font-size: var(--font-size-body-md);
  font-weight: var(--font-weight-label-md);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-btn:hover {
  transform: translateY(-2px);
}

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

.landing-btn:focus-visible {
  outline: 2px solid var(--lp-brand);
  outline-offset: 2px;
}

.landing-btn--primary {
  background: var(--lp-brand);
  color: var(--color-on-primary);
  box-shadow: 0 10px 28px rgba(10, 102, 255, 0.28);
}

.landing-btn--primary:hover {
  background: var(--lp-brand-hover);
}

.landing-btn--ghost {
  background: transparent;
  color: var(--lp-ink);
  border-color: color-mix(in srgb, var(--lp-ink) 14%, transparent);
}

.landing-btn--ghost:hover {
  border-color: var(--lp-brand);
  color: var(--lp-brand);
  background: var(--lp-brand-soft);
}

.landing-btn--glass {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.landing-btn--glass:hover {
  background: rgba(255, 255, 255, 0.24);
}

.landing-btn--lg {
  min-height: 52px;
  padding-inline: 1.5rem;
  font-size: var(--font-size-body-lg);
}

/* Theme toggle */
.landing-theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--lp-ink) 12%, transparent);
  background: var(--lp-surface);
  color: var(--lp-ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.landing-theme-toggle:hover {
  border-color: var(--lp-brand);
  color: var(--lp-brand);
}

.landing-theme-toggle__moon {
  display: none;
}

.landing-page[data-theme="dark"] .landing-theme-toggle__sun {
  display: none;
}

.landing-page[data-theme="dark"] .landing-theme-toggle__moon {
  display: block;
}

/* ----------------------------------------------------------
   NAV — logo max-width 20%
---------------------------------------------------------- */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lp-nav-bg);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-nav--scrolled,
.landing-nav--solid {
  border-bottom-color: color-mix(in srgb, var(--lp-ink) 8%, transparent);
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.06);
}

.landing-nav__inner {
  width: min(100% - (var(--space-margin-mobile) * 2), var(--layout-container-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: clamp(4.5rem, 12vw, 6.5rem);
  padding-block: var(--space-xs);
}

.landing-nav__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  width: 20%;
  max-width: 20%;
  min-width: 4.75rem;
}

.landing-nav__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Keep brand mark at 20% of nav container */
.landing-page .landing-nav__logo {
  max-width: 100%;
  width: 35%;
}

.landing-nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  flex: 1 1 auto;
}

.landing-nav__link {
  color: var(--lp-ink-muted);
  text-decoration: none;
  font-size: var(--font-size-body-md);
  font-weight: var(--font-weight-label-md);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.landing-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--lp-brand);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.landing-nav__link:hover,
.landing-nav__link:focus-visible {
  color: var(--lp-brand);
}

.landing-nav__link:hover::after,
.landing-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.landing-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.landing-nav__menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--lp-ink) 12%, transparent);
  border-radius: var(--radius-lg);
  background: var(--lp-surface);
  cursor: pointer;
  order: 3;
}

.landing-nav__menu-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--lp-ink);
  border-radius: var(--radius-full);
}

@media (min-width: 960px) {
  .landing-nav__menu-btn {
    display: none;
  }

  .landing-nav__links {
    display: flex;
  }

  .landing-nav__brand {
    width: 20%;
    max-width: 20%;
  }
}

@media (max-width: 959px) {
  .landing-nav__inner {
    flex-wrap: wrap;
  }

  .landing-nav__brand {
    width: 32%;
    max-width: 32%;
    order: 1;
  }

  .landing-nav__actions {
    order: 2;
    margin-left: auto;
  }

  .landing-nav__links {
    position: static;
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin-top: var(--space-xs);
    padding: var(--space-sm);
    background: var(--lp-surface);
    border: 1px solid color-mix(in srgb, var(--lp-ink) 8%, transparent);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-overlay);
  }

  .landing-nav__links.is-open {
    display: flex;
  }

  .landing-nav__link {
    padding: 0.85rem 0.75rem;
    border-radius: var(--radius-md);
  }

  .landing-nav__link:hover {
    background: var(--lp-brand-soft);
  }

  .landing-nav__link::after {
    display: none;
  }

  .landing-nav__actions .landing-btn--ghost {
    display: none;
  }
}

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */
.landing-hero {
  position: relative;
  min-height: clamp(34rem, 88dvh, 52rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.landing-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: landing-hero-drift 22s ease-in-out infinite alternate;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--lp-hero-overlay);
}

.landing-hero__map {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.4) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 40%, rgba(255, 255, 255, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 36% 70%, rgba(255, 255, 255, 0.25) 0 2px, transparent 3px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 56px 56px, 56px 56px;
  pointer-events: none;
}

.landing-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--space-margin-mobile) * 2), var(--layout-container-max));
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  animation: landing-fade-up 0.7s ease-out both;
}

@media (min-width: 960px) {
  .landing-hero__content {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.landing-hero__brand {
  font-size: clamp(2.15rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: var(--space-xs);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.landing-hero__tagline {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: var(--font-weight-label-md);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-md);
  max-width: 34rem;
}

.landing-hero__title {
  font-size: clamp(1.55rem, 3.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 15ch;
  margin-bottom: var(--space-sm);
}

.landing-hero__subtitle {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: var(--font-size-body-md);
  font-weight: var(--font-weight-label-md);
  backdrop-filter: blur(10px);
}

.landing-hero__badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--radius-full);
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.22);
  flex-shrink: 0;
}

.landing-hero__mockups {
  display: grid;
  gap: var(--space-sm);
  align-content: center;
}

.landing-hero__chat,
.landing-hero__dash {
  padding: var(--space-md);
  color: var(--lp-ink);
  animation: landing-fade-up 0.85s ease-out 0.15s both;
}

.landing-hero__dash {
  min-height: 13rem;
}

.landing-hero__dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.landing-hero__dash-label {
  font-size: var(--font-size-label-md);
  font-weight: var(--font-weight-label-md);
  color: var(--lp-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-hero__dash-live {
  font-size: var(--font-size-label-sm);
  font-weight: var(--font-weight-label-md);
  color: #0F7A43;
  background: rgba(37, 211, 102, 0.16);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
}

.landing-hero__dash-bar {
  height: 0.55rem;
  width: 46%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--lp-brand), #4D8FFF);
  margin-bottom: var(--space-md);
}

.landing-hero__dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.landing-hero__dash-stats div {
  padding: var(--space-xs);
  border-radius: var(--radius-md);
  background: var(--lp-brand-soft);
  display: grid;
  gap: 0.15rem;
}

.landing-hero__dash-stats strong {
  font-size: var(--font-size-headline-sm);
  color: var(--lp-brand);
  line-height: 1.1;
}

.landing-hero__dash-stats span {
  font-size: var(--font-size-label-sm);
  color: var(--lp-ink-muted);
}

.landing-hero__dash-row,
.landing-hero__dash-row--short {
  height: 0.45rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--lp-ink) 10%, transparent);
  margin-bottom: var(--space-xs);
}

.landing-hero__dash-row--short {
  width: 68%;
}

.landing-hero__chat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-body-md);
}

.landing-hero__chat-title {
  font-weight: var(--font-weight-label-md);
  margin-bottom: 0.15rem;
}

.landing-hero__chat p:last-child {
  color: var(--lp-ink-muted);
}

.landing-hero__chat-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: var(--radius-full);
  background: #25D366;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.18);
  flex-shrink: 0;
}

/* About */
.landing-about {
  background: var(--lp-surface);
}

.landing-about__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding: 0;
}

.landing-about__pills li {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  font-size: var(--font-size-body-md);
  font-weight: var(--font-weight-label-md);
}

/* Features */
.landing-features {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--lp-brand) 12%, transparent), transparent 42%),
    radial-gradient(circle at bottom left, color-mix(in srgb, var(--lp-brand) 8%, transparent), transparent 36%),
    var(--lp-canvas);
}

.landing-features__grid {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .landing-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .landing-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-feature {
  padding: var(--space-md);
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-feature:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--lp-brand) 35%, transparent);
  box-shadow: 0 16px 40px rgba(10, 102, 255, 0.14);
}

.landing-feature__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--lp-brand-soft), color-mix(in srgb, var(--lp-brand) 18%, white));
  color: var(--lp-brand);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-sm);
}

.landing-page[data-theme="dark"] .landing-feature__icon {
  background: rgba(10, 102, 255, 0.22);
}

.landing-feature__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.landing-feature__title {
  font-size: var(--font-size-headline-sm);
  font-weight: var(--font-weight-headline-sm);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.landing-feature__text {
  color: var(--lp-ink-muted);
  font-size: var(--font-size-body-md);
  line-height: 1.55;
}

/* WhatsApp */
.landing-whatsapp__points {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .landing-whatsapp__points {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-whatsapp__card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.landing-whatsapp__card-title {
  font-size: var(--font-size-headline-sm);
  margin-bottom: var(--space-sm);
}

.landing-checklist {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.landing-checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--lp-ink-muted);
  line-height: 1.5;
}

.landing-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: var(--radius-full);
  background:
    linear-gradient(#fff, #fff) center / 0.28rem 0.28rem no-repeat,
    var(--lp-brand);
  box-shadow: 0 0 0 3px var(--lp-brand-soft);
}

.landing-checklist--columns {
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .landing-checklist--columns {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-whatsapp__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.landing-whatsapp__brand-label {
  font-size: var(--font-size-label-md);
  color: var(--lp-ink-muted);
  width: 100%;
}

.landing-whatsapp__brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-lg);
  background: var(--lp-surface);
  border: 1px solid color-mix(in srgb, var(--lp-ink) 10%, transparent);
  font-weight: var(--font-weight-label-md);
  font-size: var(--font-size-body-md);
}

.landing-workflow__title {
  font-size: var(--font-size-headline-sm);
  margin-bottom: var(--space-sm);
}

.landing-workflow__steps {
  list-style: none;
  display: grid;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .landing-workflow__steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.landing-workflow__step {
  padding: var(--space-sm);
  display: grid;
  gap: var(--space-xs);
  min-height: 100%;
  text-align: left;
}

.landing-workflow__num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: var(--radius-full);
  background: var(--lp-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: var(--font-size-label-md);
  font-weight: var(--font-weight-label-md);
}

.landing-workflow__label {
  font-size: var(--font-size-body-md);
  font-weight: var(--font-weight-label-md);
  line-height: 1.35;
}

/* Connect timeline */
.landing-connect {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lp-brand-soft) 70%, transparent), transparent),
    var(--lp-canvas);
}

.landing-connect__layout {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 960px) {
  .landing-connect__layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.landing-timeline {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0 0 0 var(--space-md);
  display: grid;
  gap: var(--space-md);
  border-left: 2px solid color-mix(in srgb, var(--lp-brand) 30%, transparent);
}

.landing-timeline__item {
  position: relative;
}

.landing-timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-md) - 5px);
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background: var(--lp-brand);
  box-shadow: 0 0 0 5px var(--lp-brand-soft);
}

.landing-timeline__step {
  display: inline-block;
  color: var(--lp-brand);
  font-size: var(--font-size-label-md);
  font-weight: var(--font-weight-label-md);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.3rem;
}

.landing-timeline__title {
  font-size: var(--font-size-headline-sm);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.landing-timeline__text {
  color: var(--lp-ink-muted);
  font-size: var(--font-size-body-md);
  line-height: 1.55;
}

.landing-connect__visual {
  padding: var(--space-md);
  position: sticky;
  top: 7rem;
}

.landing-connect__phone {
  background: linear-gradient(165deg, #0B1220 0%, #152238 55%, #0A66FF 160%);
  color: #fff;
  border-radius: calc(var(--radius-xl) + 0.15rem);
  padding: var(--space-md);
  min-height: 23rem;
  box-shadow: 0 20px 50px rgba(10, 102, 255, 0.28);
}

.landing-connect__phone-header {
  font-size: var(--font-size-label-md);
  opacity: 0.72;
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-connect__bubble {
  max-width: 88%;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-body-md);
  line-height: 1.45;
  animation: landing-fade-up 0.6s ease both;
}

.landing-connect__bubble--in {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-connect__bubble--out {
  background: #0A66FF;
  margin-left: auto;
  animation-delay: 0.15s;
}

.landing-connect__bubble--in:nth-child(4) {
  animation-delay: 0.3s;
}

.landing-connect__caption {
  margin-top: var(--space-sm);
  text-align: center;
  color: var(--lp-ink-muted);
  font-size: var(--font-size-body-md);
}

/* Security */
.landing-security {
  background: var(--lp-surface);
}

.landing-security__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .landing-security__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .landing-security__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-security__item {
  padding: var(--space-md);
  transition: transform 0.2s ease;
}

.landing-security__item:hover {
  transform: translateY(-3px);
}

.landing-security__title {
  font-size: var(--font-size-headline-sm);
  margin-bottom: var(--space-xs);
}

.landing-security__text {
  color: var(--lp-ink-muted);
  font-size: var(--font-size-body-md);
  line-height: 1.55;
}

/* Data usage */
.landing-data__panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.landing-data__promises {
  display: grid;
  gap: var(--space-xs);
  margin-block: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--lp-brand-soft);
  color: var(--lp-ink);
  font-weight: var(--font-weight-label-md);
}

/* Legal CTA */
.landing-legal-cta__grid {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .landing-legal-cta__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-legal-cta__card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
  min-height: 100%;
}

/* FAQ */
.landing-faq {
  background: var(--lp-surface);
}

.landing-faq__list {
  display: grid;
  gap: var(--space-sm);
  max-width: 48rem;
  margin-inline: auto;
}

.landing-faq__item {
  padding: 0;
  overflow: hidden;
}

.landing-faq__question {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: var(--font-weight-headline-sm);
  font-size: var(--font-size-body-lg);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.landing-faq__question::-webkit-details-marker {
  display: none;
}

.landing-faq__question::after {
  content: "+";
  color: var(--lp-brand);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.landing-faq__item[open] .landing-faq__question::after {
  content: "–";
}

.landing-faq__answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--lp-ink-muted);
  line-height: 1.65;
}

/* Contact */
.landing-contact__grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .landing-contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.landing-contact__details {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.landing-contact__details li {
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  background: var(--lp-surface);
  border: 1px solid color-mix(in srgb, var(--lp-ink) 8%, transparent);
}

.landing-contact__details a {
  color: var(--lp-brand);
  text-decoration: none;
  font-weight: var(--font-weight-label-md);
}

.landing-contact__label {
  display: block;
  font-size: var(--font-size-label-md);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp-ink-muted);
  margin-bottom: 0.25rem;
}

.landing-contact__pricing {
  padding: var(--space-md);
}

.landing-contact__pricing-title {
  font-size: var(--font-size-headline-sm);
  margin-bottom: var(--space-xs);
}

.landing-form {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: grid;
  gap: var(--space-sm);
}

.landing-form__title {
  font-size: var(--font-size-headline-sm);
}

.landing-form__field {
  display: grid;
  gap: 0.45rem;
  font-size: var(--font-size-label-md);
  font-weight: var(--font-weight-label-md);
  color: var(--lp-ink-muted);
}

.landing-form__field input,
.landing-form__field textarea {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--lp-ink) 12%, transparent);
  background: var(--lp-surface);
  color: var(--lp-ink);
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: var(--font-size-body-md);
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-form__field textarea {
  min-height: 8rem;
  resize: vertical;
}

.landing-form__field input:focus,
.landing-form__field textarea:focus {
  outline: none;
  border-color: var(--lp-brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lp-brand) 18%, transparent);
}

.landing-form__field.is-invalid input,
.landing-form__field.is-invalid textarea {
  border-color: var(--color-error);
}

.landing-form__submit {
  width: 100%;
  margin-top: var(--space-xs);
}

.landing-form__status {
  min-height: 1.25rem;
  font-size: var(--font-size-body-md);
  color: var(--lp-brand);
}

/* Footer */
.landing-footer {
  background: var(--lp-footer-bg);
  color: var(--lp-footer-ink);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.landing-footer__grid {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .landing-footer__grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }
}

.landing-footer__brand {
  max-width: 28rem;
}

.landing-footer__logo {
  width: 20%;
  max-width: 20%;
  min-width: 5rem;
  height: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .landing-footer__logo {
    width: 36%;
    max-width: 36%;
  }
}

.landing-footer__blurb {
  color: var(--lp-footer-muted);
  max-width: 22rem;
  font-size: var(--font-size-body-md);
  line-height: 1.6;
}

.landing-footer__heading {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: var(--font-size-label-md);
  margin-bottom: var(--space-sm);
}

.landing-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.landing-footer__list a,
.landing-footer__bottom a {
  color: var(--lp-footer-muted);
  text-decoration: none;
  font-size: var(--font-size-body-md);
}

.landing-footer__list a:hover,
.landing-footer__bottom a:hover {
  color: var(--lp-footer-ink);
}

.landing-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  color: rgba(243, 246, 252, 0.6);
  font-size: var(--font-size-label-md);
  text-align: center;
}

/* Legal pages */
.landing-legal {
  padding-block: var(--lp-section-pad);
}

.landing-legal__inner {
  max-width: 52rem;
}

.landing-legal-page .landing-nav__brand {
  max-width: 20%;
}

.landing-legal__content {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: var(--space-md);
}

.landing-legal__content h2 {
  font-size: var(--font-size-headline-sm);
  margin-bottom: var(--space-xs);
  color: var(--lp-ink);
}

.landing-legal__content p,
.landing-legal__content li {
  color: var(--lp-ink-muted);
  font-size: var(--font-size-body-md);
  line-height: 1.65;
}

.landing-legal__content ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.landing-legal__content a {
  color: var(--lp-brand);
}

.landing-legal-page .landing-nav__logo {
  width: 100%;
}

/* Reveal on scroll */
.landing-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes landing-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__image,
  .landing-hero__content,
  .landing-hero__chat,
  .landing-hero__dash,
  .landing-connect__bubble,
  .landing-feature,
  .landing-reveal,
  .landing-btn {
    animation: none !important;
    transition: none !important;
  }

  .landing-reveal {
    opacity: 1;
    transform: none;
  }
}
