:root {
  --bg: #07110f;
  --bg-2: #0d1918;
  --ink: #edf8f4;
  --muted: #aac0b9;
  --line: rgba(207, 243, 231, .16);
  --accent: #4cf2c9;
  --accent-2: #7fb7ff;
  --warn: #ffd166;
  --danger: #ff6b6b;
  --panel: rgba(10, 27, 28, .82);
  --panel-solid: #10201f;
  --shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}

.site-header.scrolled {
  background: rgba(5, 13, 14, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: #dbeee8;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--accent);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.header-cta {
  color: var(--accent);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn.primary {
  border-color: rgba(76, 242, 201, .5);
  background: var(--accent);
  color: #06201a;
}

.btn.secondary {
  background: rgba(255, 255, 255, .07);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(18px, 5vw, 72px) 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 12, .94) 0%, rgba(5, 12, 12, .74) 42%, rgba(5, 12, 12, .22) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 17, 15, 0) 38%);
}

.hero-content {
  position: relative;
  max-width: 970px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 8vw, 108px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d3e4df;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-metrics span {
  min-height: 94px;
  padding: 18px;
  background: rgba(6, 18, 19, .78);
  color: var(--muted);
  font-size: 13px;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #091513;
}

.trust-strip span {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: #cfe2dc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
}

.section {
  padding: clamp(74px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, .8fr);
  gap: 52px;
  align-items: start;
}

.intro > p,
.section-heading + p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-grid,
.pricing-grid,
.academy-grid,
.course-grid,
.cert-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.plan,
.academy-card,
.course-card,
.cert-card,
.process-card,
.dash-panel,
.financials,
.assessment-tool,
.contact-form,
.tab-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card,
.plan,
.academy-card,
.course-card,
.cert-card,
.process-card {
  padding: 28px;
}

.service-card .icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(76, 242, 201, .45);
  color: var(--accent);
  font-weight: 800;
}

.service-card p,
.plan p,
.academy-card p,
.course-card p,
.cert-card p,
.process-card p,
.dash-panel p,
.tab-panel p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.academy-preview {
  background: #091614;
}

.academy-card span,
.course-card span,
.cert-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.academy-card a,
.course-card a,
.cert-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 152px clamp(18px, 5vw, 72px) 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(5, 12, 12, .94), rgba(8, 29, 31, .84)),
    url("assets/hero-soc.png") center / cover;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 78px);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: #d3e4df;
  font-size: 19px;
}

.page-band {
  background: #0a1514;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.course-meta b {
  padding: 7px 10px;
  border: 1px solid rgba(127, 183, 255, .28);
  color: #dbeafe;
  font-size: 12px;
}

.cert-card.featured {
  border-color: rgba(76, 242, 201, .54);
  background: linear-gradient(180deg, rgba(76, 242, 201, .12), rgba(10, 27, 28, .86));
}

.logo-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: center;
}

.logo-tile {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.logo-tile img {
  width: min(100%, 380px);
}

ul {
  padding-left: 18px;
}

li::marker {
  color: var(--accent);
}

.platform {
  background: #0a1514;
}

.dashboard {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.dash-panel {
  min-height: 210px;
  padding: 24px;
}

.dash-panel.wide {
  grid-row: span 2;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.dash-panel span,
.dash-panel > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dash-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 43px;
  line-height: 1;
}

.signal-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 240px;
  margin: 30px 0 20px;
  padding: 18px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 36px);
}

.signal-chart span {
  flex: 1;
  min-width: 8px;
  background: linear-gradient(180deg, var(--accent), rgba(127, 183, 255, .25));
}

.incident-feed ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.incident-feed li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #d7ebe5;
}

.incident-feed b {
  color: var(--warn);
  margin-right: 8px;
}

.assessment {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr);
  gap: 44px;
  align-items: start;
}

.assessment-tool,
.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: #d8eae5;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(207, 243, 231, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

select option {
  background: #10201f;
  color: var(--ink);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
}

legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.risk-result,
.form-status {
  display: block;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(76, 242, 201, .32);
  background: rgba(76, 242, 201, .08);
  color: #dffcf4;
  font-weight: 800;
}

.compliance {
  background: #0b1719;
}

.tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.tab-list {
  display: grid;
  gap: 10px;
}

.tab-list button {
  min-height: 58px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 0 18px;
  cursor: pointer;
}

.tab-list button.active {
  border-color: rgba(76, 242, 201, .52);
  background: rgba(76, 242, 201, .12);
  color: var(--accent);
}

.tab-panel {
  min-height: 300px;
  padding: 34px;
}

.pricing-grid {
  align-items: stretch;
}

.plan {
  display: grid;
  gap: 18px;
}

.plan strong {
  color: var(--accent);
  font-size: 20px;
}

.plan.featured {
  border-color: rgba(76, 242, 201, .54);
  background: linear-gradient(180deg, rgba(76, 242, 201, .13), rgba(10, 27, 28, .88));
}

.investors {
  background: #081312;
}

.investor-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline div {
  min-height: 245px;
  padding: 22px;
  background: var(--panel-solid);
}

.timeline span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}

.timeline p {
  color: var(--muted);
}

.financials {
  padding: 28px;
}

.financials dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.financials div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.financials dt {
  color: var(--muted);
}

.financials dd {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-quick {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050c0d;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(6, 15, 16, .96);
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .assessment,
  .contact,
  .investor-layout,
  .tabs,
  .two-column,
  .logo-showcase {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .academy-grid,
  .course-grid,
  .cert-grid,
  .process-grid,
  .dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline div {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-metrics,
  .trust-strip,
  .service-grid,
  .pricing-grid,
  .academy-grid,
  .course-grid,
  .cert-grid,
  .process-grid,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .dash-panel.wide {
    grid-row: auto;
  }

  fieldset {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 440px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .site-footer nav {
    display: grid;
  }

  fieldset {
    grid-template-columns: 1fr;
  }
}
