:root {
  --airon-bg: #06111f;
  --airon-bg-2: #0a1c31;
  --airon-panel: rgba(9, 31, 52, 0.88);
  --airon-panel-2: rgba(10, 42, 70, 0.72);
  --airon-line: rgba(93, 177, 255, 0.22);
  --airon-blue: #5db1ff;
  --airon-blue-soft: #b8dcff;
  --airon-gold: #f2b63d;
  --airon-gold-2: #ffd978;
  --airon-red: #ff6b58;
  --airon-green: #73f7b6;
  --text: #f6fbff;
  --muted: #b9c8d9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 177, 255, 0.18), transparent 38rem),
    radial-gradient(circle at 88% 10%, rgba(242, 182, 61, 0.12), transparent 28rem),
    linear-gradient(180deg, #030914 0%, var(--airon-bg) 45%, #02070e 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
.site-footer,
.content-section,
.hero-section,
.truth-band {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.42));
}

.brand-mark span {
  display: grid;
  gap: 2px;
}

.brand-mark strong {
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.74rem;
  max-width: 250px;
}

.header-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.header-nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.18s ease;
}

.header-nav a:hover,
.site-footer a:hover {
  color: var(--text);
  border-color: rgba(242, 182, 61, 0.56);
  background: rgba(242, 182, 61, 0.08);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 28px;
  padding: 72px 0 38px;
}

.hero-copy,
.hero-panel,
.contrast-card,
.capability-card,
.timeline-step,
.connection-card,
.example-card,
.mini-dashboard,
.quote-section,
.cta-section {
  border: 1px solid var(--airon-line);
  background: linear-gradient(145deg, rgba(7, 23, 42, 0.88), rgba(8, 35, 58, 0.62));
  box-shadow: var(--shadow);
  border-radius: 26px;
}

.hero-copy {
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(242, 182, 61, 0.11), transparent 32%),
    radial-gradient(circle at bottom right, rgba(93, 177, 255, 0.16), transparent 28rem);
  border-radius: inherit;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--airon-gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.77rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 12vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  color: #fff;
  text-shadow: 0 0 24px rgba(93, 177, 255, 0.15);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-lede {
  color: var(--airon-blue-soft);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  max-width: 780px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--airon-gold), #ffe29a);
  color: #091f34;
}

.button-secondary {
  color: var(--text);
  background: rgba(93, 177, 255, 0.08);
  border-color: rgba(93, 177, 255, 0.32);
}

.hero-panel {
  padding: 28px;
  position: relative;
  display: grid;
  align-content: end;
  min-height: 410px;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% -10%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(242, 182, 61, 0.20), transparent 62%);
}

.hero-panel h2,
.hero-panel p {
  position: relative;
  z-index: 2;
}

.panel-label {
  color: var(--airon-gold-2);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.orb-wrap {
  position: absolute;
  inset: 38px 38px auto auto;
  width: 220px;
  height: 220px;
}

.orb,
.orb-ring {
  position: absolute;
  border-radius: 50%;
}

.orb {
  inset: 42px;
  background:
    radial-gradient(circle at 34% 24%, #fff7cf 0 10%, #f2b63d 18%, #4aa5ff 45%, #081426 78%);
  box-shadow: 0 0 60px rgba(93, 177, 255, 0.38), inset -22px -22px 48px rgba(0, 0, 0, 0.32);
}

.orb-ring {
  inset: 0;
  border: 1px solid rgba(242, 182, 61, 0.36);
  animation: slowSpin 16s linear infinite;
}

.ring-two {
  inset: 22px;
  border-color: rgba(93, 177, 255, 0.34);
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.truth-band {
  border-top: 1px solid rgba(242, 182, 61, 0.42);
  border-bottom: 1px solid rgba(242, 182, 61, 0.42);
  margin-top: 26px;
  margin-bottom: 34px;
  padding: 22px 0;
  color: var(--airon-gold-2);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.truth-band p {
  margin: 0;
}

.content-section {
  padding: 48px 0;
}

.two-column,
.example-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.two-column > div:first-child {
  padding: 18px 8px;
}

.two-column p,
.section-heading-row p,
.example-card p,
.quote-section p,
.cta-section p,
.process-list span,
.capability-card p,
.connection-card p,
.timeline-step p {
  color: var(--muted);
}

.contrast-card,
.capability-card,
.timeline-step,
.connection-card,
.example-card,
.quote-section,
.cta-section,
.mini-dashboard {
  padding: 24px;
}

.contrast-card {
  border-color: rgba(242, 182, 61, 0.28);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 12px;
}

.timeline-step {
  min-height: 220px;
  display: grid;
  align-content: start;
}

.timeline-step span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(93, 177, 255, 0.10);
  color: var(--airon-blue-soft);
  border: 1px solid rgba(93, 177, 255, 0.25);
  font-weight: 900;
  margin-bottom: 16px;
}

.timeline-step strong {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.timeline-step.highlight {
  border-color: rgba(242, 182, 61, 0.62);
  background: linear-gradient(145deg, rgba(55, 38, 10, 0.72), rgba(9, 31, 52, 0.78));
}

.timeline-step.highlight span {
  background: rgba(242, 182, 61, 0.18);
  color: var(--airon-gold-2);
  border-color: rgba(242, 182, 61, 0.45);
}

.card-grid,
.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 210px;
}

.capability-card h3,
.connection-card strong {
  color: #fff;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.process-list {
  list-style: none;
  counter-reset: process;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--airon-line);
  background: rgba(255, 255, 255, 0.035);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  height: 42px;
  border-radius: 14px;
  color: #06111f;
  background: linear-gradient(135deg, var(--airon-gold), #ffe29a);
  font-weight: 950;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  color: #fff;
  margin-bottom: -6px;
}

.connection-card {
  display: grid;
  gap: 8px;
  text-decoration: none;
  min-height: 210px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.connection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 182, 61, 0.52);
  background: linear-gradient(145deg, rgba(10, 42, 70, 0.84), rgba(9, 31, 52, 0.84));
}

.connection-card span {
  color: var(--airon-gold-2);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  font-size: 0.72rem;
}

.example-card {
  border-color: rgba(93, 177, 255, 0.32);
}

.mini-dashboard {
  display: grid;
  gap: 12px;
  align-content: center;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-row span {
  color: var(--muted);
}

.dash-row strong {
  font-size: 1.2rem;
}

.dash-row.good strong { color: var(--airon-green); }
.dash-row.warn strong { color: var(--airon-gold-2); }
.dash-row.danger strong { color: var(--airon-red); }

.quote-section {
  text-align: center;
  padding: clamp(28px, 6vw, 68px);
  border-color: rgba(242, 182, 61, 0.34);
}

.quote-section h2 {
  max-width: 900px;
  margin-inline: auto;
}

.quote-section p {
  max-width: 790px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.cta-section {
  align-items: center;
  margin-bottom: 42px;
  border-color: rgba(242, 182, 61, 0.36);
}

.cta-actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer p {
  color: var(--muted);
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer,
  .hero-section,
  .two-column,
  .section-heading-row,
  .split-band,
  .example-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav,
  .site-footer nav {
    justify-content: flex-start;
  }

  .card-grid,
  .connection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    min-height: unset;
  }

  .hero-panel {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .content-section,
  .hero-section,
  .truth-band {
    width: min(100% - 22px, 1180px);
  }

  .hero-section {
    padding-top: 34px;
  }

  .brand-mark img {
    width: 58px;
    height: 58px;
  }

  .header-nav a,
  .site-footer a {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: 2rem;
  }

  .card-grid,
  .connection-grid {
    grid-template-columns: 1fr;
  }

  .orb-wrap {
    width: 160px;
    height: 160px;
    right: 22px;
    top: 22px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list strong,
  .process-list span {
    grid-column: 1;
  }
}
