/* Petasos site — matches the app's dark, gold-accented cockpit look. */
:root {
  --bg: #0b0f1a;
  --bg-card: #131a2a;
  --stroke: #2a3550;
  --gold: #e0b452;
  --gold-dim: #b8933e;
  --text: #e8ecf5;
  --muted: #9aa5bd;
  --danger: #e06a5a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }
header.site {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0; border-bottom: 1px solid var(--stroke);
}
header.site img { width: 36px; height: 36px; border-radius: 8px; }
header.site .name { font-weight: 700; font-size: 18px; letter-spacing: 0.3px; }
header.site nav { margin-left: auto; display: flex; gap: 20px; }
header.site nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
header.site nav a:hover { color: var(--gold); }
.hero { text-align: center; padding: 72px 0 56px; }
.hero img.icon {
  width: 120px; height: 120px; border-radius: 27px;
  box-shadow: 0 12px 48px rgba(224, 180, 82, 0.25);
}
.hero h1 { font-size: 44px; margin: 24px 0 8px; letter-spacing: -0.5px; }
.hero h1 .gold { color: var(--gold); }
.hero p.tag { font-size: 20px; color: var(--muted); max-width: 560px; margin: 0 auto; }
.hero .badges { margin-top: 32px; }
.hero .badge {
  display: inline-block; background: var(--gold); color: #16120a;
  font-weight: 600; padding: 12px 26px; border-radius: 12px;
  text-decoration: none; font-size: 16px;
}
.hero .badge.soon { background: var(--bg-card); color: var(--muted); border: 1px solid var(--stroke); margin-left: 10px; }
.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; padding: 24px 0 56px;
}
.card {
  background: var(--bg-card); border: 1px solid var(--stroke);
  border-radius: 14px; padding: 20px;
}
.card h3 { font-size: 16px; margin-bottom: 6px; color: var(--gold); }
.card p { font-size: 14px; color: var(--muted); }
.steps { padding: 8px 0 64px; }
.steps h2, .content h2 { font-size: 26px; margin: 32px 0 12px; }
.steps ol { margin-left: 22px; color: var(--muted); }
.steps li { margin: 10px 0; }
.steps code, .content code {
  background: var(--bg-card); border: 1px solid var(--stroke);
  padding: 1px 7px; border-radius: 6px; font-size: 0.9em; color: var(--gold);
}
.content { padding-bottom: 64px; }
.content h1 { font-size: 34px; margin: 44px 0 6px; }
.content .updated { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.content h2 { font-size: 21px; margin: 30px 0 8px; color: var(--gold); }
.content p, .content li { color: #c6cede; font-size: 15.5px; }
.content ul { margin: 8px 0 8px 22px; }
.content a { color: var(--gold); }
.content .callout {
  background: var(--bg-card); border: 1px solid var(--stroke);
  border-left: 3px solid var(--gold); border-radius: 10px;
  padding: 14px 18px; margin: 18px 0;
}
footer.site {
  border-top: 1px solid var(--stroke); padding: 28px 0 40px;
  color: var(--muted); font-size: 13.5px; text-align: center;
}
footer.site a { color: var(--muted); }
@media (max-width: 600px) {
  .hero h1 { font-size: 34px; }
  .hero p.tag { font-size: 17px; }
}
