/* turysta.uk landing page. Reuses the design tokens from css/app.css
   (--bg, --surface, --brand, --text, --muted, --line, --radius, --shadow)
   and its light/dark + reduced-motion handling. Only shown when the app is
   not booting (see js/app.js shouldBootApp). */

.lp {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0 20px calc(48px + var(--safe-b));
  min-height: 100dvh;
}

.lp__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: calc(18px + var(--safe-t)) 0 8px;
}
.lp__brand { font-size: 1.35rem; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
.lp__dot { color: var(--brand); }
.lp__nav { display: flex; gap: 16px; font-size: .92rem; }
.lp__nav a { color: var(--muted); text-decoration: none; }
.lp__nav a:hover { color: var(--brand); }

.lp__hero { padding: 40px 0 8px; }
.lp__hero h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); line-height: 1.15; margin: 0 0 .35em; letter-spacing: -.02em; }
.lp__lede { font-size: clamp(1rem, 2.4vw, 1.2rem); color: var(--muted); max-width: 40ch; margin: 0; }

.lp section { margin-top: 44px; }
.lp h2 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 0 0 14px; }

.lp__grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .lp__grid { grid-template-columns: 1fr 1fr; } }

.lp__city {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px 18px 16px; text-decoration: none; color: var(--text);
  transition: transform .12s ease, border-color .12s ease;
}
.lp__city:hover { transform: translateY(-2px); border-color: var(--brand); }
.lp__city--soon { background: var(--surface-2); box-shadow: none; }
.lp__city-name { font-size: 1.2rem; font-weight: 700; }
.lp__city-sub { font-size: .82rem; color: var(--muted); }
.lp__city-desc { font-size: .92rem; color: var(--muted); line-height: 1.45; margin: 4px 0 2px; }
.lp__city-meta { font-size: .82rem; color: var(--muted); }
.lp__city-go { margin-top: 10px; font-weight: 700; color: var(--brand); font-size: .95rem; text-decoration: none; }

.lp__steps { margin: 0; padding-left: 1.3em; display: grid; gap: 10px; color: var(--text); }
.lp__steps li { padding-left: 4px; line-height: 1.5; }

.lp__feat { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .lp__feat { grid-template-columns: 1fr 1fr; } }
.lp__feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; line-height: 1.4; }
.lp__feat li > span { flex: 0 0 auto; font-size: 1.15rem; line-height: 1.25; }

.lp__foot { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.lp__foot a { color: var(--brand); }
.lp__foot p { margin: 0 0 .5em; }
.lp__cc { font-size: .8rem; }
