:root {
  --bg: #05070d;
  --panel: #0d1320;
  --panel-2: #111827;
  --text: #eef6f1;
  --muted: #a9b8b0;
  --line: rgba(255,255,255,.12);
  --green: #35e69b;
  --green-dark: #18a86d;
  --blue: #5ac8fa;
  --cream: #f8faf7;
  --ink: #07110d;
  --shadow: 0 24px 80px rgba(0,0,0,.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(5,7,13,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand img { height: 34px; width: auto; display: block; }
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
}
.site-header nav a:hover { color: var(--green); }

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) 0;
}
.vertical-hero, .hub-hero {
  min-height: 540px;
  display: grid;
  align-content: center;
  position: relative;
}
.vertical-hero::before, .hub-hero::before, .home-redirect::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(53,230,155,.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(90,200,250,.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 42%);
}
.vertical-hero > *, .hub-hero > * { position: relative; max-width: 880px; }
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(44px, 8vw, 88px); max-width: 980px; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 22px; }
.hero-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 850px;
  margin-top: 24px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.button.primary { background: var(--green); color: var(--ink); border-color: transparent; box-shadow: 0 18px 44px rgba(53,230,155,.22); }
.button.secondary { color: var(--text); background: rgba(255,255,255,.05); }
.button:hover { transform: translateY(-1px); }

.answer-box {
  background: linear-gradient(135deg, rgba(53,230,155,.11), rgba(90,200,250,.06));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(32px, 5vw, 58px);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.answer-box p:last-child { color: var(--muted); margin-top: 18px; font-size: 18px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.feature-card, .industry-card, .faq-card, .group-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature-card.light { background: #f7faf8; color: var(--ink); }
.feature-card p:not(.tag) { color: var(--muted); margin-top: 18px; font-size: 17px; }
.feature-card.light p:not(.tag), .feature-card.light .check-list { color: #304139; }
.tag {
  display: inline-flex;
  color: var(--green);
  border: 1px solid rgba(53,230,155,.28);
  background: rgba(53,230,155,.08);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}
.three-col-list {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pill-list, .check-list { margin: 0; padding: 0; list-style: none; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
}
.check-list { display: grid; gap: 12px; color: var(--muted); }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 900; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.steps article {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 18px;
}
.steps h3 { font-size: 18px; margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 14px; }
.faq-grid, .industry-grid, .group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.industry-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.industry-card p:not(.tag), .faq-card p, .group-card, .site-footer { color: var(--muted); }
.industry-card h3 { margin-bottom: 12px; }
.industry-card h3 a:hover, .text-link:hover, .group-card a:hover { color: var(--green); }
.text-link { display: inline-block; margin-top: 16px; color: var(--green); font-weight: 800; }
.faq-card h3 { margin-bottom: 12px; }
.compliance-note {
  background: #f7faf8;
  color: var(--ink);
  border-radius: 32px;
  padding: clamp(30px, 4vw, 50px);
}
.compliance-note p { color: #304139; margin-top: 14px; }
.related-section, .alt-section, .group-section { border-top: 1px solid var(--line); }
.group-card ul { margin: 18px 0 0; padding-left: 18px; }
.group-card li { margin: 7px 0; }
.cta-band {
  width: min(1160px, calc(100% - 40px));
  margin: 48px auto 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(53,230,155,.18), rgba(90,200,250,.12));
  border: 1px solid var(--line);
}
.cta-band p:last-child { color: var(--muted); margin-top: 10px; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.site-footer a { color: var(--green); }
.footer-summary {
  max-width: 420px;
}
.footer-brand {
  display: inline-block;
  font-weight: 900;
  margin-bottom: 8px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  max-width: 560px;
}
.split-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.split-intro > p { color: var(--muted); font-size: 18px; }
.home-redirect { min-height: 100vh; display: grid; place-items: center; padding: 24px; position: relative; }
.home-card { position: relative; width: min(760px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: 34px; padding: clamp(32px, 6vw, 72px); box-shadow: var(--shadow); }
.home-card p:not(.eyebrow) { color: var(--muted); margin: 18px 0 28px; font-size: 18px; }
@media (max-width: 980px) {
  .two-col, .three-col-list, .split-intro { grid-template-columns: 1fr; }
  .steps, .faq-grid, .industry-grid, .industry-grid.compact, .group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-header { position: static; align-items: flex-start; }
  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .site-header nav a { white-space: nowrap; }
  .steps, .faq-grid, .industry-grid, .industry-grid.compact, .group-grid { grid-template-columns: 1fr; }
  .cta-band, .site-footer { flex-direction: column; align-items: flex-start; }
  .site-footer nav { justify-content: flex-start; }
}
