:root {
  --ink: #070427;
  --ink-2: #110e41;
  --electric: #04f1da;
  --accent: #3d23de;
  --mist: #e9e9f4;
  --lavender: #806fe7;
  --pink: #ce2493;
  --white: #ffffff;
  --surface-1: rgba(255, 255, 255, 0.84);
  --surface-2: rgba(7, 4, 39, 0.05);
  --shadow: rgba(7, 4, 39, 0.2);
  --radius: 24px;
  --radius-sm: 18px;
  --section-pad: clamp(66px, 8.6vw, 92px);
  --header-offset: 88px;
  --font-display: "Ubuntu", sans-serif;
  --font-body: "Ubuntu", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #0b0731 0%, #10083e 40%, #f6f6fb 100%);
  min-height: 100vh;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.13;
  z-index: -1;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.bg-orbit {
  position: fixed;
  inset: -20% 0 0 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(4, 241, 218, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(61, 35, 222, 0.25), transparent 55%),
    radial-gradient(circle at 50% 60%, rgba(206, 36, 147, 0.2), transparent 60%);
  z-index: -2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* Homepage uses scroll-triggered reveals (observer-driven), other pages keep load animation. */
.js-observe .home-main .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
  transition: opacity 0.78s ease, transform 0.78s ease;
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.js-observe .home-main .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(7, 4, 39, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo img {
  height: 36px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 4, 39, 0.6);
  gap: 4px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle-label span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav a:hover::after,
.nav a[aria-current="page"]::after,
.nav a[aria-current="location"]::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"],
.nav a[aria-current="location"],
.nav a.is-active {
  color: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  min-height: 44px;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--electric);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(4, 241, 218, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(4, 241, 218, 0.45);
}

.site-header .btn-primary {
  background: rgba(4, 241, 218, 0.12);
  color: var(--electric);
  border: 1px solid rgba(4, 241, 218, 0.5);
  box-shadow: none;
}

.site-header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
  background: rgba(4, 241, 218, 0.2);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(102px, 12vw, 126px) 0 clamp(64px, 8vw, 84px);
  color: white;
  background:
    linear-gradient(118deg, rgba(6, 4, 30, 0.58) 0%, rgba(8, 6, 46, 0.46) 44%, rgba(10, 8, 52, 0.3) 100%),
    radial-gradient(circle at 14% 16%, rgba(4, 241, 218, 0.16), rgba(4, 241, 218, 0)),
    url("assets/background1.png");
  background-size: cover;
  background-position: center calc(40% + var(--hero-parallax, 0px));
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 26, 0.14) 0%, rgba(5, 3, 26, 0.3) 100%),
    linear-gradient(90deg, rgba(5, 3, 26, 0.28) 0%, rgba(5, 3, 26, 0.04) 60%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.6vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.accent {
  color: var(--electric);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section .pill {
  background: rgba(7, 4, 39, 0.08);
  border: 1px solid rgba(7, 4, 39, 0.2);
  color: var(--ink);
}

.section.dark .pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 30px 60px rgba(7, 4, 39, 0.45);
}

.hero-media {
  margin: 24px 0 0;
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-media img {
  width: 100%;
  display: block;
}

.hero-media figcaption {
  padding: 12px 16px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.trust-wheel {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-wheel svg {
  width: 232px;
  height: 232px;
  filter: saturate(0.92) contrast(0.95);
}

.trust-wheel span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-loop-svg .ring-flow {
  transform-origin: 120px 120px;
  animation: tw-rotate 34s linear infinite;
}

.trust-loop-svg .core-pulse {
  animation: tw-pulse 4.8s ease-in-out infinite;
}

@keyframes tw-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes tw-pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(0.995);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.015);
  }
}

.badge {
  background: rgba(4, 241, 218, 0.16);
  color: var(--electric);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.loop {
  display: grid;
  gap: 14px;
}

.loop-step {
  background: rgba(7, 4, 39, 0.6);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.loop-step h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
}

.loop-step p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.panel-footer {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: var(--section-pad) 0;
  background: var(--white);
  scroll-margin-top: var(--header-offset);
}

.home-main .section.flow {
  position: relative;
  overflow: clip;
}

.home-main #trust.flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -64px;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(7, 4, 39, 1));
}

.home-main #trust {
  background:
    linear-gradient(120deg, rgba(5, 3, 24, 0.2) 0%, rgba(6, 4, 30, 0.14) 48%, rgba(7, 4, 34, 0.08) 100%),
    radial-gradient(circle at 82% 22%, rgba(4, 241, 218, 0.1), rgba(4, 241, 218, 0) 44%),
    url("assets/background2.png");
  background-size: cover;
  background-position: center calc(42% + var(--trust-parallax, 0px));
  background-repeat: no-repeat;
}

.home-main #resources.flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -52px;
  height: 52px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(233, 233, 244, 1));
}

.home-main #trust.flow::after,
.home-main #resources.flow::after {
  content: "";
  position: absolute;
  right: clamp(-140px, -8vw, -72px);
  top: clamp(22px, 3vw, 42px);
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(4, 241, 218, 0.12), rgba(4, 241, 218, 0));
}

.section.dark {
  background: var(--ink);
  color: white;
}

.section.soft {
  background: var(--mist);
}

.section-title {
  margin-bottom: 36px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-title p {
  margin: 0;
  color: rgba(7, 4, 39, 0.78);
  max-width: 64ch;
}

#industries .section-title p {
  max-width: none;
}

#resources .section-title p {
  max-width: none;
}

#capabilities .section-title p {
  max-width: none;
}

#outcomes .section-title p {
  max-width: none;
}

.section.dark .section-title p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.stat-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 20px 40px rgba(7, 4, 39, 0.08);
  backdrop-filter: blur(3px);
}

.section.dark .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

.resources-page .stat-card .btn-primary {
  margin-top: 12px;
  padding-top: 14px;
  padding-bottom: 12px;
}

.list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface-1);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 18px 28px rgba(7, 4, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(2px);
}

.card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  line-height: 1.28;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: rgba(7, 4, 39, 0.76);
}

.industry-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  background: #0b0731;
}

.trust-diagram {
  margin: 0 auto 26px;
  max-width: min(760px, 100%);
}

.trust-diagram img {
  width: 100%;
  aspect-ratio: 1303 / 1080;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at 50% 50%, rgba(24, 17, 97, 0.95), rgba(11, 7, 49, 1) 65%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 32px rgba(0, 0, 0, 0.32);
}

.trust-diagram figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

#trust .card {
  overflow: hidden;
}

.section.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
}

.section.dark .card p {
  color: rgba(255, 255, 255, 0.84);
}

.section.dark .card h3 {
  color: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.impact-card {
  margin: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(7, 4, 39, 0.1);
  box-shadow: 0 16px 28px rgba(7, 4, 39, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.impact-range {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--accent);
}

.impact-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.3;
}

.impact-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(7, 4, 39, 0.76);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.cap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.ui-shot {
  margin: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 18px 30px rgba(7, 4, 39, 0.12);
}

.ui-shot img {
  width: 100%;
  display: block;
}

.ui-shot figcaption {
  padding: 12px 16px 16px;
  font-size: 12px;
  color: rgba(7, 4, 39, 0.6);
}

.cap {
  padding: 18px 20px;
  background: rgba(61, 35, 222, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(61, 35, 222, 0.16);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: 0 10px 18px rgba(7, 4, 39, 0.06);
}

.cap::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.diagram-image {
  margin: 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 20px 40px rgba(7, 4, 39, 0.12);
}

.diagram-image img {
  width: 100%;
  display: block;
}

.diagram-image figcaption {
  padding: 14px 18px 20px;
  font-size: 12px;
  color: rgba(7, 4, 39, 0.6);
}

.quote {
  background: linear-gradient(135deg, rgba(61, 35, 222, 0.12), rgba(4, 241, 218, 0.12));
  text-align: center;
}

.quote .section-title p {
  max-width: 62ch;
  margin: 0 auto;
  color: rgba(7, 4, 39, 0.92);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(7, 4, 39, 0.08);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 16px rgba(7, 4, 39, 0.06);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

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

.quote-card {
  margin: 0;
  padding: 24px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 16px 26px rgba(7, 4, 39, 0.08);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quote-card blockquote {
  font-size: 1rem;
  margin: 0 0 16px;
  line-height: 1.6;
}

.quote-card figcaption {
  font-size: 0.85rem;
  color: rgba(7, 4, 39, 0.6);
}

.role-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: rgba(7, 4, 39, 0.62);
  font-weight: 600;
}

.role-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
}

.role-list {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(7, 4, 39, 0.78);
}

.role-list li {
  margin-bottom: 10px;
}

.role-card .link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 16px;
}

.quote-attrib {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(7, 4, 39, 0.6);
}

.section.dark .quote-attrib {
  color: rgba(255, 255, 255, 0.6);
}

.resource .link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 500;
}

.resource-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 10px 0 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 4, 39, 0.08);
  background: #0b0731;
}

.resource-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--thumb-focus-x, 50%) var(--thumb-focus-y, 50%);
}

#autonomous-secure-access .resource-thumb-wrap {
  background: rgba(7, 4, 39, 0.02);
}

#autonomous-secure-access .resource-thumb {
  object-fit: contain;
  object-position: center;
}

#hyperport-platform .resource-thumb {
  --thumb-focus-y: 44%;
}

#clear-guide-secure-access .resource-thumb {
  --thumb-focus-y: 45%;
}

#unified-secure-access .resource-thumb {
  --thumb-focus-y: 43%;
}

#ncsc-caf-nis2-guide .resource-thumb {
  --thumb-focus-y: 48%;
}

#nerc-cip-guide .resource-thumb {
  --thumb-focus-y: 46%;
}

#nist-800-53-guide .resource-thumb {
  --thumb-focus-y: 38%;
}

#beyond-zero-trust-hype .resource-thumb {
  --thumb-focus-y: 44%;
}

#rapid-innovation-cycles .resource-thumb {
  --thumb-focus-y: 40%;
}

#fusionnode-apac-partnership .resource-thumb {
  --thumb-focus-y: 42%;
}

.resource-card .pill {
  padding: 6px 10px;
  font-size: 11px;
}

.resources-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.resources-header .btn-ghost {
  color: var(--ink);
  border-color: rgba(7, 4, 39, 0.26);
  background: rgba(255, 255, 255, 0.9);
}

.resources-header .btn-ghost:hover {
  background: rgba(7, 4, 39, 0.06);
}

.resource-card .resource-type {
  display: inline-flex;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(7, 4, 39, 0.55);
  margin-bottom: 12px;
}

.resource-card p {
  margin-top: 0;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.resource-actions .link {
  margin-top: 0;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(7, 4, 39, 0.15);
  background: rgba(7, 4, 39, 0.04);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.resources-hero-grid {
  align-items: start;
}

.resource-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 60px rgba(7, 4, 39, 0.45);
  color: white;
}

.resource-hero-card h3 {
  margin-top: 12px;
  font-family: var(--font-display);
}

.resource-hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 44%;
  border-radius: 16px;
  margin: 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.resource-hero-card .resource-type {
  color: rgba(255, 255, 255, 0.7);
}

.resource-hero-media {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px rgba(7, 4, 39, 0.45);
}

.resource-hero-media img {
  width: 100%;
  display: block;
}

.resource-hero-media figcaption {
  padding: 12px 16px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.resource-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: start;
}

.resource-detail .hero-copy .pill-row {
  margin-bottom: 2px;
}

.resource-detail .hero-copy .cta-row {
  margin-top: 16px;
}

.resource-detail .hero-copy .btn-primary,
.resource-downloads .btn-primary {
  padding-top: 14px;
  padding-bottom: 12px;
  line-height: 1.15;
}

.resource-article .hero {
  padding: 78px 0 18px;
}

.resource-article .hero-grid {
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.resource-article .hero-copy h1 {
  font-size: clamp(1.82rem, 2.35vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.resource-article .hero-copy .lead {
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.resource-article .hero-copy .cta-row {
  margin-top: 18px;
  margin-bottom: 10px;
}

.resource-article .hero-copy .pill-row {
  margin-top: 10px;
  gap: 8px;
}

.resource-article .resource-hero-media {
  max-width: 340px;
  justify-self: end;
  box-shadow: 0 16px 28px rgba(7, 4, 39, 0.34);
}

.resource-article .resource-hero-media figcaption {
  display: none;
}

.resource-article .section.soft {
  padding-top: 24px;
  padding-bottom: 72px;
}

.resource-article .resource-layout {
  grid-template-columns: 1fr;
  max-width: 1040px;
  margin: 0 auto;
  gap: 14px;
}

.resource-content {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 18px 30px rgba(7, 4, 39, 0.08);
  font-size: 1.03rem;
  text-wrap: pretty;
}

.resource-content > *:last-child {
  margin-bottom: 0;
}

.resource-content .article-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(7, 4, 39, 0.55);
}

.resource-content .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.resource-content .article-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(7, 4, 39, 0.14);
  background: rgba(7, 4, 39, 0.04);
  font-size: 0.78rem;
  color: rgba(7, 4, 39, 0.76);
}

.resource-content h2,
.resource-content h3 {
  font-family: var(--font-display);
}

.resource-content h2 {
  margin: 34px 0 14px;
  font-size: 1.55rem;
  line-height: 1.25;
}

.resource-content h3 {
  margin: 24px 0 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.resource-content p {
  line-height: 1.78;
  color: rgba(7, 4, 39, 0.85);
  margin: 0 0 16px;
}

.resource-content ul,
.resource-content ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

.resource-content li {
  margin: 0 0 10px;
  line-height: 1.72;
  color: rgba(7, 4, 39, 0.86);
}

.resource-content blockquote {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(4, 241, 218, 0.08);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

.resource-content a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.resource-content hr {
  border: 0;
  border-top: 1px solid rgba(7, 4, 39, 0.12);
  margin: 26px 0;
}

.resource-content .article-note {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(7, 4, 39, 0.1);
  background: rgba(7, 4, 39, 0.03);
  font-size: 0.94rem;
}

.resource-content .references {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 4, 39, 0.12);
}

.resource-content .references li {
  font-size: 0.95rem;
}

.resource-content .list {
  margin-bottom: 16px;
}

.resource-article .resource-content {
  max-width: 1040px;
  margin: 0 auto;
}

.resource-downloads {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 18px 28px rgba(7, 4, 39, 0.08);
}

.resource-downloads h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

.download-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.download-links .btn {
  width: 100%;
}

.resource-downloads .btn-ghost {
  border-color: rgba(7, 4, 39, 0.2);
  color: var(--ink);
}

.resource-article .resource-downloads {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.resource-article .resource-downloads .download-links {
  margin-top: 0;
  justify-self: end;
  min-width: 220px;
}

.resource-section {
  margin-top: 28px;
}

.resource-section h3 {
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.team {
  background: var(--white);
  border-top: 1px solid rgba(7, 4, 39, 0.08);
}

.team-group {
  margin-top: 28px;
}

.team-group h3 {
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.team-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 12px 22px rgba(7, 4, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.team-card h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
}

.team-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(7, 4, 39, 0.6);
}

.contact {
  background:
    linear-gradient(120deg, rgba(5, 3, 24, 0.38) 0%, rgba(7, 4, 39, 0.3) 48%, rgba(7, 4, 39, 0.24) 100%),
    radial-gradient(circle at 84% 18%, rgba(4, 241, 218, 0.16), rgba(4, 241, 218, 0) 42%),
    url("assets/background3.png");
  background-size: cover;
  background-position: center calc(45% + var(--contact-parallax, 0px));
  background-repeat: no-repeat;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-card.is-ready {
  border-color: rgba(4, 241, 218, 0.4);
  box-shadow: 0 0 0 1px rgba(4, 241, 218, 0.14), 0 18px 34px rgba(7, 4, 39, 0.26);
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 4, 39, 0.6);
  color: white;
  font-family: var(--font-body);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-card select:invalid {
  color: rgba(255, 255, 255, 0.5);
}

.contact-card select {
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-card select option {
  background: white;
  color: var(--ink);
}

.contact-card input:focus-visible,
.contact-card textarea:focus-visible,
.contact-card select:focus-visible {
  border-color: rgba(4, 241, 218, 0.75);
  box-shadow: 0 0 0 2px rgba(4, 241, 218, 0.18);
}

.contact-card button {
  width: 100%;
  margin-top: 6px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

.contact-card.is-ready .btn-primary {
  animation: contact-ready-pulse 2.3s ease-in-out infinite;
}

@keyframes contact-ready-pulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(4, 241, 218, 0.38);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 14px 30px rgba(4, 241, 218, 0.5);
    filter: brightness(1.03);
  }
}

.contact-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer {
  background: #05031d;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0;
}

.media {
  background: white;
}

.media-card {
  background: rgba(7, 4, 39, 0.04);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(7, 4, 39, 0.08);
  box-shadow: 0 16px 30px rgba(7, 4, 39, 0.1);
}

.media-card video {
  width: 100%;
  display: block;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.pilot-steps {
  margin-top: 18px;
}

.pilot-steps li + li {
  margin-top: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 12px;
  font-size: 12px;
}

.footer-mark {
  width: 36px;
  margin-bottom: 16px;
}

.footer-tagline {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(4, 241, 218, 0.86);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .team-card:hover,
  .impact-card:hover,
  .quote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px rgba(7, 4, 39, 0.14);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js-observe .home-main .reveal,
  .js-observe .home-main .reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .contact-card.is-ready .btn-primary {
    animation: none;
  }

  .btn,
  .card,
  .team-card,
  .nav-toggle-label span {
    transition: none;
  }

  .trust-loop-svg .ring-flow,
  .trust-loop-svg .core-pulse {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(7, 4, 39, 0.95);
    backdrop-filter: blur(4px);
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cap-layout,
  .resource-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    position: relative;
  }

  .nav-toggle {
    pointer-events: auto;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px 22px;
    background: rgba(7, 4, 39, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(7, 4, 39, 0.4);
    z-index: 20;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .site-header .btn {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-media {
    margin-top: 16px;
  }

  .resources-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .resource-content {
    padding: 28px;
  }

  .home-main #trust.flow::before,
  .home-main #resources.flow::before {
    top: -40px;
    height: 40px;
  }

  .resource-article .hero {
    padding: 72px 0 14px;
  }

  .resource-article .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .resource-article .resource-hero-media {
    max-width: none;
    justify-self: auto;
  }

  .resource-article .section.soft {
    padding-top: 16px;
    padding-bottom: 56px;
  }

  .resource-article .resource-downloads {
    grid-template-columns: 1fr;
  }

  .resource-article .resource-downloads .download-links {
    justify-self: auto;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 78px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .btn {
    width: auto;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn,
  .download-links .btn,
  .contact-card .btn,
  .resources-page .stat-card .btn {
    width: 100%;
  }

  .hero {
    padding-top: 68px;
  }

  h1 {
    font-size: clamp(2rem, 9.4vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .lead {
    margin-bottom: 20px;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .hero-media {
    margin-top: 12px;
  }

  blockquote {
    font-size: 1.2rem;
  }

  .trust-wheel svg {
    width: 198px;
    height: 198px;
  }

  .trust-diagram {
    margin-bottom: 22px;
  }

  .trust-diagram figcaption {
    text-align: left;
  }

  .resource-content {
    padding: 22px;
    font-size: 1rem;
  }

  .resource-content h2 {
    font-size: 1.36rem;
  }

  .resource-content h3 {
    font-size: 1.08rem;
  }
}
