:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: rgba(11, 18, 25, 0.86);
  --panel-strong: rgba(16, 28, 38, 0.96);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f7f2;
  --muted: #c7d1d8;
  --yellow: #ffd100;
  --green: #22cc66;
  --blue: #7fc8ff;
  --red: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.airon-module-page {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 209, 0, 0.14), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(34, 204, 102, 0.11), transparent 28rem),
    linear-gradient(145deg, #030407 0%, #081019 52%, #020305 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

a { color: inherit; }
.page-shell { min-height: 100vh; }
main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 76px; }

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  padding: 54px 0 30px;
}
.hero-copy,
.hero-panel,
.module-card,
.process-card,
.quote-band,
.related-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero-copy { padding: clamp(28px, 5vw, 54px); }
.hero-panel { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Barlow Condensed", Inter, sans-serif; line-height: 0.98; margin: 0; }
h1 { font-size: clamp(3rem, 9vw, 7.2rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2.25rem); }
p { margin: 0 0 1rem; color: var(--muted); }
.hero-lede { margin-top: 20px; font-size: clamp(1.16rem, 2vw, 1.55rem); max-width: 780px; color: #fff; }
.hero-statement { margin-top: 18px; font-size: clamp(1.35rem, 3vw, 2.3rem); font-weight: 800; color: var(--yellow); }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.button-primary { color: #061008; background: var(--yellow); border-color: var(--yellow); }
.button-secondary { color: #fff; background: rgba(255,255,255,0.07); }
.button:hover { transform: translateY(-1px); }
.panel-label { color: var(--green); font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
.panel-stack { display: grid; gap: 10px; margin-top: 18px; }
.panel-stack span { display: block; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 10px 12px; color: #fff; background: rgba(255,255,255,0.05); }
.truth-band {
  margin: 10px 0 28px;
  border: 1px solid rgba(255, 209, 0, 0.32);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,209,0,0.16), rgba(34,204,102,0.09));
  padding: 18px 22px;
}
.truth-band p { margin: 0; font-weight: 900; color: #fff; font-size: clamp(1.1rem, 2.4vw, 1.85rem); }
.content-section { padding: 38px 0; }
.section-heading-row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr); gap: 24px; align-items: end; margin-bottom: 22px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.two-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.module-card, .process-card, .related-panel { padding: 24px; }
.module-card h3, .process-card h3 { margin-bottom: 12px; }
.module-card p:last-child, .process-card p:last-child { margin-bottom: 0; }
.module-card.accent { border-color: rgba(255, 209, 0, 0.34); background: linear-gradient(145deg, rgba(255,209,0,0.12), rgba(11,18,25,0.9)); }
.process-list { counter-reset: step; display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-list li { counter-increment: step; position: relative; padding: 20px 20px 20px 64px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.process-list li::before { content: counter(step); position: absolute; left: 18px; top: 18px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: #061008; font-weight: 900; }
.process-list strong { display: block; color: #fff; margin-bottom: 4px; }
.quote-band { padding: clamp(26px, 4vw, 44px); background: linear-gradient(145deg, rgba(34,204,102,0.13), rgba(11,18,25,0.93)); }
.quote-band blockquote { margin: 0; font-size: clamp(1.45rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.1; color: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.related-panel a { display: block; text-decoration: none; }
.related-panel small { display: block; color: var(--yellow); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.related-panel strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.note { color: #dfe8ed; font-weight: 700; }

@media (max-width: 900px) {
  main { width: min(100% - 22px, 1180px); }
  .hero-section, .section-heading-row, .two-grid { grid-template-columns: 1fr; }
  .card-grid, .related-grid { grid-template-columns: 1fr; }
}
