/* Landing-page styles, layered on styles.css. Kitchen-derived tokens only. */

:root {
  --step-prep: #007aff;      /* KitchenStepPreparation */
  --step-cook: #ff9500;      /* KitchenStepCooking */
  --step-plate: #34c759;     /* KitchenStepPlating */
  --step-inactive: #8e8e93;  /* KitchenStepInactive */
  --frame: #1c1c1e;          /* device bezel */
}

@media (prefers-color-scheme: dark) {
  :root {
    --step-prep: #0a84ff;
    --step-cook: #ff9f0a;
    --step-plate: #30d158;
    --step-inactive: #8e8e93;
    --frame: #2c2c2e;
  }
}

/* Wider shell than the prose pages. */
.landing-header,
.landing,
.landing-footer {
  max-width: 68rem;
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pill {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.landing {
  padding-top: 40px;
  padding-bottom: 0;
}

/* Bands */

.band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

@media (min-width: 880px) {
  .band {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .band.flip > .band-visual { order: -1; }
}

.band-bleed {
  background: var(--surface);
  border-radius: 16px;
  padding: 8px 24px;
  margin: 24px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 4px;
}

.hero h1 {
  font-size: clamp(36px, 6.5vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.band h2 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 10px;
}

.lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 34rem;
}

/* Device frame around screenshots */

.device {
  background: var(--frame);
  border: 1px solid var(--line);
  border-radius: 54px;
  padding: 12px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* KitchenElevation.card */
}

.device img,
.device svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 42px;
}

/* Timeline illustration strip */

.chart-strip {
  margin: 8px 0 40px;
}

.chart-strip svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart-caption {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
  text-align: center;
}

/* Details grid */

.grid-section {
  padding: 48px 0 8px;
}

.grid-section > h2 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-grid li {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  margin: 0;
}

.feature-grid .glyph {
  color: var(--accent);
  margin-bottom: 10px;
}

.feature-grid h3 {
  margin: 0 0 4px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Closing */

.closing {
  text-align: center;
  padding: 56px 0 64px;
}

.closing h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
