/* LampyQuest — landing page styles
   Layered on top of puzzle.css */

body.landing {
  max-width: 720px;
  padding: 1rem 1.25rem 3rem;
}

.hero {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

.hero-logo {
  width: min(88%, 420px);
  height: auto;
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.landing section {
  margin: 2rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-purple);
}

.landing section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.landing h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.landing h2 {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.landing h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.callout {
  background: var(--color-surface);
  border: 1px solid var(--color-purple);
  border-radius: 8px;
  padding: 1.5rem 1.25rem !important;
  border-top: 1px solid var(--color-purple) !important;
}

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 1rem 0 0;
}

.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.steps > li:last-child {
  margin-bottom: 0;
}

.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-row .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 140px;
}

.bring-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bring-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px dashed var(--color-purple);
}

.bring-list li:last-child {
  border-bottom: none;
}

.bring-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.footnote-ref {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.1em;
}

.footnote {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--color-purple);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-muted);
}

.paolo-warning {
  background: rgba(212, 33, 61, 0.08);
  border: 1px solid var(--color-red);
  border-radius: 8px;
  padding: 1.5rem 1.25rem !important;
  border-top: 1px solid var(--color-red) !important;
}

.paolo-warning h2 {
  color: var(--color-red-light);
}

.landing-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-purple);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
}
