:root {
  --bg: #081018;
  --bg-soft: #0d1622;
  --card: rgba(255,255,255,0.08);
  --card-strong: rgba(255,255,255,0.12);
  --line: rgba(255,255,255,0.12);
  --text: #eef4ff;
  --muted: #a8b5c9;
  --accent: #8dbbff;
  --accent-2: #c9dcff;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(97, 140, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(141, 187, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #071018 0%, #09131d 45%, #071018 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(8, 16, 24, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.25));
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dce8ff, #9bc1ff);
  color: #071018;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(141, 187, 255, 0.24);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(141, 187, 255, 0.28); }
.button-small { padding: 11px 18px; font-size: .95rem; }
.button-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}

.hero {
  padding-top: 88px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-grid,
.two-col,
.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.contact-card h2,
.hero-card h2 {
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  margin: 12px 0 18px;
  max-width: 12ch;
}

.lead,
.section-heading p,
.content-card p,
.info-card p,
.feature-copy p,
.contact-card p,
.hero-card p,
.step p,
.quote {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  font-size: 1.12rem;
  max-width: 60ch;
}

.eyebrow {
  color: var(--accent-2);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions,
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--accent-2);
  font-size: .94rem;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.hero-card,
.content-card,
.quote-card,
.contact-card {
  padding: 30px;
}

.mini-label {
  color: var(--accent-2);
  font-size: .9rem;
  margin-bottom: 10px;
}

.stat-grid,
.card-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.stat-grid div,
.step,
.info-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-grid strong,
.info-card h3,
.step h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 42px;
}

.section-heading h2,
.feature-copy h2,
.contact-card h2,
.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 10px 0 12px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.section-accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
}

.quote {
  font-size: 1.18rem;
}

.quote-author {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-2);
  font-weight: 600;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(141, 187, 255, 0.15);
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.site-footer {
  padding: 24px 0 44px;
  position: relative;
  z-index: 1;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(141, 187, 255, 0.16);
  top: 10%;
  left: -80px;
}

.orb-2 {
  width: 340px;
  height: 340px;
  background: rgba(201, 220, 255, 0.08);
  right: -120px;
  top: 30%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid,
  .two-col,
  .feature-grid,
  .contact-card,
  .three-up,
  .steps-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 56px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .hero-copy h1 { max-width: none; }
  .site-header .button-small { display: none; }
  .hero-card,
  .content-card,
  .quote-card,
  .contact-card,
  .info-card,
  .step { padding: 22px; }
  .stat-grid { grid-template-columns: 1fr; }
  .button, .button-secondary { width: 100%; }
  .hero-actions, .contact-actions { flex-direction: column; }
}
