:root {
  color-scheme: dark;
  --bg: #0b0f17;
  --surface: #111827;
  --surface-2: #172033;
  --text: #f8fafc;
  --muted: #9ca3af;
  --border: rgba(148, 163, 184, 0.22);
  --accent: #ff5722;
  --green: #84cc16;
  --cyan: #22d3ee;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: inherit; }
.nav, .footer-inner { width: min(1120px, calc(100% - 32px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
header { border-bottom: 1px solid var(--border); background: rgba(11, 15, 23, 0.92); }
.nav { min-height: 64px; }
.logo { text-decoration: none; font-size: 20px; font-weight: 800; }
.logo span { color: var(--accent); }
.nav-links, .footer-links, .hero-actions, .related-links { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.nav-links a, .footer-links a, .text-link, .related-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav-links a:hover, .footer-links a:hover, .text-link:hover, .related-links a:hover { color: var(--text); }
.nav-links .cta { background: var(--accent); color: #fff; padding: 10px 14px; font-weight: 700; }
main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 48%); align-items: center; gap: 40px; }
.example-hero { min-height: 560px; }
.eyebrow { margin: 0 0 10px; color: var(--green); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(38px, 6vw, 74px); line-height: 0.96; letter-spacing: 0; max-width: 820px; }
h2 { margin: 0 0 16px; font-size: 28px; line-height: 1.1; letter-spacing: 0; }
h3 { margin: 16px 0 8px; font-size: 18px; letter-spacing: 0; }
p { color: var(--muted); line-height: 1.7; }
.hero-copy p:not(.eyebrow) { max-width: 680px; font-size: 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; text-decoration: none; font-weight: 800; font-size: 14px; border: 1px solid var(--border); }
.button.primary { background: var(--accent); border-color: var(--accent); color: white; }
.button.secondary { background: transparent; color: var(--text); }
.hero-visual { width: 100%; height: auto; border: 1px solid var(--border); background: var(--surface); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 0; border-top: 1px solid var(--border); }
.content-grid > div, .content-band, .example-card { border: 1px solid var(--border); background: var(--surface); padding: 24px; }
.steps, .checks { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.content-band { margin: 0 0 56px; }
.related-links { margin-top: 18px; }
.example-list { padding: 20px 0 56px; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.example-card img { width: 100%; height: auto; display: block; border: 1px solid var(--border); background: var(--surface-2); }
.example-card h3 a { text-decoration: none; color: var(--text); }
footer { border-top: 1px solid var(--border); padding: 24px 0; color: var(--muted); }
@media (max-width: 820px) {
  .nav, .footer-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .hero, .content-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 54px 0 36px; }
  .cards { grid-template-columns: 1fr; }
}
