:root {
  --navy: #06152f;
  --navy-soft: #0b2147;
  --blue: #2f7cff;
  --cyan: #3be8ff;
  --violet: #8b5cf6;
  --text: #edf5ff;
  --muted: #a8b9d8;
  --card: rgba(255,255,255,.075);
  --border: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, rgba(47,124,255,.25), transparent 36%), radial-gradient(circle at 90% 10%, rgba(139,92,246,.24), transparent 34%), linear-gradient(180deg, #06152f 0%, #071832 48%, #041126 100%);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
.page-glow {
  position: fixed;
  inset: -20% auto auto -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(59,232,255,.16), transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(6,21,47,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: padding .25s ease, background .25s ease;
}
.site-header.scrolled { padding: 10px 0; background: rgba(4,17,38,.92); }
nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-mark, .footer-brand {
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.18rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #031126;
  box-shadow: 0 10px 30px rgba(47,124,255,.35);
}
nav ul { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
nav li { margin: 0; padding: 0; }
nav li a {
  color: var(--muted);
  display: block;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
nav li a:hover { color: #fff; background: rgba(255,255,255,.09); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

.hero-section { padding: 116px 0 72px; }
.eyebrow, .section-heading span, .outcome-intro span, .cta-box span {
  display: inline-flex;
  color: var(--cyan);
  background: rgba(59,232,255,.08);
  border: 1px solid rgba(59,232,255,.22);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.7rem); line-height: .91; letter-spacing: -.075em; font-weight: 900; margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; font-weight: 900; }
h3 { font-weight: 850; letter-spacing: -.035em; }
.hero-copy, .rich-copy, .section-heading p, .cta-box p, footer p { color: var(--muted); font-size: 1.08rem; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn { border-radius: 999px; font-weight: 800; padding: 13px 23px; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--cyan)); border: 0; color: #041126; box-shadow: 0 18px 42px rgba(47,124,255,.3); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; max-width: 650px; }
.hero-stats div, .feature-card, .lab-card, .outcome-intro, .resource-card, .timeline div, .cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-stats div { padding: 20px; }
.hero-stats strong { font-size: 2rem; display: block; }
.hero-stats span { color: var(--muted); }
.hero-card { position: relative; border-radius: 38px; overflow: hidden; min-height: 620px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.hero-card img { width: 100%; height: 620px; object-fit: cover; }
.hero-card:before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3,12,29,.96)); }
.card-overlay { position: absolute; left: 28px; right: 28px; bottom: 28px; }
.card-overlay span { color: var(--cyan); font-weight: 800; }
.card-overlay p { color: var(--muted); }
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }

.logo-strip { padding: 25px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.035); }
.logo-strip p { text-align: center; color: var(--muted); margin-bottom: 16px; }
.strip-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.strip-items span { padding: 10px 15px; border: 1px solid var(--border); border-radius: 999px; color: #dceaff; background: rgba(255,255,255,.05); }
.section-space { padding: 96px 0; }
.section-heading { max-width: 850px; text-align: center; margin: 0 auto 46px; }
.feature-card { height: 100%; padding: 30px; transition: transform .28s ease, border-color .28s ease, background .28s ease; }
.feature-card:hover, .resource-card:hover, .lab-card:hover { transform: translateY(-8px); border-color: rgba(59,232,255,.42); background: rgba(255,255,255,.105); }
.icon-bubble { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; background: rgba(47,124,255,.18); color: var(--cyan); font-weight: 900; margin-bottom: 22px; }
.feature-card p, .lab-card p, .resource-card p, .timeline p, .check-grid span { color: var(--muted); line-height: 1.7; }
.feature-card a, .resource-card a { color: var(--cyan); font-weight: 800; }
.automation-section { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); }
.image-stack { position: relative; }
.image-stack img { border-radius: 36px; min-height: 500px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow); }
.mini-panel { position: absolute; right: 24px; bottom: 24px; max-width: 330px; padding: 22px; border-radius: 24px; background: rgba(5,18,40,.86); border: 1px solid var(--border); backdrop-filter: blur(18px); }
.mini-panel strong, .mini-panel span { display: block; }
.mini-panel span { color: var(--muted); margin-top: 6px; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.check-grid div { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.055); border: 1px solid var(--border); }
.check-grid b, .check-grid span { display: block; }
.lab-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.lab-card { padding: 30px; min-height: 220px; transition: .28s ease; }
.large-card { grid-row: span 3; }
.large-card img { border-radius: 24px; margin-top: 26px; height: 360px; width: 100%; object-fit: cover; }
.outcome-intro { padding: 38px; }
.timeline { display: grid; gap: 18px; }
.timeline div { padding: 25px; }
.timeline b { color: var(--cyan); }
.resource-card { overflow: hidden; height: 100%; transition: .28s ease; }
.resource-card img { width: 100%; height: 230px; object-fit: cover; }
.resource-card h3, .resource-card p, .resource-card a { margin-left: 24px; margin-right: 24px; }
.resource-card h3 { margin-top: 24px; }
.resource-card a { display: inline-block; margin-bottom: 26px; }
.cta-section { padding: 40px 0 100px; }
.cta-box { padding: 46px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: linear-gradient(135deg, rgba(47,124,255,.28), rgba(139,92,246,.2)); }
.cta-box div { max-width: 790px; }
footer { padding: 70px 0 32px; background: #030d20; border-top: 1px solid var(--border); }
footer h4 { font-size: 1rem; color: #fff; margin-bottom: 18px; }
footer a:not(.footer-brand) { color: var(--muted); display: block; margin-bottom: 10px; transition: color .2s ease; }
footer a:hover { color: var(--cyan); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { border: 1px solid var(--border); border-radius: 999px; padding: 10px 14px; margin: 0 !important; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: .92rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  nav ul { position: absolute; top: 74px; left: 12px; right: 12px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 24px; background: rgba(4,17,38,.97); border: 1px solid var(--border); }
  nav ul.open { display: flex; }
  nav li a { border-radius: 16px; }
  .menu-toggle { display: block; }
  .hero-section { padding-top: 76px; }
  .hero-card, .hero-card img { min-height: auto; height: auto; }
  .hero-stats, .check-grid, .lab-grid { grid-template-columns: 1fr; }
  .large-card { grid-row: auto; }
  .cta-box, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
  h1 { font-size: 3.3rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .section-space { padding: 70px 0; }
  .cta-box, .outcome-intro { padding: 28px; }
}
