/* Landing page only - its own palette (soft ivory background, desaturated gray
   accent), independent of style.css's warm-neutral :root variables so changing
   this never affects the tool at /app. Still links style.css for the shared
   reset (box-sizing, font stack, body margin). */

.landing {
  --landing-bg: rgb(251 250 246 / 1.0);
  --landing-panel-bg: #ffffff;
  --landing-border: #e6e4de;
  --landing-text: #262420;
  --landing-muted: #6b6863;
  --landing-accent: #bfbfbf;
  /* #bfbfbf is too light for white-on-accent text (the step-number circles) or
     for use as link text color directly against this light a background - both
     would fail contrast. Used as a fill/border color instead; text drawn on or
     near it stays the dark neutral --landing-text. */
  --landing-footer-bg: #eeeeec;

  max-width: none;
  background: var(--landing-bg);
  color: var(--landing-text);
}

.landing-nav {
  border-bottom: 1px solid var(--landing-border);
}

.landing-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.landing-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.landing-hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.landing-hero-subtitle {
  font-size: 1.15rem;
  color: var(--landing-muted);
  margin: 0 0 2rem;
  line-height: 1.5;
}

.landing-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.landing-section h2 {
  font-size: 1.75rem;
  margin: 0 0 2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.landing-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 820px) {
  .landing-steps {
    grid-template-columns: 1fr;
  }
}

.landing-step {
  display: flex;
  gap: 1rem;
  background: var(--landing-panel-bg);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.landing-step-number {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--landing-accent);
  color: var(--landing-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.landing-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.landing-step p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.landing-mcp {
  background: var(--landing-panel-bg);
  border-top: 1px solid var(--landing-border);
  border-bottom: 1px solid var(--landing-border);
  max-width: none;
}

.landing-mcp-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  text-align: center;
}

.landing-mcp-inner h2 {
  margin-bottom: 1rem;
}

.landing-mcp-inner p {
  color: var(--landing-muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.landing-inline-link {
  color: var(--landing-text);
  text-decoration-color: var(--landing-accent);
  text-decoration-thickness: 2px;
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .landing-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .landing-features {
    grid-template-columns: 1fr;
  }
}

.landing-feature-card {
  background: var(--landing-panel-bg);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.landing-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.landing-feature-card p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.landing-footer {
  background: var(--landing-footer-bg);
  border-top: 1px solid var(--landing-border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--landing-muted);
  font-size: 0.9rem;
}
