:root {
  --bg: #07101f;
  --bg-2: #0a1729;
  --surface: rgba(13, 27, 48, .78);
  --surface-2: rgba(255, 255, 255, .06);
  --line: rgba(255, 255, 255, .12);
  --text: #eef5ff;
  --muted: #9db0c9;
  --muted-2: #6f8199;
  --red: #c81731;
  --red-hot: #ff3156;
  --blue: #35bdf8;
  --cyan: #35f4d4;
  --amber: #ffd166;
  --green: #2df5a3;
  --card-radius: 28px;
  --radius: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .32);
  --max: 1180px;
  font-synthesis-weight: none;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(200, 23, 49, .32), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(53, 189, 248, .24), transparent 30rem),
    radial-gradient(circle at 50% 92%, rgba(53, 244, 212, .18), transparent 28rem),
    linear-gradient(145deg, #050a13 0%, #07101f 42%, #0c1528 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, .06), transparent 28%, rgba(255, 255, 255, .03) 64%, transparent);
  mix-blend-mode: screen;
  opacity: .55;
}

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

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

p {
  margin: 0;
  color: var(--muted)
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.04em
}

h1 {
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  max-width: 10ch
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem)
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -.02em
}

ul {
  padding: 0;
  margin: 0;
  list-style: none
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 20px;
  background: var(--red);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 999
}

.skip-link:focus {
  top: 16px
}

.page-glow {
  position: fixed;
  inset: auto -20% 0 -20%;
  height: 38vh;
  background: radial-gradient(circle, rgba(200, 23, 49, .18), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(7, 16, 31, .72);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28)
}

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

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 54px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .96);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 31, .08);
  overflow: hidden
}

.brand-logo-wrap img {
  width: auto;
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  display: block
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link {
  position: relative;
  padding: 12px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 700;
  transition: .25s ease
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.nav-cta {
  padding: 12px 18px;
  margin-left: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-hot));
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(200, 23, 49, .28);
  transition: .25s ease
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(200, 23, 49, .38)
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  padding: 12px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 4px;
  transition: .25s ease
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 92px);
  padding: 78px 0 58px
}

.sub-hero {
  min-height: 540px
}

.hero-copy {
  display: grid;
  gap: 24px
}

.hero-copy.narrow h1 {
  max-width: 11ch
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #cad8ec
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #dce9ff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ping {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(45, 245, 163, .12)
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 210px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: .25s ease;
  cursor: pointer
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-hot));
  box-shadow: 0 18px 45px rgba(200, 23, 49, .32)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(200, 23, 49, .45)
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .06);
  color: #fff
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px)
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 720px
}

.metric-strip div {
  padding: 17px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px)
}

.metric-strip strong {
  display: block;
  font-size: 1.35rem;
  color: #fff
}

.metric-strip span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .85rem
}

.terminal-card,
.glass-card,
.scoreboard-card,
.heatmap-card,
.dashboard-card,
.readiness-card,
.training-device,
.mission-card,
.contact-promise,
.office-card {
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(145deg, rgba(13, 27, 48, .82), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  border-radius: var(--card-radius)
}

.terminal-card {
  overflow: hidden;
  position: relative
}

.terminal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(53, 189, 248, .24), transparent 42%, rgba(200, 23, 49, .28));
  pointer-events: none
}

.terminal-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .24)
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-hot)
}

.terminal-top span:nth-child(2) {
  background: var(--amber)
}

.terminal-top span:nth-child(3) {
  background: var(--green)
}

.terminal-top p {
  margin-left: auto;
  color: #d8e8ff;
  font-size: .85rem;
  font-weight: 800
}

.terminal-body {
  position: relative;
  padding: 26px;
  font-family: "SFMono-Regular", Consolas, monospace
}

.terminal-body p {
  color: #bcd1ea;
  margin-bottom: 13px
}

.terminal-body p span {
  color: var(--green)
}

.success {
  color: var(--green) !important
}

.alert {
  color: var(--red-hot) !important
}

.scan-lines {
  display: grid;
  gap: 10px;
  margin: 20px 0
}

.scan-lines b {
  display: block;
  width: var(--w);
  height: 10px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 999px;
  animation: scan 2.6s ease-in-out infinite
}

.scan-lines b:nth-child(2) {
  animation-delay: .2s
}

.scan-lines b:nth-child(3) {
  animation-delay: .4s
}

@keyframes scan {
  50% {
    opacity: .5;
    transform: translateX(12px)
  }
}

.range-score {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12)
}

.range-score span {
  color: var(--muted);
  font-weight: 800
}

.range-score strong {
  font-size: 3rem;
  line-height: 1;
  color: #fff
}

.logo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 8px;
  margin-bottom: 90px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .045)
}

.logo-band p {
  font-weight: 900;
  color: #dfefff
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.partner-logos img {
  width: 72px;
  height: 46px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  filter: saturate(.9)
}

.split-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: start;
  padding: 70px 0
}

.section-heading {
  display: grid;
  gap: 15px;
  margin-bottom: 36px
}

.section-heading.center {
  text-align: center;
  justify-items: center
}

.section-heading p,
.section-intro {
  max-width: 760px;
  font-size: 1.05rem
}

.serve-grid,
.why-grid,
.pillar-grid,
.delivery-grid,
.sector-grid,
.approach-grid,
.track-grid,
.cert-grid,
.values-grid,
.office-grid,
.framework-grid {
  display: grid;
  gap: 18px
}

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

.feature-card {
  position: relative;
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  overflow: hidden
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% 20%;
  height: 180px;
  background: radial-gradient(circle, rgba(53, 189, 248, .2), transparent 60%);
  filter: blur(14px)
}

.feature-card.popular {
  border-color: rgba(255, 49, 86, .35);
  box-shadow: 0 30px 80px rgba(200, 23, 49, .16)
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 49, 86, .16);
  color: #ffd9e0;
  font-size: .73rem;
  font-weight: 900
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900
}

.feature-card p {
  flex: 1
}

.feature-card a,
.text-link,
.sector-grid a,
.office-card a {
  color: #fff;
  font-weight: 900
}

.feature-card a::after,
.text-link::after,
.sector-grid a::after {
  content: " →";
  color: var(--red-hot)
}

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

.why-grid article,
.delivery-grid article,
.approach-grid article,
.cert-grid article,
.values-grid article,
.framework-grid article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  transition: .25s ease;
  overflow: hidden
}

.why-grid article:hover,
.delivery-grid article:hover,
.approach-grid article:hover,
.cert-grid article:hover,
.values-grid article:hover,
.framework-grid article:hover,
.sector-grid article:hover,
.track-card:hover,
.office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 189, 248, .35)
}

.why-grid strong,
.approach-grid strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(53, 189, 248, .2), rgba(255, 49, 86, .18));
  color: #fff
}

.why-grid h3,
.delivery-grid h3,
.approach-grid h3,
.cert-grid h3,
.values-grid h3,
.framework-grid h3 {
  margin-bottom: 10px
}

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

.pillar-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(160deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  overflow: hidden
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), transparent)
}

.pillar-card.accent-red::before {
  background: linear-gradient(90deg, var(--red-hot), transparent)
}

.pillar-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em
}

.pillar-card p {
  margin: 15px 0
}

.pillar-card li {
  padding: 9px 0;
  color: #dce9ff;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.pillar-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px
}

.pillar-card a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 900;
  color: #fff
}

.tabs {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .045);
  padding: 14px
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px
}

.tab-buttons button {
  border: 0;
  border-radius: 18px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: .25s
}

.tab-buttons button.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(200, 23, 49, .82), rgba(53, 189, 248, .22))
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr .9fr;
  gap: 26px;
  padding: 28px
}

.tab-panel.active {
  display: grid
}

.tab-panel h3 {
  font-size: 2rem
}

.tab-panel p {
  margin: 12px 0 18px
}

.tab-panel li {
  color: #dce9ff;
  margin: 9px 0
}

.tab-panel li::before {
  content: "▹";
  color: var(--red-hot);
  margin-right: 8px
}

.mini-console {
  padding: 22px;
  border-radius: 22px;
  background: #03070e;
  border: 1px solid rgba(53, 189, 248, .24);
  font-family: "SFMono-Regular", Consolas, monospace
}

.mini-console p {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #bfe8ff
}

.ctf-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 90px 0
}

.ctf-copy {
  display: grid;
  gap: 20px
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.mini-feature-grid span {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  font-weight: 800;
  color: #e9f3ff
}

.scoreboard-card {
  padding: 22px
}

.score-top,
.challenge,
.rank-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.score-top {
  margin-bottom: 14px
}

.score-top span {
  color: var(--red-hot);
  font-weight: 900
}

.score-top strong {
  font-size: 1.35rem
}

.challenge {
  padding: 16px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045)
}

.challenge span {
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 900;
  color: #dce9ff
}

.challenge b {
  color: #fff
}

.challenge em {
  font-style: normal;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900
}

.challenge.solved em {
  color: var(--green)
}

.challenge.active {
  border-color: rgba(255, 49, 86, .42)
}

.challenge.active em {
  color: var(--amber)
}

.rank-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 23, 49, .28), rgba(53, 189, 248, .14))
}

.rank-card strong {
  font-size: 1.5rem
}

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

.delivery-grid article span,
.values-grid article span,
.sector-grid article span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 84px auto;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, rgba(200, 23, 49, .22), rgba(53, 189, 248, .11), rgba(255, 255, 255, .05));
  box-shadow: var(--shadow)
}

.cta-section p {
  max-width: 690px;
  margin-top: 12px
}

.site-footer {
  margin-top: 60px;
  padding: 60px 0 26px;
  background: rgba(2, 6, 13, .62);
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 34px
}

.footer-brand img {
  width: 220px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 18px
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 1rem
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin: 9px 0
}

.site-footer a:hover {
  color: #fff
}

.social-proof-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px
}

.social-proof-mini span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #dce9ff;
  font-size: .78rem;
  font-weight: 800
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  font-size: .9rem
}

.orb-stack {
  position: relative;
  min-height: 360px
}

.orb-stack span {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  background: linear-gradient(135deg, rgba(255, 49, 86, .75), rgba(53, 189, 248, .45));
  box-shadow: 0 35px 120px rgba(53, 189, 248, .25)
}

.orb-stack span:nth-child(1) {
  width: 260px;
  height: 260px;
  right: 120px;
  top: 20px
}

.orb-stack span:nth-child(2) {
  width: 190px;
  height: 190px;
  right: 10px;
  top: 150px;
  background: linear-gradient(135deg, rgba(53, 244, 212, .65), rgba(255, 255, 255, .08))
}

.orb-stack span:nth-child(3) {
  width: 110px;
  height: 110px;
  right: 320px;
  top: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 49, 86, .55))
}

.solution-block {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 44px;
  align-items: center;
  padding: 80px 0
}

.solution-block.reverse {
  direction: rtl
}

.solution-block.reverse>* {
  direction: ltr
}

.solution-copy {
  display: grid;
  gap: 18px
}

.icon-list {
  display: grid;
  gap: 12px;
  margin: 10px 0
}

.icon-list article {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045)
}

.icon-list b {
  font-size: 1.3rem
}

.card-header-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px
}

.card-header-line span {
  text-transform: uppercase;
  color: var(--red-hot);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em
}

.heatmap-card,
.dashboard-card,
.readiness-card {
  padding: 26px
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.heatmap span {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
  color: #fff
}

.heatmap .hot {
  background: rgba(45, 245, 163, .15);
  border: 1px solid rgba(45, 245, 163, .24)
}

.heatmap .mid {
  background: rgba(255, 209, 102, .14);
  border: 1px solid rgba(255, 209, 102, .22)
}

.heatmap .gap {
  background: rgba(255, 49, 86, .14);
  border: 1px solid rgba(255, 49, 86, .25)
}

.legend {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800
}

.legend span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 7px
}

.hot-dot::before {
  background: var(--green)
}

.mid-dot::before {
  background: var(--amber)
}

.gap-dot::before {
  background: var(--red-hot)
}

.progress-row {
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #e9f3ff;
  font-weight: 800
}

.progress-row b {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-hot), var(--blue));
  position: relative;
  overflow: hidden
}

.progress-row b::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--p);
  background: rgba(255, 255, 255, .38);
  border-radius: 999px
}

.progress-row em {
  font-style: normal;
  color: var(--muted)
}

.big-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .07)
}

.big-score strong {
  font-size: 2.2rem
}

.circle-score {
  width: 210px;
  height: 210px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 14px solid rgba(53, 189, 248, .22);
  background: radial-gradient(circle, rgba(255, 49, 86, .2), rgba(255, 255, 255, .04));
  text-align: center
}

.circle-score strong {
  display: block;
  font-size: 4rem;
  line-height: 1
}

.circle-score span {
  display: block;
  color: var(--muted);
  font-weight: 900
}

.readiness-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.readiness-stats span {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  font-weight: 800
}

.readiness-stats b {
  display: block;
  color: #fff;
  font-size: 1.6rem
}

.event-feed {
  margin-top: 18px
}

.event-feed p {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.sector-grid {
  grid-template-columns: repeat(4, 1fr)
}

.sector-grid article {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  transition: .25s
}

.sector-grid li {
  padding: 8px 0;
  color: #d7e5f8
}

.sector-grid li::before {
  content: "✓";
  color: var(--green);
  margin-right: 7px
}

.sector-grid a {
  display: inline-block;
  margin-top: 18px
}

.training-device {
  padding: 18px;
  position: relative
}

.device-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 20px
}

.device-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-hot)
}

.device-bar span:nth-child(2) {
  background: var(--amber)
}

.device-bar span:nth-child(3) {
  background: var(--green)
}

.device-content {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(53, 189, 248, .13), rgba(255, 49, 86, .13))
}

.device-content p {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cyan);
  font-size: .78rem
}

.device-content h3 {
  font-size: 2.8rem;
  margin: 14px 0
}

.xp-bar {
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
  margin: 22px 0
}

.xp-bar b {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-hot), var(--cyan))
}

.approach-grid {
  grid-template-columns: repeat(4, 1fr)
}

.track-grid {
  grid-template-columns: repeat(2, 1fr)
}

.track-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .052);
  transition: .25s
}

.track-card.featured {
  background: linear-gradient(145deg, rgba(200, 23, 49, .18), rgba(255, 255, 255, .05));
  border-color: rgba(255, 49, 86, .36)
}

.track-card>span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900;
  font-size: .82rem
}

.track-card h3 {
  font-size: 1.65rem;
  margin-bottom: 16px
}

.track-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #dce9ff
}

.track-card li::before {
  content: "▹";
  color: var(--red-hot);
  margin-right: 8px
}

.track-card div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px
}

.track-card b,
.cert-grid span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .8rem
}

.lab-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.lab-cloud span {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
  color: #dce9ff;
  transition: .25s
}

.lab-cloud span:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 189, 248, .42);
  color: #fff
}

.cert-grid {
  grid-template-columns: repeat(4, 1fr)
}

.cert-grid article {
  min-height: 220px
}

.mission-card {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 36px
}

.mission-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  border-radius: 34px;
  background: #fff;
  padding: 10px;
  margin-bottom: 24px
}

.mission-card p {
  font-size: 1.2rem;
  color: #dce9ff;
  font-weight: 800
}

.mission-copy {
  padding: 30px
}

.mission-copy p+p {
  margin-top: 16px
}

.mission-copy blockquote {
  margin: 24px 0;
  padding: 20px;
  border-left: 4px solid var(--red-hot);
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem
}

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

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

.office-grid article,
.office-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .052);
  transition: .25s
}

.office-grid article>span,
.office-card>span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900
}

.office-grid address {
  font-style: normal;
  color: #dce9ff;
  margin: 12px 0
}

.office-grid small {
  display: block;
  color: var(--muted);
  margin-top: 14px
}

.framework-grid {
  grid-template-columns: repeat(4, 1fr)
}

.contact-promise {
  padding: 30px
}

.contact-promise h3 {
  font-size: 2rem;
  margin-bottom: 18px
}

.contact-promise li {
  padding: 11px 0;
  color: #dce9ff
}

.contact-promise li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 28px;
  align-items: start
}

.contact-form {
  padding: 30px
}

.contact-form h2 {
  font-size: 2.4rem;
  margin: 12px 0 20px
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #dce9ff;
  font-weight: 900
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(1, 6, 14, .5);
  color: #fff;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: .2s
}

textarea {
  resize: vertical
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(53, 189, 248, .55);
  box-shadow: 0 0 0 4px rgba(53, 189, 248, .1)
}

select option {
  background: #07101f
}

.form-note {
  margin-top: 12px;
  font-size: .9rem
}

.form-note.success {
  color: var(--green)
}

.form-note.error {
  color: var(--red-hot)
}

.contact-side {
  display: grid;
  gap: 16px
}

.office-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px
}

.office-card p {
  margin: 10px 0 16px
}

.copy-btn {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer
}

.copy-btn:hover {
  background: rgba(255, 255, 255, .14)
}

.office-card.partnership {
  background: linear-gradient(135deg, rgba(200, 23, 49, .18), rgba(53, 189, 248, .11))
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media (max-width:980px) {
  h1 {
    font-size: clamp(3rem, 12vw, 5.4rem)
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    border-radius: 28px
  }

  .brand-logo-wrap {
    width: 196px;
    height: 48px
  }

  .brand-logo-wrap img {
    height: 36px
  }

  .menu-toggle {
    display: block
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(7, 16, 31, .96);
    box-shadow: var(--shadow)
  }

  .site-nav.open {
    display: flex
  }

  .nav-link,
  .nav-cta {
    text-align: center;
    margin-left: 0
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .hero,
  .solution-block,
  .solution-block.reverse,
  .split-section,
  .ctf-section,
  .contact-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0;
    direction: ltr
  }

  .hero-visual {
    max-width: 620px
  }

  .logo-band,
  .cta-section,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .serve-grid,
  .why-grid,
  .pillar-grid,
  .delivery-grid,
  .sector-grid,
  .approach-grid,
  .cert-grid,
  .values-grid,
  .office-grid,
  .framework-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tab-panel {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .orb-stack {
    display: none
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .section-shell {
    width: min(100% - 24px, var(--max))
  }

  .site-header {
    padding: 8px
  }

  .brand-logo-wrap {
    width: 168px;
    height: 44px;
    padding: 4px 10px
  }

  .brand-logo-wrap img {
    height: 32px
  }

  .hero {
    gap: 28px
  }

  .metric-strip,
  .form-grid,
  .heatmap,
  .readiness-stats,
  .track-grid,
  .serve-grid,
  .why-grid,
  .pillar-grid,
  .delivery-grid,
  .sector-grid,
  .approach-grid,
  .cert-grid,
  .values-grid,
  .office-grid,
  .framework-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .tab-buttons {
    grid-template-columns: 1fr
  }

  .tab-panel {
    padding: 16px
  }

  .terminal-card,
  .training-device {
    transform: none
  }

  .logo-band {
    margin-bottom: 48px
  }

  .ctf-section {
    padding: 54px 0
  }

  .footer-bottom {
    align-items: flex-start
  }

  .hero-actions,
  .cta-actions {
    width: 100%
  }

  .btn {
    width: 100%
  }

  .partner-logos img {
    width: 64px
  }

  .mini-feature-grid {
    grid-template-columns: 1fr
  }

  .progress-row {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .progress-row em {
    justify-self: start
  }

  .circle-score {
    width: 160px;
    height: 160px;
    border-width: 10px
  }

  .circle-score strong {
    font-size: 3rem
  }

  .contact-form,
  .contact-promise {
    padding: 22px
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

#tracks,
#library,
#certifications,
#offices,
#frameworks,
#core-capabilities,
#team-solutions {
  margin-top: 60px;
}