:root {
  --fz-teal: #44c0c5;
  --fz-teal-dark: #359ba0;
  --fz-teal-deeper: #2a7e82;
  --fz-teal-subtle: rgba(68, 192, 197, 0.08);
  --fz-teal-glow: rgba(68, 192, 197, 0.2);
  --fz-cream: #f2efeb;
  --fz-cream-dark: #e8e4de;
  --fz-black: #0a0a0a;
  --fz-dark: #0a1628;
  --fz-dark-mid: #112035;
  --fz-white: #fff;
  --fz-text-primary: #0a0a0a;
  --fz-text-dark: #0a0a0a;
  --fz-text-body: #374151;
  --fz-text-muted: #6b7280;
  --fz-text-light: rgba(255, 255, 255, 0.82);
  --fz-text-lighter: rgba(255, 255, 255, 0.55);
  --fz-border: #e5e0da;
  --fz-border-mid: #d4cfc9;
  --fz-border-dark: rgba(255, 255, 255, 0.1);
  --fz-shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --fz-shadow-md: 0 4px 16px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --fz-shadow-lg: 0 16px 48px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
  --fz-xs: .75rem;
  --fz-sm: .875rem;
  --fz-base: 1rem;
  --fz-lg: 1.125rem;
  --fz-xl: 1.25rem;
  --fz-2xl: 1.5rem;
  --fz-3xl: 1.875rem;
  --fz-4xl: 2.25rem;
  --fz-5xl: 3rem;
  --fz-6xl: 3.75rem;
  --fz-7xl: 4.5rem;
  --fz-bg: #f7f6f4;
  --fz-1: .25rem;
  --fz-2: .5rem;
  --fz-3: .75rem;
  --fz-4: 1rem;
  --fz-5: 1.25rem;
  --fz-6: 1.5rem;
  --fz-7: 1.75rem;
  --fz-8: 2rem;
  --fz-10: 2.5rem;
  --fz-12: 3rem;
  --fz-16: 4rem;
  --fz-20: 5rem;
  --fz-24: 6rem;
  --section-py: 6rem;
  --section-py-sm: 4rem;
  --section-py-xs: 3rem;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 9999px;
  --t-fast: .15s ease;
  --t-base: .25s ease;
  --t-slow: .4s ease;
  --t-expo: cubic-bezier(.22, 1, .36, 1);
  --container: 1200px;
  --container-narrow: 800px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fz-base);
  line-height: 1.7;
  color: var(--fz-text-body);
  background: var(--fz-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast); }
a:hover { color: var(--fz-teal); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
p { max-width: 68ch; margin: 0; }
p + p { margin-top: var(--fz-4); }
strong { font-weight: 600; color: var(--fz-text-primary); }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fz-text-primary);
  letter-spacing: 0;
}
h1 { font-size: clamp(var(--fz-4xl), 5vw, var(--fz-6xl)); font-weight: 700; }
h2 { font-size: clamp(var(--fz-3xl), 3.5vw, var(--fz-5xl)); }
h3 { font-size: clamp(var(--fz-xl), 2.5vw, var(--fz-3xl)); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--fz-6); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--section-py) 0; position: relative; }
.section--white { background: var(--fz-white); }
.section--cream { background: var(--fz-cream); }
.section--dark { background: var(--fz-dark); overflow: hidden; }
.grid-2, .grid-3, .grid-4, .split-grid, .hero-split, .stats-grid, .contact-grid {
  display: grid;
  gap: var(--fz-6);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split-grid { grid-template-columns: 1fr 1fr; gap: var(--fz-16); align-items: center; }
.hero-split { grid-template-columns: 1fr 1fr; gap: var(--fz-16); align-items: center; min-height: calc(100vh - var(--nav-h)); padding: var(--fz-20) 0; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 1fr 1.6fr; gap: var(--fz-12); align-items: start; }
.button-row { display: flex; flex-wrap: wrap; gap: var(--fz-4); margin-top: var(--fz-8); }
.section-action { text-align: center; margin: var(--fz-10) auto 0; }

.fz-icon { flex-shrink: 0; color: currentColor; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--fz-4);
  z-index: 300;
  background: var(--fz-teal);
  color: var(--fz-white);
  padding: var(--fz-3) var(--fz-6);
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--fz-sm);
  font-weight: 600;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--fz-teal); outline-offset: 3px; border-radius: var(--r-sm); }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.header--transparent { background: transparent; border-bottom: 1px solid var(--fz-border-dark); }
.header--solid, .header.menu-open {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--fz-border);
  box-shadow: var(--fz-shadow-sm);
  backdrop-filter: blur(12px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img { height: 44px; width: auto; }
.header__nav { display: flex; align-items: center; gap: var(--fz-1); }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--fz-2);
  font-size: var(--fz-sm);
  font-weight: 500;
  padding: var(--fz-2) var(--fz-3);
  border-radius: var(--r-md);
  letter-spacing: .01em;
}
.header--transparent .nav-link { color: rgba(255,255,255,.88); }
.header--solid .nav-link, .header.menu-open .nav-link { color: var(--fz-text-primary); }
.header--transparent .nav-link:hover { color: var(--fz-white); background: rgba(255,255,255,.1); }
.header--solid .nav-link:hover, .header.menu-open .nav-link:hover { color: var(--fz-teal); background: var(--fz-teal-subtle); }
.nav-link.active, .nav-link--portal { color: var(--fz-teal) !important; }
.header__actions { display: flex; align-items: center; gap: var(--fz-3); }
.header__portal-link {
  display: inline-flex;
  align-items: center;
  gap: var(--fz-2);
  min-height: 36px;
  padding: .45rem .65rem;
  border-radius: var(--r-md);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: .01em;
}
.header--transparent .header__portal-link { color: rgba(255,255,255,.72); }
.header--solid .header__portal-link, .header.menu-open .header__portal-link { color: var(--fz-text-muted); }
.header__portal-link:hover { background: var(--fz-teal-subtle); color: var(--fz-teal); }
.header__toggle {
  display: none;
  padding: var(--fz-2);
  border: 0;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--fz-white);
}
.header--solid .header__toggle, .header.menu-open .header__toggle { color: var(--fz-text-primary); }
.header__toggle-icon--close { display: none; }
.header.menu-open .header__toggle-icon--menu { display: none; }
.header.menu-open .header__toggle-icon--close { display: block; }
.header__mobile-menu {
  display: flex;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--fz-white);
  border-top: 1px solid var(--fz-border);
  padding: var(--fz-4) var(--fz-6);
  box-shadow: var(--fz-shadow-lg);
  flex-direction: column;
  gap: var(--fz-1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s var(--t-expo), transform .25s var(--t-expo), visibility .25s;
}
.header__mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--fz-2);
  font-size: var(--fz-base);
  font-weight: 500;
  padding: var(--fz-3) var(--fz-4);
  border-radius: var(--r-md);
  color: var(--fz-text-primary);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--fz-teal); background: var(--fz-teal-subtle); }
.mobile-nav-link--portal { color: var(--fz-teal); }
.mobile-nav-link--secure { color: var(--fz-text-muted); }
.mobile-menu__cta { margin-top: var(--fz-4); padding-top: var(--fz-4); border-top: 1px solid var(--fz-border); }
.mobile-menu__cta .btn { width: 100%; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fz-2);
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: .75rem 1.75rem;
  font-size: var(--fz-sm);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform var(--t-base) var(--t-expo), background var(--t-base), color var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--fz-teal); color: var(--fz-white); border-color: var(--fz-teal); box-shadow: 0 4px 16px rgba(68,192,197,.28); }
.btn-primary:hover { background: var(--fz-teal-dark); color: var(--fz-white); border-color: var(--fz-teal-dark); box-shadow: 0 8px 24px rgba(68,192,197,.38); }
.btn-outline { background: transparent; color: var(--fz-teal); border-color: var(--fz-teal); }
.btn-outline:hover { background: var(--fz-teal); color: var(--fz-white); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--fz-white); border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: var(--fz-white); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: .9rem 2.25rem; font-size: var(--fz-base); }
.btn-sm { min-height: 36px; padding: .5rem 1.25rem; font-size: var(--fz-xs); }
.btn-full { width: 100%; }

.hero-home, .page-hero {
  background: var(--fz-dark);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--fz-20));
  padding-bottom: var(--fz-20);
}
.hero-home { padding-top: calc(var(--nav-h) + 5rem); padding-bottom: 5rem; }
.page-hero__content { position: relative; z-index: 2; max-width: 760px; }
.page-hero__label, .label {
  display: inline-flex;
  align-items: center;
  gap: var(--fz-2);
  margin: 0 0 var(--fz-4);
  color: var(--fz-teal);
  font-size: var(--fz-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.label::before { content: ""; display: block; width: 20px; height: 2px; background: var(--fz-teal); border-radius: 2px; }
.page-hero__title, .hero-home__title {
  color: var(--fz-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--fz-6);
}
.page-hero__title { font-size: clamp(var(--fz-4xl), 5vw, var(--fz-6xl)); }
.page-hero__desc { color: var(--fz-text-light); font-size: var(--fz-lg); line-height: 1.75; max-width: 54ch; margin-bottom: var(--fz-10); }
.page-hero__actions { display: flex; align-items: center; gap: var(--fz-4); flex-wrap: wrap; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shield__svg {
  width: 100%;
  height: auto;
  overflow: visible;
  opacity: 0;
  transform: scale(.95);
  animation: heroShieldEnter 1s var(--t-expo) .3s forwards;
}
.hero-shield__dot { fill: rgba(68,192,197,.12); animation: heroDotDrift 8s ease-in-out infinite alternate; }
.hero-shield__ring { fill: none; stroke-width: 1; }
.hero-shield__ring--outer { stroke: rgba(68,192,197,.07); --draw-delay: .5s; --draw-duration: 2s; }
.hero-shield__ring--inner { stroke: rgba(68,192,197,.1); --draw-delay: .7s; --draw-duration: 2s; }
.hero-shield__glow { fill: rgba(68,192,197,.06); animation: heroShieldGlow 4.8s ease-in-out infinite alternate; }
.hero-shield__shape--outer {
  stroke: rgba(68,192,197,.35);
  stroke-width: 1.5;
  fill: rgba(68,192,197,.05);
  --draw-delay: .4s;
  --draw-duration: 1.5s;
}
.hero-shield__shape--inner {
  stroke: rgba(68,192,197,.5);
  stroke-width: 1;
  fill: rgba(68,192,197,.07);
  --draw-delay: .6s;
  --draw-duration: 1.5s;
}
.hero-shield__draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: heroPathDraw var(--draw-duration, 1s) ease-in-out var(--draw-delay, .5s) forwards;
}
.hero-shield__lock {
  opacity: 0;
  transform: scale(.7);
  transform-origin: 280px 235px;
  animation: heroLockEnter .6s var(--t-expo) 1.2s forwards;
}
.hero-shield__lock rect,
.hero-shield__lock path,
.hero-shield__lock circle,
.hero-shield__lock line {
  stroke: var(--fz-teal);
  stroke-width: 2;
  fill: rgba(68,192,197,.15);
  stroke-linecap: round;
}
.hero-shield__lock circle { stroke-width: 1.5; fill: rgba(68,192,197,.2); }
.hero-shield__lock line { stroke-width: 1.5; fill: none; }
.hero-shield__lock path { fill: none; }
.hero-shield__network-line {
  stroke: rgba(68,192,197,.15);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  --draw-duration: 1s;
}
.hero-shield__node {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  animation: heroNodeEnter .4s var(--t-expo) var(--node-delay, 1.1s) forwards, heroNodePulse 3.2s ease-in-out calc(var(--node-delay, 1.1s) + .5s) infinite;
}
.hero-shield__node-halo { fill: rgba(68,192,197,.06); }
.hero-shield__node-ring { fill: rgba(68,192,197,.18); stroke: var(--fz-teal); stroke-width: 1; }
.hero-shield__node-core { fill: var(--fz-teal); }
.hero-shield__accent {
  fill: none;
  opacity: 0;
  animation: heroAccentFade .45s ease 1.5s forwards;
}
.hero-shield__accent--one { stroke: rgba(242,239,235,.06); }
.hero-shield__accent--two { stroke: rgba(242,239,235,.05); animation-delay: 1.7s; }

.fz-dot-grid::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -60px;
  right: -60px;
  background-image: radial-gradient(rgba(68,192,197,.1) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  animation: dotGridDrift 14s ease-in-out infinite alternate;
}
.fz-dot-grid--left::before { left: -60px; right: auto; top: auto; bottom: -60px; }
.fz-circle-cluster::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(68,192,197,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 52px rgba(68,192,197,.04), 0 0 0 80px rgba(68,192,197,.035);
  pointer-events: none;
}
.fz-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background: repeating-linear-gradient(115deg, transparent 0 38px, rgba(68,192,197,.8) 39px, transparent 41px);
  pointer-events: none;
}
.section > .container, .hero-home > .container, .page-hero > .container { position: relative; z-index: 2; }

.trust-bar { background: var(--fz-white); border-top: 1px solid var(--fz-border); border-bottom: 1px solid var(--fz-border); padding: var(--fz-6) 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: var(--fz-8); flex-wrap: wrap; }
.trust-bar__item { position: relative; font-size: var(--fz-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--fz-text-muted); }
.trust-bar__item:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: calc(var(--fz-4) * -1); width: 4px; height: 4px; border-radius: 50%; background: var(--fz-border-mid); }

.section-header { margin-bottom: var(--fz-12); }
.section-header .section-desc { max-width: 58ch; }
.section-title { color: var(--fz-text-primary); font-size: clamp(var(--fz-2xl), 3vw, var(--fz-4xl)); margin-bottom: var(--fz-5); }
.section-title--white { color: var(--fz-white); }
.section-desc { color: var(--fz-text-muted); font-size: var(--fz-lg); line-height: 1.75; }
.section-desc--light { color: var(--fz-text-light); }
.section-header--dark .section-desc { color: var(--fz-text-light); }

.service-card, .insight-card, .compact-card, .value-card, .network-card, .credential-panel, .form-panel, .notice-panel {
  border: 1px solid var(--fz-border);
  border-radius: var(--r-xl);
  background: var(--fz-white);
  box-shadow: var(--fz-shadow-sm);
}
.service-card { padding: var(--fz-8); position: relative; overflow: hidden; transition: transform var(--t-base) var(--t-expo), box-shadow var(--t-base), border-color var(--t-base); }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--fz-teal); transition: height var(--t-slow); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--fz-shadow-lg); border-color: var(--fz-teal-glow); }
.service-card:hover::before { height: 100%; }
.service-card__icon, .compact-card__icon, .network-card__icon, .expertise-row__icon, .feature-list__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--fz-teal-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fz-teal);
  margin-bottom: var(--fz-5);
}
.service-card__title { font-size: var(--fz-lg); margin-bottom: var(--fz-3); }
.service-card__desc, .compact-card p, .network-card p, .value-card p { color: var(--fz-text-muted); font-size: var(--fz-sm); line-height: 1.75; max-width: none; }

.stat-block { text-align: center; padding: var(--fz-8); }
.stat-block__number { color: var(--fz-teal); font-size: clamp(var(--fz-4xl), 5vw, var(--fz-7xl)); font-weight: 700; line-height: 1; margin-bottom: var(--fz-3); }
.stat-block__label { color: var(--fz-text-light); font-size: var(--fz-sm); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

.feature-list__item, .check-row, .arrow-row { display: flex; align-items: flex-start; gap: var(--fz-3); border-bottom: 1px solid var(--fz-border); padding: var(--fz-3) 0; }
.feature-list__item { gap: var(--fz-4); padding: var(--fz-4) 0; }
.feature-list__item p, .check-row span, .arrow-row span { margin: 0; font-size: var(--fz-sm); line-height: 1.6; color: var(--fz-text-body); }
.feature-list__icon { width: 36px; height: 36px; margin: 0; flex-shrink: 0; }

.insight-card { overflow: hidden; transition: transform var(--t-base) var(--t-expo), box-shadow var(--t-base); }
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--fz-shadow-lg); }
.insight-card__top { height: 6px; background: var(--fz-teal); }
.insight-card__body { padding: var(--fz-8); }
.insight-card__badge {
  display: inline-flex;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--fz-4);
}
.badge--teal { background: rgba(68,192,197,.12); color: var(--fz-teal-deeper); }
.badge--dark { background: rgba(10,22,40,.08); color: var(--fz-dark); }
.insight-card__title, .insight-row h3 { font-size: var(--fz-lg); margin-bottom: var(--fz-3); line-height: 1.35; }
.insight-card__desc, .insight-row p { color: var(--fz-text-muted); font-size: var(--fz-sm); line-height: 1.75; max-width: none; }
.insight-card__footer { margin-top: var(--fz-6); padding-top: var(--fz-5); border-top: 1px solid var(--fz-border); }
.pill {
  display: inline-flex;
  align-items: center;
  background: rgba(68,192,197,.1);
  color: var(--fz-teal);
  border: 1px solid rgba(68,192,197,.25);
  border-radius: var(--r-full);
  padding: var(--fz-1) var(--fz-4);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}

.credential-panel { padding: var(--fz-8); }
.credential-row { display: flex; align-items: flex-start; gap: var(--fz-4); padding: var(--fz-4) 0; border-bottom: 1px solid var(--fz-border); }
.credential-row > span {
  flex-shrink: 0;
  display: inline-flex;
  border-radius: var(--r-md);
  background: var(--fz-teal);
  color: var(--fz-white);
  padding: var(--fz-1) var(--fz-3);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.8;
}
.credential-row strong { display: block; font-size: var(--fz-sm); line-height: 1.4; }
.credential-row small { display: block; color: var(--fz-text-muted); font-size: var(--fz-xs); }
.credential-panel__frameworks { margin-top: var(--fz-6); }
.check-row .fz-icon, .arrow-row .fz-icon { color: var(--fz-teal); margin-top: 4px; }

.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--fz-6); }
.compact-card { padding: var(--fz-7); background: var(--fz-bg); box-shadow: none; }
.compact-card__icon { width: 44px; height: 44px; margin-bottom: var(--fz-4); border-radius: var(--r-md); }
.compact-card h3 { font-size: var(--fz-base); margin-bottom: var(--fz-2); }
.network-card { padding: var(--fz-6); }
.network-card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.network-card--dark h3 { color: var(--fz-white); font-size: var(--fz-sm); margin-bottom: var(--fz-2); }
.network-card--dark p { color: var(--fz-text-light); }
.network-card--dark .network-card__icon { background: rgba(68,192,197,.12); width: 40px; height: 40px; margin-bottom: var(--fz-4); }
.network-note {
  margin-top: var(--fz-12);
  padding: var(--fz-8);
  border: 1px solid rgba(68,192,197,.2);
  border-radius: var(--r-xl);
  background: rgba(68,192,197,.08);
  text-align: center;
}
.network-note .fz-icon { margin: 0 auto var(--fz-4); color: var(--fz-teal); }
.network-note h3 { color: var(--fz-white); font-size: var(--fz-lg); margin-bottom: var(--fz-2); }
.network-note p { color: var(--fz-text-lighter); margin: 0 auto; max-width: 480px; font-size: var(--fz-sm); }
.value-card { padding: var(--fz-8); text-align: center; }
.value-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--fz-teal-subtle); color: var(--fz-teal); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--fz-5); }
.value-card h3 { font-size: var(--fz-lg); margin-bottom: var(--fz-3); }

.expertise-list, .insight-list { display: flex; flex-direction: column; gap: var(--fz-6); }
.expertise-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fz-10);
  align-items: start;
  border: 1px solid var(--fz-border);
  border-radius: var(--r-xl);
  padding: var(--fz-8);
  background: var(--fz-white);
}
.expertise-row--tinted { background: var(--fz-bg); }
.expertise-row__heading { display: flex; align-items: center; gap: var(--fz-3); margin-bottom: var(--fz-4); }
.expertise-row__icon { width: 44px; height: 44px; margin: 0; border-radius: var(--r-md); flex-shrink: 0; }
.expertise-row h3 { font-size: var(--fz-xl); }
.expertise-row p { margin: 0; color: var(--fz-text-body); line-height: 1.7; }
.mini-heading { color: var(--fz-teal) !important; font-size: var(--fz-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--fz-3) !important; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: var(--fz-3); padding: var(--fz-2) 0; border-bottom: 1px solid var(--fz-border); color: var(--fz-text-body); font-size: var(--fz-sm); }
.check-list .fz-icon { color: var(--fz-teal); margin-top: 3px; }

.insight-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--fz-6);
  align-items: center;
  border: 1px solid var(--fz-border);
  border-radius: var(--r-xl);
  background: var(--fz-bg);
  padding: var(--fz-7);
}
.insight-row__icon { width: 52px; height: 52px; border-radius: var(--r-lg); background: var(--fz-teal-subtle); color: var(--fz-teal); display: flex; align-items: center; justify-content: center; }
.topic-cloud { display: flex; flex-wrap: wrap; gap: var(--fz-3); justify-content: center; }
.topic-cloud span { border: 1px solid var(--fz-border); border-radius: var(--r-full); background: var(--fz-white); padding: var(--fz-2) var(--fz-5); font-size: var(--fz-sm); font-weight: 500; color: var(--fz-text-body); }
.notice-panel { margin: var(--fz-12) auto 0; max-width: 760px; padding: var(--fz-8); text-align: center; }
.notice-panel h3 { font-size: var(--fz-lg); margin-bottom: var(--fz-2); }
.notice-panel p { color: var(--fz-text-body); font-size: var(--fz-sm); margin: 0 auto var(--fz-4); }

.training-session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fz-6);
}
.training-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--fz-border);
  border-radius: var(--r-xl);
  background: var(--fz-white);
  box-shadow: var(--fz-shadow-sm);
  padding: var(--fz-7);
  transition: transform var(--t-base) var(--t-expo), box-shadow var(--t-base), border-color var(--t-base);
}
.training-card:hover {
  transform: translateY(-3px);
  border-color: var(--fz-teal-glow);
  box-shadow: var(--fz-shadow-lg);
}
.training-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fz-3);
  margin-bottom: var(--fz-5);
}
.training-card__mode {
  color: var(--fz-text-muted);
  font-size: var(--fz-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.training-card h3 {
  font-size: var(--fz-xl);
  margin-bottom: var(--fz-3);
}
.training-card p {
  color: var(--fz-text-muted);
  font-size: var(--fz-sm);
  line-height: 1.75;
  max-width: none;
}
.training-card__meta {
  display: grid;
  gap: var(--fz-2);
  margin: var(--fz-6) 0;
  padding-top: var(--fz-5);
  border-top: 1px solid var(--fz-border);
}
.training-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--fz-2);
  color: var(--fz-text-body);
  font-size: var(--fz-sm);
}
.training-card__meta .fz-icon { color: var(--fz-teal); }
.training-card__contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fz-3);
  margin: 0 0 var(--fz-5);
  padding-top: var(--fz-4);
  border-top: 1px solid var(--fz-border);
}
.training-card__contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--fz-1);
  color: var(--fz-text-body);
  font-size: var(--fz-xs);
  font-weight: 500;
}
.training-card__contact .fz-icon { color: var(--fz-teal); }
.training-card__button { margin-top: auto; width: 100%; }
.training-card__button--disabled,
.training-card__button--disabled:hover {
  cursor: not-allowed;
  opacity: .62;
  color: var(--fz-text-muted);
  border-color: var(--fz-border);
  background: rgba(10,22,40,.03);
  box-shadow: none;
  transform: none;
}
.booking-layout {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: var(--fz-12);
  align-items: start;
}
.booking-feature-list { margin-top: var(--fz-8); }
.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.learning-list__item { padding: var(--fz-4) 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.learning-list__item h3 { color: var(--fz-white); font-size: var(--fz-sm); margin-bottom: var(--fz-1); }
.learning-list__item p { color: var(--fz-text-light); font-size: var(--fz-sm); line-height: 1.6; }

.contact-info-list { display: flex; flex-direction: column; gap: var(--fz-4); margin-top: var(--fz-8); }
.contact-info-item { display: flex; align-items: flex-start; gap: var(--fz-4); }
.contact-info-item > span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-md); background: var(--fz-teal-subtle); color: var(--fz-teal); flex-shrink: 0; }
.contact-info-item small { display: block; color: var(--fz-text-muted); font-size: var(--fz-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-info-item strong, .contact-info-item a { color: var(--fz-text-dark); font-size: var(--fz-sm); font-weight: 500; display: inline-flex; gap: var(--fz-1); align-items: center; }
.response-note { margin-top: var(--fz-8); padding: var(--fz-5); border: 1px solid rgba(68,192,197,.2); border-radius: var(--r-lg); background: rgba(68,192,197,.08); font-size: var(--fz-sm); line-height: 1.7; }
.form-panel { padding: var(--fz-8); box-shadow: var(--fz-shadow-md); }
.form-title { font-size: var(--fz-lg); margin-bottom: var(--fz-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fz-4); }
.form-group { margin-bottom: var(--fz-5); }
.form-label { display: block; color: var(--fz-text-primary); font-size: var(--fz-sm); font-weight: 500; margin-bottom: var(--fz-2); }
.form-input {
  width: 100%;
  border: 1.5px solid var(--fz-border);
  border-radius: var(--r-md);
  background: var(--fz-white);
  color: var(--fz-text-primary);
  padding: .75rem 1rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus { border-color: var(--fz-teal); box-shadow: 0 0 0 3px rgba(68,192,197,.15); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-disclaimer { color: var(--fz-text-muted); text-align: center; font-size: var(--fz-xs); line-height: 1.6; margin: var(--fz-4) auto 0; }
.form-disclaimer a { color: var(--fz-teal); }
.form-success { text-align: center; padding: var(--fz-16) var(--fz-8); }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(68,192,197,.1); color: var(--fz-teal); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--fz-6); }
.form-success h3 { font-size: var(--fz-xl); margin-bottom: var(--fz-3); }
.form-success p { margin: 0 auto; font-size: var(--fz-sm); color: var(--fz-text-body); }
.form-error { padding: var(--fz-4); border: 1px solid #f59e0b; border-radius: var(--r-md); background: #fff8e6; color: #78350f; margin-bottom: var(--fz-5); font-size: var(--fz-sm); }

.cta-section { text-align: center; padding: var(--fz-24) 0; }
.cta-section__title { color: var(--fz-white); font-size: clamp(var(--fz-2xl), 3vw, var(--fz-4xl)); font-weight: 700; margin-bottom: var(--fz-5); }
.cta-section__desc { color: var(--fz-text-light); font-size: var(--fz-lg); margin: 0 auto var(--fz-10); max-width: 56ch; }
.cta-section__buttons { display: flex; align-items: center; justify-content: center; gap: var(--fz-4); flex-wrap: wrap; }

.wp-content-shell { max-width: 800px; margin: 0 auto; }
.wp-content-shell > * + * { margin-top: var(--fz-5); }
.wp-content-shell ul, .wp-content-shell ol { padding-left: var(--fz-6); }
.wp-content-shell a { color: var(--fz-teal); text-decoration: underline; }

.footer { background: var(--fz-dark); border-top: 3px solid var(--fz-teal); padding: var(--fz-20) 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--fz-12); padding-bottom: var(--fz-16); border-bottom: 1px solid var(--fz-border-dark); }
.footer__logo { height: 48px; width: auto; margin-bottom: var(--fz-6); }
.footer__tagline { color: var(--fz-text-light); font-size: var(--fz-sm); line-height: 1.8; margin-bottom: var(--fz-6); max-width: 32ch; }
.footer__contact-item { display: flex; align-items: flex-start; gap: var(--fz-3); color: var(--fz-text-light); font-size: var(--fz-sm); margin-bottom: var(--fz-3); }
.footer__contact-item .fz-icon { color: var(--fz-teal); margin-top: 2px; }
.footer__contact-item a { color: inherit; display: inline-flex; align-items: center; gap: var(--fz-1); }
.footer__heading { color: var(--fz-teal); font-size: var(--fz-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 var(--fz-5); }
.footer__links { display: flex; flex-direction: column; gap: var(--fz-3); }
.footer__link { color: rgba(255,255,255,.65); font-size: var(--fz-sm); display: inline-flex; align-items: center; gap: var(--fz-1); }
.footer__link:hover { color: var(--fz-white); }
.footer__link--portal { color: rgba(68,192,197,.85); }
.footer__link--secure { color: rgba(255,255,255,.56); }
.footer__link--secure:hover { color: rgba(68,192,197,.9); }
.footer__frameworks { margin-top: var(--fz-8); }
.footer__frameworks p:not(.footer__heading) { color: var(--fz-text-lighter); font-size: var(--fz-xs); line-height: 1.8; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--fz-4); padding: var(--fz-6) 0; color: var(--fz-text-lighter); font-size: var(--fz-xs); }
.footer__copyright { display: flex; flex-direction: column; gap: var(--fz-1); }
.footer__credit { color: rgba(255,255,255,.38); font-size: var(--fz-xs); width: fit-content; }
.footer__credit:hover { color: rgba(68,192,197,.9); }
.footer__legal { display: flex; gap: var(--fz-4); flex-wrap: wrap; }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .65s var(--t-expo), transform .65s var(--t-expo); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroShieldEnter {
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroPathDraw {
  to { opacity: 1; stroke-dashoffset: 0; }
}
@keyframes heroLockEnter {
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroNodeEnter {
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroNodePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .72; }
}
@keyframes heroShieldGlow {
  from { opacity: .75; transform: scale(.98); transform-origin: 280px 250px; }
  to { opacity: 1; transform: scale(1.03); transform-origin: 280px 250px; }
}
@keyframes heroAccentFade {
  to { opacity: 1; }
}
@keyframes dotGridDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(14px, -10px, 0); }
}
@keyframes heroDotDrift {
  from { opacity: .7; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-split, .split-grid, .expertise-row, .contact-grid, .booking-layout { grid-template-columns: 1fr; }
  .training-session-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--fz-8); }
}

@media (max-width: 768px) {
  :root { --section-py: var(--section-py-sm); }
  .header__nav, .header__cta, .header__portal-link { display: none; }
  .header__toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .training-session-grid { grid-template-columns: 1fr; }
  .hero-split { min-height: auto; padding: var(--fz-12) 0; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .insight-row { grid-template-columns: 1fr; align-items: start; }
  .page-hero__actions, .cta-section__buttons { align-items: stretch; flex-direction: column; }
  .page-hero__actions .btn, .cta-section__buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
  :root { --section-py: var(--section-py-xs); }
  .container { padding: 0 var(--fz-4); }
  .grid-4, .stats-grid, .footer__grid { grid-template-columns: 1fr; }
  .page-hero, .hero-home { padding-top: calc(var(--nav-h) + var(--fz-12)); padding-bottom: var(--fz-12); }
  .page-hero__title, .hero-home__title { font-size: var(--fz-4xl); }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-shield__svg, .hero-shield__draw, .hero-shield__lock, .hero-shield__node, .hero-shield__accent { opacity: 1; transform: none; stroke-dashoffset: 0; }
}
