@charset "UTF-8";
/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
:root {
  --navy-deep: #020b14;
  --navy: #061525;
  --navy-mid: #0a1c2e;
  --navy-elevated: #102840;
  --navy-soft: #16324c;
  --ink: #e8eef4;
  --muted: #8fa0b0;
  --line: rgba(232, 238, 244, 0.1);
  --glass: rgba(6, 21, 37, 0.72);
  --surface: #0a1c2e;
  --surface-soft: #102840;
  --radius: 1.25rem;
  --font-display: "Noto Sans", system-ui, sans-serif;
  --font-body: "Noto Sans", system-ui, sans-serif;
  /* Session accent (blue | green) — set via [data-theme] */
  --brand-rgb: 19, 179, 227;
  --brand-600-rgb: 14, 143, 181;
  --brand-on: #fff;
  --brand: rgb(var(--brand-rgb));
  --brand-600: rgb(var(--brand-600-rgb));
  --brand-blue: var(--brand);
  --brand-green: var(--brand);
}

html[data-theme=blue] {
  --brand-rgb: 19, 179, 227;
  --brand-600-rgb: 14, 143, 181;
  --brand-on: #fff;
}

html[data-theme=green] {
  --brand-rgb: 151, 193, 60;
  --brand-600-rgb: 121, 154, 48;
  --brand-on: #061525;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.gradient-text {
  color: var(--brand);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

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

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

.container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-on);
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 10px 30px rgba(var(--brand-rgb), 0.35);
}
.btn-primary:hover {
  background: var(--brand-600);
  color: var(--brand-on);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.btn-glass-light {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.35), inset 0 -2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-glass-light::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent 30%);
  animation: glassRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-glass-light:hover::before {
  opacity: 1;
}
.btn-glass-light::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}
.btn-glass-light:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 2px 6px rgba(255, 255, 255, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.08), 0 0 30px rgba(255, 255, 255, 0.15);
  transform: translateY(-3px) scale(1.02);
}

@keyframes glassRotate {
  100% {
    transform: rotate(360deg);
  }
}
/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
#site-header.hero-mode {
  background: transparent;
  border-bottom: 1px solid transparent;
}
#site-header.hero-mode .logo-dark {
  display: none;
}
#site-header.hero-mode .logo-light {
  display: block;
}
#site-header.hero-mode .nav-link {
  color: rgba(255, 255, 255, 0.88);
}
#site-header.hero-mode .header-cta {
  background: var(--brand);
  color: var(--brand-on);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.35);
}
#site-header.hero-mode .mobile-toggle {
  color: #fff;
}
#site-header {
  /* Product heroes: keep the bar solid so copy and diagrams never show through. */
}
.egen-page #site-header.hero-mode {
  background: rgba(6, 21, 37, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(2, 11, 20, 0.35);
}
#site-header.section-mode {
  background: rgba(6, 21, 37, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(2, 11, 20, 0.35);
}
#site-header.section-mode .logo-dark {
  display: none;
}
#site-header.section-mode .logo-light {
  display: block;
}
#site-header.section-mode .nav-link {
  color: rgba(232, 238, 244, 0.88);
}
#site-header.section-mode .header-cta {
  background: var(--brand);
  color: var(--brand-on);
}
#site-header.menu-open, #site-header.hero-mode.menu-open {
  background: rgba(6, 21, 37, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

#site-header.section-mode .mobile-toggle,
#site-header.menu-open .mobile-toggle {
  color: rgba(232, 238, 244, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo-wrap img {
  height: 2.5rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}
@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-link:hover {
  opacity: 0.7;
}
.nav-link[aria-current=page] {
  color: var(--brand);
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  border-radius: 0.65rem;
}
@media (min-width: 960px) {
  .mobile-toggle {
    display: none;
  }
}

body.nav-locked {
  overflow: hidden;
}

.mobile-toggle-bars,
.mobile-toggle-bars::before,
.mobile-toggle-bars::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.mobile-toggle-bars {
  position: relative;
}
.mobile-toggle-bars::before, .mobile-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.mobile-toggle-bars::before {
  top: -6px;
}
.mobile-toggle-bars::after {
  top: 6px;
}

#site-header.menu-open .mobile-toggle-bars {
  background: transparent;
}
#site-header.menu-open .mobile-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
#site-header.menu-open .mobile-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

#mobile-menu {
  display: none;
  padding: 0 0 1rem;
}
#mobile-menu.open {
  display: block;
}
@media (min-width: 960px) {
  #mobile-menu {
    display: none !important;
  }
}

.mobile-nav-panel {
  margin-top: 0.15rem;
  max-height: min(74vh, calc(100dvh - 5.5rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(10, 28, 46, 0.97);
  border: 1px solid rgba(232, 238, 244, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(2, 11, 20, 0.5);
  animation: mobileNavIn 0.28s ease;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-nav-link,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(232, 238, 244, 0.08);
  text-align: left;
  cursor: pointer;
}
.mobile-nav-link:hover,
.mobile-nav-toggle:hover {
  color: #fff;
  background: rgba(var(--brand-rgb), 0.08);
}

.mobile-nav-link[aria-current=page] {
  color: var(--brand);
}

.mobile-nav-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.mobile-nav-item.is-open .mobile-nav-chevron {
  transform: rotate(180deg);
  color: var(--brand);
}
.mobile-nav-item.is-open .mobile-nav-toggle {
  color: #fff;
}
.mobile-nav-item.is-open .mobile-nav-sub {
  display: block;
}

.mobile-nav-sub {
  display: none;
  padding: 0.2rem 0.75rem 0.75rem 1.15rem;
  background: rgba(2, 11, 20, 0.35);
  border-bottom: 1px solid rgba(232, 238, 244, 0.08);
}
.mobile-nav-sub a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0.65rem;
}
.mobile-nav-sub a:hover {
  color: #fff;
  background: rgba(var(--brand-rgb), 0.1);
}

.mobile-nav-cta-wrap {
  padding: 1rem 1.15rem 1.15rem;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-on);
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(var(--brand-rgb), 0.32);
}

.mega-menu-trigger {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.mega-menu-trigger > .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
}
.mega-menu-trigger .mega-arrow {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
  margin-left: 0.15rem;
}
.mega-menu-trigger.active .mega-arrow {
  transform: rotate(180deg);
}
.mega-menu-trigger.active .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-dropdown {
  --mega-bridge: 12px;
  --mega-pad: 1.25rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  padding: calc(var(--mega-bridge) + var(--mega-pad)) var(--mega-pad) var(--mega-pad);
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}
.mega-dropdown::before {
  content: "";
  position: absolute;
  top: var(--mega-bridge);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(16, 40, 64, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1.25rem;
  border: 1px solid rgba(232, 238, 244, 0.1);
  box-shadow: 0 24px 60px rgba(2, 11, 20, 0.45);
  z-index: 0;
  pointer-events: none;
}
.mega-dropdown > * {
  position: relative;
  z-index: 1;
}

.mega-menu-item {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}
.mega-menu-item:hover {
  background: rgba(var(--brand-rgb), 0.1);
}
.mega-menu-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.mega-menu-item p {
  font-size: 0.75rem;
  color: var(--muted);
}

.mega-menu-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.5rem;
  padding: 0 0.85rem;
}

.mega-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}

.mega-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.mega-dropdown-wide {
  min-width: 760px;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
  --hero-autoplay-ms: 4000ms;
}

.hero-bgs {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04) translateY(var(--hero-parallax-y, 0px));
  transition: opacity 0.45s ease, transform 4.5s ease-out;
  will-change: opacity, transform;
  /* Images live in CSS so HTML minify cannot break url() quotes. */
}
.hero-bg[data-bg="0"] {
  --hero-img: url("https://images.unsplash.com/photo-1536799097017-5b57f1a7e56e?w=1920&q=80");
}
.hero-bg[data-bg="1"] {
  --hero-img: url("https://images.unsplash.com/photo-1645226880663-81561dcab0ae?w=1920&q=80");
}
.hero-bg[data-bg="2"] {
  --hero-img: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80");
}
.hero-bg[data-bg="3"] {
  --hero-img: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&q=80");
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 21, 37, 0.92) 0%, rgba(6, 21, 37, 0.72) 42%, rgba(6, 21, 37, 0.45) 100%), var(--hero-img) center / cover no-repeat;
  /* filter: grayscale(1); */
}
.hero-bg.is-active {
  opacity: 1;
  transform: scale(1) translateY(var(--hero-parallax-y, 0px));
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(var(--brand-rgb), 0.16), transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.06), transparent 45%);
  pointer-events: none;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  background-image: linear-gradient(rgba(var(--brand-rgb), 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--brand-rgb), 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 70%);
  pointer-events: none;
  animation: networkDrift 20s linear infinite;
}

@keyframes networkDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 40px, 40px 80px;
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
  padding: 6.5rem 0 1.5rem;
  min-height: 0;
}

.hero-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 3rem;
  }
}

.hero-slides {
  position: relative;
  min-height: 16rem;
}
@media (min-width: 960px) {
  .hero-slides {
    min-height: 18rem;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 1.25rem;
}
.hero h1 .accent {
  color: var(--brand);
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-proof {
  display: none;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 1.5rem 1.35rem;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}
@media (min-width: 960px) {
  .hero-proof {
    display: grid;
  }
}

.hero-proof-item .num {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.hero-proof-item .num span {
  color: var(--brand);
}
.hero-proof-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.hero-pillars {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 21, 37, 0.35) 40%, rgba(6, 21, 37, 0.55) 100%);
}
@media (min-width: 768px) {
  .hero-pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 0 2rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 1rem;
    align-items: center;
  }
  .hero-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.2rem;
    padding: 0.65rem 0 1rem;
    max-height: none;
    overflow: visible;
  }
}
.hero-pillar {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 1rem 0.75rem 0.85rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease;
  font: inherit;
}
.hero-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}
.hero-pillar:hover {
  background: rgba(255, 255, 255, 0.03);
}
.hero-pillar:hover::before {
  background: rgba(var(--brand-rgb), 0.45);
}
.hero-pillar.is-active {
  background: rgba(var(--brand-rgb), 0.08);
}
.hero-pillar h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.hero-pillar p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.hero-thumb-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  pointer-events: none;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  transition: none;
}

.hero-pillar-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand);
  margin-bottom: 0.55rem;
  display: block;
}

@media (max-width: 767px) {
  .hero-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0.7rem 0.15rem 0.55rem;
  }
  .hero-pillar-icon {
    width: 1.15rem;
    height: 1.15rem;
    margin: 0 auto 0.3rem;
  }
  .hero-pillar h3 {
    font-size: 0.62rem;
    font-weight: 650;
    line-height: 1.25;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
  .hero-pillar p {
    display: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40rem;
}

.section-head {
  margin-bottom: 3rem;
}
.section-head.centered {
  text-align: center;
}
.section-head.centered .section-lead {
  margin-inline: auto;
}

.about-section {
  position: relative;
  background: radial-gradient(ellipse 70% 55% at 100% 0%, rgba(var(--brand-rgb), 0.1), transparent 50%), linear-gradient(180deg, #071a2c 0%, #0a2034 100%);
  overflow: hidden;
}

.about-top {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.25rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-top {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
  }
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
}
.about-copy .section-title {
  margin-bottom: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.about-lead {
  min-width: 0;
  max-width: 100%;
}
.about-lead p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  overflow-wrap: break-word;
}
.about-lead p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .about-copy {
    text-align: right;
    align-items: flex-end;
  }
  .about-copy .section-title {
    max-width: 388px;
    margin-left: auto;
  }
  .about-lead {
    max-width: 388px;
  }
  .about-lead p {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
}
.stats-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .stats-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-block {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.75rem 1.25rem 1.65rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease;
}
.stat-block:nth-child(2n) {
  border-right: none;
}
.stat-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-block:hover {
  background: rgba(var(--brand-rgb), 0.08);
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.stat-block:hover::before {
  width: 100%;
}
.stat-block:hover .stat-num {
  color: var(--brand);
}
.stat-block .stat-num {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 0.85rem;
  transition: color 0.3s ease;
}
.stat-block .stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.stat-block .stat-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .stat-block {
    border-bottom: none;
    padding: 2.25rem 1.5rem 2rem;
  }
  .stat-block:nth-child(2n) {
    border-right: 1px solid var(--line);
  }
  .stat-block:last-child {
    border-right: none;
  }
}
.cert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 2rem;
}

.cert-row-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.35rem;
}

.cert-pill {
  padding: 0;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  background: none;
  color: var(--ink);
  border: none;
  display: inline-flex;
  align-items: center;
}
.cert-pill img {
  display: block;
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.cert-pill:hover img {
  /* filter: none; */
  opacity: 1;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.pillars-section {
  background: radial-gradient(ellipse 60% 45% at 0% 100%, rgba(var(--brand-rgb), 0.08), transparent 50%), linear-gradient(180deg, #0a2034 0%, #0c243a 100%);
}

.solutions-accordion {
  display: flex;
  gap: 0.85rem;
  width: 100%;
  height: 460px;
}

.solution-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background-color: var(--navy-mid);
  /* Leave: wait for content slide-down, then collapse */
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.34s;
  text-decoration: none;
  /* Images live in CSS so HTML minify cannot break url() quotes. */
}
.solution-panel[data-panel=digital] {
  --panel-img: url("https://images.unsplash.com/photo-1639322537504-6427a16b0a28?w=1200&q=80");
}
.solution-panel[data-panel=cyber] {
  --panel-img: url("https://images.unsplash.com/photo-1633265486064-086b219458ec?w=1200&q=80");
}
.solution-panel[data-panel=cloud] {
  --panel-img: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&q=80");
}
.solution-panel[data-panel=integration] {
  --panel-img: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1200&q=80");
}
.solution-panel[data-panel=managed] {
  --panel-img: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1200&q=80");
}
.solution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 37, 0.25) 0%, rgba(6, 21, 37, 0.55) 100%), var(--panel-img) center / cover no-repeat;
  /* filter: grayscale(1); */
  z-index: 0;
}

.solution-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 21, 37, 0.92) 0%, rgba(6, 21, 37, 0.35) 50%, rgba(6, 21, 37, 0.25) 100%);
}

.solution-vert-title {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 4;
  writing-mode: horizontal-tb;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #fff;
  opacity: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  /* Leave: fade title back in after content exits */
  transition: opacity 0.28s ease 0.36s, transform 0.28s ease 0.36s;
}

.solution-panel-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.32s ease 0s, transform 0.34s cubic-bezier(0.4, 0, 0.2, 1) 0s, visibility 0s linear 0.34s;
}

.solution-panel-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 0.45rem;
}

.solution-panel-title {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.solution-panel-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.7rem;
  max-width: 28rem;
}

@media (min-width: 901px) {
  .solution-panel.is-active {
    flex: 4.2;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  }
  .solution-panel.is-active .solution-vert-title {
    opacity: 0;
    transform: translateY(calc(-50% + 8px));
    transition: opacity 0.18s ease 0s, transform 0.22s ease 0s;
  }
  .solution-panel.is-active .solution-panel-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.35s ease 0.22s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.22s, visibility 0s linear 0.22s;
  }
}
@media (max-width: 900px) {
  .solutions-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 0.7rem;
  }
  .solution-panel {
    flex: none !important;
    min-height: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    transition: none;
  }
  .solution-panel:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
  }
  .solution-panel.is-active .solution-vert-title {
    opacity: 0;
    transform: translateY(calc(-50% + 8px));
    transition: opacity 0.18s ease 0s, transform 0.2s ease 0s;
  }
  .solution-panel.is-active .solution-panel-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease 0.2s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, visibility 0s linear 0.2s;
  }
  .solution-vert-title {
    left: 0.7rem;
    right: 0.7rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 0.88rem;
    line-height: 1.2;
    transition: opacity 0.25s ease 0.3s, transform 0.25s ease 0.3s;
  }
  .solution-panel-content {
    padding: 1rem 0.85rem;
  }
  .solution-panel-title {
    white-space: normal;
    font-size: 0.95rem;
  }
  .solution-panel-desc {
    font-size: 0.78rem;
    margin-top: 0.45rem;
  }
}
/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.products-section {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(var(--brand-rgb), 0.14), transparent 55%), radial-gradient(ellipse 50% 40% at 85% 80%, rgba(var(--brand-rgb), 0.06), transparent 50%), linear-gradient(180deg, #0b1e32 0%, #091a2c 48%, #071624 100%);
  overflow: hidden;
}
.products-section .section-head {
  margin-bottom: 2rem;
}
.products-section .section-title {
  color: #f4f8fb;
}
.products-section .section-lead {
  color: rgba(244, 248, 251, 0.62);
}

.product-carousel {
  position: relative;
  width: 100%;
  padding: 0.5rem 0 0.25rem;
}

.product-carousel-stage {
  position: relative;
  width: 100%;
  height: calc(min(720px, 82vw) * 9 / 16 + 13.5rem);
  perspective: 1400px;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  --drag: 0;
}
.product-carousel-stage.is-dragging {
  cursor: grabbing;
}
.product-carousel-stage.is-dragging .product-slide {
  transition: none;
}

.product-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-slide {
  --offset: 0;
  --scale: 0.78;
  --opacity: 0;
  --z: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 82vw);
  height: auto;
  margin: 0;
  transform: translate3d(calc(-50% + (var(--offset) + var(--drag)) * 36%), -50%, 0) scale(var(--scale));
  opacity: var(--opacity);
  z-index: var(--z);
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}
.product-slide.is-active {
  pointer-events: auto;
}
.product-slide.is-prev, .product-slide.is-next {
  pointer-events: auto;
  cursor: pointer;
}

.product-slide-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
  overflow: visible;
  background: #122033;
  color: #f4f8fb;
  text-decoration: none;
  box-shadow: none;
}
.product-slide-card::before, .product-slide-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 10px;
  width: 46%;
  height: 22px;
  max-width: 13rem;
  border-radius: 0.35rem;
  box-shadow: 0 16px 18px rgba(3, 13, 24, 0.45);
  opacity: 0.55;
  transition: opacity 0.45s ease, box-shadow 0.45s ease;
}
.product-slide-card::before {
  left: 10px;
  transform: rotate(-3.5deg);
}
.product-slide-card::after {
  right: 10px;
  left: auto;
  transform: rotate(3.5deg);
}

.product-slide.is-active .product-slide-card::before,
.product-slide.is-active .product-slide-card::after {
  opacity: 1;
  box-shadow: 0 16px 18px rgba(3, 13, 24, 0.55);
}

.product-slide-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a1624;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.15rem 1.15rem 0 0;
}
.product-slide-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.03);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: saturate(0.95);
}

.product-slide.is-active .product-slide-visual img {
  transform: scale(1);
}

.product-slide:not(.is-active) .product-slide-visual img {
  filter: grayscale(1) brightness(0.85);
}

.product-slide:not(.is-active) .product-slide-copy {
  opacity: 0;
  transform: translateY(12px);
}

.product-browser-chrome {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, #1a2d42 0%, #122033 100%);
  border-bottom: 1px solid rgba(3, 13, 24, 0.45);
}

.product-browser-dots {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  flex-shrink: 0;
}
.product-browser-dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  box-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.25) inset;
}
.product-browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.product-browser-dots span:nth-child(2) {
  background: #febc2e;
}
.product-browser-dots span:nth-child(3) {
  background: #28c840;
}

.product-browser-bar {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 1.55rem;
  padding: 0 0.75rem;
  border-radius: 0.45rem;
  background: #0a1624;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.product-browser-lock {
  width: 0.55rem;
  height: 0.7rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.2rem 0.2rem 0.15rem 0.15rem;
  position: relative;
}
.product-browser-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.35rem;
  width: 0.38rem;
  height: 0.35rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-bottom: none;
  border-radius: 0.35rem 0.35rem 0 0;
  transform: translateX(-50%);
}

.product-browser-url {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.05rem 1.35rem 1.2rem;
  border-radius: 0 0 1.15rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #122033 0%, #0e1a2a 100%);
  transition: opacity 0.4s ease 0.08s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.product-slide-copy h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.45rem;
  color: #f4f8fb;
}
.product-slide-copy p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(244, 248, 251, 0.62);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-slide.is-active .product-slide-copy {
  opacity: 1;
  transform: translateY(0);
}

.product-slide-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.45rem;
}

.product-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  margin-top: 1.75rem;
  padding: 0.45rem;
  width: fit-content;
  margin-inline: auto;
  border-radius: 999px;
  border: 1px solid rgba(232, 238, 244, 0.12);
  background: rgba(16, 40, 64, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(2, 11, 20, 0.28);
}

.product-carousel-nav {
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(232, 238, 244, 0.14);
  border-radius: 999px;
  background: rgba(232, 238, 244, 0.06);
  color: rgba(244, 248, 251, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.product-carousel-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-on);
  transform: translateY(-1px);
}
.product-carousel-nav:active {
  transform: translateY(0) scale(0.96);
}

.product-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  min-width: 0;
}

.product-carousel-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(244, 248, 251, 0.28);
  cursor: pointer;
  transition: width 0.35s ease, background 0.3s ease, transform 0.3s ease;
}
.product-carousel-dot.is-active {
  width: 1.35rem;
  height: 0.45rem;
  background: var(--brand);
  transform: none;
}

@media (max-width: 700px) {
  .product-carousel-stage {
    height: calc(min(92vw, 440px) * 9 / 16 + 12.25rem);
  }
  .product-slide {
    width: min(92vw, 440px);
    height: auto;
    transform: translate3d(calc(-50% + (var(--offset) + var(--drag)) * 26%), -50%, 0) scale(var(--scale));
  }
  .product-carousel-controls {
    gap: 0.85rem;
    margin-top: 1.35rem;
  }
  .product-carousel-nav {
    width: 2.4rem;
    height: 2.4rem;
  }
  .product-browser-chrome {
    padding: 0.55rem 0.7rem;
    gap: 0.6rem;
  }
  .product-browser-url {
    font-size: 0.65rem;
  }
}
/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.industries-section {
  position: relative;
  scroll-margin-top: 8.25rem;
  background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(var(--brand-rgb), 0.14), transparent 55%), linear-gradient(180deg, #051320 0%, #030d18 100%);
  color: #fff;
  overflow: hidden;
}
.industries-section .section-label {
  color: var(--brand);
}
.industries-section .section-title {
  color: #fff;
  margin-bottom: 0;
}
.industries-section .section-lead {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 32rem;
}

.industries-top {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  align-items: end;
}
@media (min-width: 900px) {
  .industries-top {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
}

.industry-explorer {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .industry-explorer {
    grid-template-columns: minmax(260px, 0.85fr) 1.4fr;
    gap: 0;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 900px) {
  .industry-list {
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
  }
}

.industry-tab {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 1rem 1.15rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: background 0.3s ease;
}
.industry-tab:last-child {
  border-bottom: none;
}
.industry-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.industry-tab:hover {
  background: rgba(255, 255, 255, 0.03);
}
.industry-tab.active {
  background: rgba(var(--brand-rgb), 0.08);
}
.industry-tab.active::before {
  transform: scaleY(1);
}
.industry-tab.active h3 {
  color: #fff;
}
.industry-tab.active .chips span {
  background: none;
  color: rgba(255, 255, 255, 0.7);
}
.industry-tab h3 {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}
.industry-tab .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
}
.industry-tab .chips span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.industry-tab .chips span:not(:last-child)::after {
  content: "·";
  margin-left: 0.55rem;
  color: rgba(255, 255, 255, 0.25);
}

.industry-tab-body {
  min-width: 0;
}

.industry-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-tab.active .industry-arrow,
.industry-tab:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
}

.industry-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 280px;
  background: var(--navy-mid);
}
@media (min-width: 900px) {
  .industry-visual {
    min-height: 100%;
    align-self: stretch;
  }
}
.industry-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.55s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.industry-visual img.active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 900px) {
  .industry-tab {
    flex: 1;
  }
}
.industry-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 21, 37, 0.35) 0%, transparent 45%), linear-gradient(180deg, transparent 35%, rgba(6, 21, 37, 0.88) 100%);
  pointer-events: none;
}

.industry-visual-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  max-width: 28rem;
}
@media (min-width: 900px) {
  .industry-visual-caption {
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.industry-visual-caption h4 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.industry-visual-caption p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.industry-caption-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.industries-more {
  margin: 1.75rem 0 0;
  text-align: center;
}
.industries-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--brand);
}
.industries-more a:hover {
  color: var(--brand-600);
}

.cases-section {
  position: relative;
  background: radial-gradient(ellipse 70% 45% at 0% 0%, rgba(var(--brand-rgb), 0.1), transparent 55%), linear-gradient(180deg, #0d2740 0%, #0a1f33 100%);
}

.cases-top {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  align-items: end;
}
@media (min-width: 900px) {
  .cases-top {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
}
.cases-top .section-title {
  margin-bottom: 0;
}
.cases-top .section-lead {
  margin: 0;
}

.cases-grid {
  display: grid;
  gap: 1.5rem;
  border-top: none;
}
@media (min-width: 900px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
.cases-grid.is-color .case-media img,
.cases-grid.is-color .case-card:hover .case-media img {
  filter: none;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-elevated);
  transition: background 0.35s ease, border-color 0.35s ease;
}
@media (min-width: 900px) {
  .case-card {
    border-bottom: none;
    border-right: none;
  }
  .case-card:last-child {
    border-right: none;
  }
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  z-index: 2;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.case-card:hover {
  background: rgba(var(--brand-rgb), 0.08);
  transform: none;
  box-shadow: none;
}
.case-card:hover::before {
  width: 100%;
}
.case-card:hover .case-media img {
  transform: scale(1.06);
  filter: grayscale(0.35);
}
.case-card:hover .case-body h3 {
  color: var(--brand);
}

.case-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-mid);
}
@media (min-width: 900px) {
  .case-media {
    height: 240px;
  }
}
.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.case-body {
  padding: 1.5rem 1.35rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s ease;
}
.case-body p:not(.case-date) {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  flex: 1;
}

.case-tag {
  position: static;
  display: inline-block;
  align-self: flex-start;
  padding: 0;
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.case-metric {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.case-date {
  flex: 0 0 auto;
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.case-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: color 0.25s ease, gap 0.3s ease;
}
.case-link:hover {
  color: var(--brand);
  gap: 0.65rem;
}

.case-date + .case-link {
  margin-top: 0.85rem;
}

a.case-card {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 700px) {
  .svc-related .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .svc-related .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cases-more {
  margin: 1.75rem 0 0;
  text-align: center;
}
.cases-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--brand);
}
.cases-more a:hover {
  color: var(--brand-600);
}

.page-hero.is-story h1 {
  max-width: 22ch;
}

.page-hero.is-news h1 {
  max-width: 32ch;
  font-size: clamp(1.75rem, 4.2vw, 3.05rem);
}

.news-published {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: rgba(232, 238, 244, 0.55);
}

.news-article {
  width: 100%;
  max-width: none;
}

.news-date-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 1.35rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  text-align: left;
}
.news-date-line time {
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 650;
  color: var(--ink);
}

.news-prose p,
.news-prose li {
  text-align: justify;
}

.story-cover {
  margin: 2rem auto 0;
  width: min(1200px, calc(100% - 3rem));
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  aspect-ratio: 21/9;
  background: var(--navy-mid);
}
@media (max-width: 700px) {
  .story-cover {
    aspect-ratio: 16/10;
  }
}
.story-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-block {
  scroll-margin-top: 8.25rem;
  background: var(--navy);
}
.story-block--alt {
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--brand-rgb), 0.12), transparent 58%), linear-gradient(180deg, #051320 0%, var(--navy-mid) 100%);
}
.story-block--outcome {
  background: radial-gradient(ellipse 55% 50% at 100% 0%, rgba(var(--brand-rgb), 0.1), transparent 55%), var(--navy);
}

.story-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .story-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
    gap: 3.5rem;
    align-items: start;
  }
}

.story-prose {
  min-width: 0;
}
.story-prose .section-label {
  margin-bottom: 0.85rem;
}
.story-prose .section-title {
  margin-bottom: 1.15rem;
}
.story-prose p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.story-prose ul {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.story-prose li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.story-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.story-ticks {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.story-ticks li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.story-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.story-facts {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem 1.3rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
}
.story-facts dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.3rem;
}
.story-facts dd {
  margin: 0 0 0.95rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
}
.story-facts dd:last-child {
  margin-bottom: 0;
}
.story-facts dd a {
  color: inherit;
}
.story-facts dd a:hover {
  color: var(--brand);
}

.story-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .story-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

.story-metric {
  padding: 1.25rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
}
.story-metric strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.story-metric span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.story-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  background: var(--navy-mid);
}
.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.ecosystem-section {
  background: radial-gradient(ellipse 55% 40% at 100% 0%, rgba(var(--brand-rgb), 0.08), transparent 50%), linear-gradient(180deg, #081828 0%, #061525 100%);
}

.eco-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: radial-gradient(ellipse 70% 120% at 0% 50%, rgba(var(--brand-rgb), 0.14), transparent 55%), var(--navy-elevated);
  color: var(--ink);
}
.eco-proof strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
}
.eco-proof span {
  color: var(--muted);
  margin-left: 0.5rem;
}
.eco-proof a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.25s ease, gap 0.25s ease;
}
.eco-proof a:hover {
  color: var(--brand);
  gap: 0.55rem;
}

.eco-groups {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .eco-groups {
    gap: 1.25rem;
  }
}
@media (min-width: 1000px) {
  .eco-groups {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.eco-flip {
  perspective: 1200px;
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  outline: none;
  cursor: pointer;
}
.eco-flip:hover .eco-flip-inner, .eco-flip:focus-within .eco-flip-inner, .eco-flip.is-flipped .eco-flip-inner {
  transform: rotateY(180deg);
}

.eco-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.eco-flip-front,
.eco-flip-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.eco-flip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.45;
  transform: scale(1.04);
}

.eco-flip-front {
  background: var(--navy-elevated);
}
.eco-flip-front::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(var(--brand-rgb), 0.2), transparent 55%), linear-gradient(180deg, rgba(6, 21, 37, 0.22) 0%, rgba(6, 21, 37, 0.58) 100%);
}
.eco-flip-front > :not(.eco-flip-bg) {
  position: relative;
  z-index: 1;
}
.eco-flip-front h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.45rem;
  text-shadow: 0 2px 18px rgba(6, 21, 37, 0.9);
}

.eco-flip-back {
  background: var(--navy-soft);
  transform: rotateY(180deg);
}

.eco-flip-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.eco-flip-count {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
  text-shadow: 0 2px 14px rgba(6, 21, 37, 0.85);
}

.eco-flip-hint {
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink);
  opacity: 0.75;
  text-shadow: 0 2px 14px rgba(6, 21, 37, 0.85);
}
.eco-flip-hint::after {
  content: "Hover to view logos";
}

@media (hover: none) {
  .eco-flip-hint::after {
    content: "Tap to view logos";
  }
}
.eco-flip-back-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1rem;
}

.eco-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  width: 100%;
}
.eco-logos img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.eco-logos img:hover {
  opacity: 1;
  transform: scale(1.04);
}

.eco-logo-text {
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(232, 238, 244, 0.08);
  border: 1px solid var(--line);
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  background-color: var(--navy-deep);
  color: #fff;
}

.contact-glow {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.contact-glow-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
}

.contact-glow-orb-1 {
  top: 25%;
  left: 25%;
  background: rgba(var(--brand-rgb), 0.35);
}

.contact-glow-orb-2 {
  bottom: 25%;
  right: 25%;
  background: rgba(255, 255, 255, 0.12);
}

.contact-inner {
  position: relative;
  z-index: 10;
  width: min(56rem, 100%);
  margin-inline: auto;
}

.contact-head {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}

.contact-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 36rem;
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  text-align: center;
}
.contact-card h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}
.contact-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.contact-card p a {
  color: inherit;
}
.contact-card p a:hover {
  color: #fff;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: rgba(var(--brand-rgb), 0.2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta {
  text-align: center;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.5);
}
.site-footer h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.site-footer ul a {
  display: inline-block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-footer ul a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.footer-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(var(--brand-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 10;
  width: min(1280px, 100%);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: scale(1.1) translateY(-4px);
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-certs span {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: var(--brand);
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 9rem 0 4.25rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(var(--brand-rgb), 0.18), transparent 55%), radial-gradient(ellipse 50% 40% at 50% 100%, rgba(var(--brand-rgb), 0.08), transparent 50%), linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 1.15rem;
}

.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.page-hero-kicker::before, .page-hero-kicker::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--brand);
}

.page-hero-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  margin-bottom: 1.35rem;
  font-size: 0.8rem;
  color: rgba(232, 238, 244, 0.62);
}
.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-breadcrumb a {
  color: rgba(232, 238, 244, 0.78);
}
.page-breadcrumb a:hover {
  color: #fff;
}
.page-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
}
.page-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(232, 238, 244, 0.35);
}

.page-jump {
  position: sticky;
  top: 4.55rem;
  z-index: 50;
  background: rgba(6, 21, 37, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.page-jump-inner {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.7rem 0;
  scrollbar-width: none;
}
.page-jump-inner::-webkit-scrollbar {
  display: none;
}
.page-jump-inner a {
  flex: 0 0 auto;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(232, 238, 244, 0.7);
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.page-jump-inner a:hover, .page-jump-inner a.is-active {
  color: #fff;
  background: rgba(var(--brand-rgb), 0.14);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.svc-block {
  scroll-margin-top: 8.25rem;
}

.svc-overview {
  background: radial-gradient(ellipse 70% 55% at 0% 0%, rgba(var(--brand-rgb), 0.08), transparent 50%), linear-gradient(180deg, #071a2c 0%, #0a2034 100%);
}

.svc-overview-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.25rem;
}
@media (min-width: 900px) {
  .svc-overview-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
  }
}

.svc-overview-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.svc-overview-copy p:last-child {
  margin-bottom: 0;
}

.svc-highlights {
  display: grid;
  gap: 0.85rem;
}

.svc-highlight {
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
}
.svc-highlight strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.svc-highlight p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.svc-caps {
  background: radial-gradient(ellipse 55% 50% at 100% 0%, rgba(var(--brand-rgb), 0.1), transparent 55%), var(--navy);
}

.svc-build {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
@media (min-width: 900px) {
  .svc-build {
    gap: 4.25rem;
  }
}

.svc-build-row {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  scroll-margin-top: 8.25rem;
}
@media (min-width: 900px) {
  .svc-build-row {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 3.75rem;
  }
  .svc-build-row:nth-child(even) {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
  .svc-build-row:nth-child(even) .svc-build-media {
    order: 2;
  }
}

.svc-build-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  background: var(--navy-mid);
}
.svc-build-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-build-media:hover img {
  transform: scale(1.045);
}

.svc-build-copy {
  min-width: 0;
  position: relative;
}
.svc-build-copy p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.svc-build-copy p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.svc-build-num {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #ccc;
  opacity: 0.2;
}
@media screen and (min-width: 990px) {
  .svc-build-num {
    font-size: 8rem;
    position: absolute;
    top: -110px;
    letter-spacing: -10px;
  }
}

.svc-build-name {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.svc-build-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-build-tags li {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 650;
}

.svc-process {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--brand-rgb), 0.16), transparent 58%), linear-gradient(180deg, #051320 0%, var(--navy-mid) 100%);
}

.svc-flow {
  --flow-icon: 4.35rem;
  --flow-stem: 1.55rem;
  --flow-cols: 5;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  position: relative;
}
@media (min-width: 1000px) {
  .svc-flow {
    grid-template-columns: repeat(var(--flow-cols), 1fr);
    gap: 0;
  }
  .svc-flow::before {
    content: "";
    position: absolute;
    top: calc(var(--flow-icon) + var(--flow-stem));
    left: calc(100% / (2 * var(--flow-cols)));
    right: calc(100% / (2 * var(--flow-cols)));
    height: 2px;
    background: var(--brand);
    pointer-events: none;
    z-index: 0;
  }
}
.svc-flow.is-four {
  --flow-cols: 4;
}
.svc-flow.is-three {
  --flow-cols: 3;
}
.svc-flow.is-six {
  --flow-cols: 6;
}
@media (min-width: 1000px) {
  .svc-flow.is-six .svc-flow-copy {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }
}

.svc-flow-step {
  display: grid;
  grid-template-columns: var(--flow-icon) 1fr;
  gap: 0 1.1rem;
  align-items: start;
}
@media (min-width: 1000px) {
  .svc-flow-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.svc-flow-icon {
  position: relative;
  z-index: 1;
  width: var(--flow-icon);
  height: var(--flow-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-on);
  box-shadow: 0 10px 28px rgba(var(--brand-rgb), 0.28);
}
.svc-flow-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}
.svc-flow-icon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: var(--flow-stem);
  background: var(--brand);
  transform: translateX(-50%);
}
.svc-flow-icon::before {
  content: "";
  position: absolute;
  top: calc(100% + var(--flow-stem));
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px var(--navy-mid);
  z-index: 1;
}

.svc-flow-copy {
  position: relative;
  min-width: 0;
  padding-top: 0.15rem;
}
@media (min-width: 1000px) {
  .svc-flow-copy {
    width: 100%;
    padding: calc(var(--flow-stem) + 1.15rem) 1.15rem 0;
  }
}

@media (min-width: 1000px) {
  .svc-flow-step:not(:first-child) .svc-flow-copy::before {
    content: "";
    position: absolute;
    top: calc(var(--flow-stem) + 1.15rem);
    left: 0;
    bottom: 0;
    width: 1px;
    background: rgba(232, 238, 244, 0.12);
  }
}

.svc-flow-label {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.svc-flow-copy h3 {
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.svc-flow-copy p:last-child {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .svc-flow-step:not(:last-child) .svc-flow-icon::after {
    height: calc(100% + 1.75rem);
  }
  .svc-flow-step:last-child .svc-flow-icon::after,
  .svc-flow-step:last-child .svc-flow-icon::before {
    display: none;
  }
  .svc-flow-icon::before {
    display: none;
  }
}
.svc-faq {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--brand-rgb), 0.08), transparent 55%), linear-gradient(180deg, #071a2c 0%, var(--navy) 100%);
}

.svc-faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 0.7rem;
}

.svc-faq-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--navy-elevated);
  overflow: hidden;
}
.svc-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.svc-faq-item summary::-webkit-details-marker {
  display: none;
}
.svc-faq-item summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.svc-faq-item[open] summary::after {
  transform: rotate(225deg);
}
.svc-faq-item p {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.svc-faq-item p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.svc-related {
  background: var(--navy-mid);
}

.svc-related-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .svc-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .svc-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc-related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.15rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-related-card:hover {
  border-color: rgba(var(--brand-rgb), 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2, 11, 20, 0.32);
}
.svc-related-card:hover .svc-related-thumb img {
  transform: scale(1.06);
  filter: grayscale(0.2);
}
.svc-related-card:hover h3 {
  color: var(--brand);
}

.svc-related-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}
.svc-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.svc-related-body {
  padding: 1.25rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-related-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  transition: color 0.25s ease;
}
.svc-related-body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.mega-menu-item[aria-current=page] {
  background: rgba(var(--brand-rgb), 0.1);
}

.svc-flow-4 {
  --flow-cols: 4;
}

.svc-highlights-quad {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}
@media (min-width: 700px) {
  .svc-highlights-quad {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .svc-highlights-quad {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0.5rem;
  }
}

.prod-shot {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1624;
  box-shadow: 0 16px 40px rgba(3, 13, 24, 0.45);
}
.prod-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.prod-audience {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .prod-audience {
    grid-template-columns: 1fr 1fr;
  }
}

.prod-audience-card {
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
}
.prod-audience-card .section-label {
  margin-bottom: 0.65rem;
}
.prod-audience-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}
.prod-audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-hero.is-legal h1 {
  max-width: 22ch;
}

.legal-section {
  position: relative;
  background: radial-gradient(ellipse 70% 45% at 0% 0%, rgba(var(--brand-rgb), 0.1), transparent 55%), linear-gradient(180deg, #0d2740 0%, #0a1f33 100%);
}

.legal-layout {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 900px) {
  .legal-layout {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 3.25rem;
    align-items: start;
  }
}

.legal-toc {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
}
@media (min-width: 900px) {
  .legal-toc {
    position: sticky;
    top: 6.5rem;
  }
}
.legal-toc p {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.legal-toc a {
  display: block;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}
.legal-toc a:hover {
  color: var(--brand);
}

.legal-prose {
  min-width: 0;
  max-width: 46rem;
}
.legal-prose > p:first-of-type {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
}
.legal-prose h2 {
  scroll-margin-top: 6.75rem;
  margin: 2.35rem 0 0.85rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
}
.legal-prose h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.legal-prose p,
.legal-prose li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-prose p {
  margin: 0 0 1rem;
}
.legal-prose ul {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.legal-prose li {
  position: relative;
  padding-left: 1.15rem;
}
.legal-prose li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}
.legal-prose a {
  color: var(--brand);
}
.legal-prose a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.egen-page {
  color: var(--ink);
  overflow-x: hidden;
  color-scheme: dark;
}

.egen-section {
  padding: 5rem 0;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(var(--brand-rgb), 0.07), transparent 28rem);
}
.egen-section:not(.egen-band) .svc-flow-icon::before {
  box-shadow: 0 0 0 5px var(--navy);
}

.egen-band {
  background: var(--navy-mid);
}

.egen-band-alt {
  background: radial-gradient(circle at 10% 20%, rgba(var(--brand-rgb), 0.1), transparent 28rem), var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.egen-band-alt .svc-flow-icon::before {
  box-shadow: 0 0 0 5px var(--navy);
}

.egen-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.egen-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.egen-copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.egen-center .egen-copy {
  margin-inline: auto;
  max-width: 44rem;
  text-align: center;
}

.egen-center + .egen-targets {
  margin-top: 2rem;
}

#egen-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
#egen-hero-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  #egen-hero-canvas {
    display: none;
  }
}
.egen-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(var(--brand-rgb), 0.16), transparent 50rem), var(--navy-deep);
}
.egen-hero .container {
  position: relative;
  z-index: 1;
}
.egen-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}
.egen-hero p {
  margin: 0 auto 2rem;
  max-width: 46rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.egen-accent {
  color: var(--brand);
}

.egen-hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.egen-why {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .egen-why {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.egen-why-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .egen-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-why-grid.is-five {
    grid-template-columns: repeat(2, 1fr);
  }
}

.egen-why .egen-copy + .egen-copy {
  margin-top: 0.85rem;
}

.egen-targets + .egen-hero-btns {
  margin-top: 2.5rem;
}

.egen-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.15rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2, 11, 20, 0.2);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}
.egen-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--brand-rgb), 0.55);
  box-shadow: 0 22px 44px rgba(var(--brand-rgb), 0.12);
}
.egen-card:hover h5,
.egen-card:hover h6 {
  color: var(--brand);
}
.egen-card:hover .egen-card-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--brand);
  color: var(--brand-on);
}
.egen-card h5,
.egen-card h6 {
  margin: 0 0 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.egen-card h5 {
  font-size: 1.05rem;
}
.egen-card h6 {
  font-size: 1.15rem;
}
.egen-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
.egen-card ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  text-align: left;
}
.egen-card li {
  position: relative;
  margin-bottom: 0.45rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.3s ease;
}
.egen-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.egen-card:hover li {
  color: var(--ink);
}

.egen-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.15rem;
  border-radius: 0.75rem;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}
.egen-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.egen-why-grid .egen-card-icon {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 1.15rem;
}
.egen-why-grid .egen-card-icon svg {
  width: 2rem;
  height: 2rem;
}

.egen-why-grid .egen-card:hover .egen-card-icon {
  background: transparent;
  color: var(--brand);
  transform: scale(1.12) rotate(-5deg);
}

.egen-benefits {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .egen-benefits {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.egen-steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .egen-steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.egen-step {
  padding: 1.15rem 0.75rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.egen-step:hover {
  transform: translateY(-6px);
}
.egen-step:hover .egen-step-num {
  transform: scale(1.18) rotate(360deg);
}
.egen-step h6 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 700;
}
.egen-step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.egen-step-num {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-on);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(var(--brand-rgb), 0.32);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.egen-targets {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .egen-targets {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-targets.is-three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-target {
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: 1.15rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(2, 11, 20, 0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.egen-target:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 40px rgba(var(--brand-rgb), 0.1);
}
.egen-target:hover .egen-target-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--brand);
  color: var(--brand-on);
}
.egen-target h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
}
.egen-target p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.egen-target.is-enterprise h3 {
  color: var(--ink);
}

.egen-target-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.15rem;
  border-radius: 0.9rem;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  transition: transform 0.4s ease, background 0.35s ease, color 0.35s ease;
}
.egen-target-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.egen-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5.5rem 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--brand-rgb), 0.22), transparent 55%), linear-gradient(180deg, var(--navy-elevated) 0%, var(--navy-deep) 100%);
}
.egen-cta h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.egen-cta p {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
}

.egen-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 11, 20, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.egen-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.egen-modal-panel {
  position: relative;
  width: min(36rem, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.15rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(2, 11, 20, 0.45);
  color: var(--ink);
}
.egen-modal-panel h2 {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
}
.egen-modal-panel > p {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.egen-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.egen-modal-close:hover {
  color: #fff;
}

.egen-form {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .egen-form {
    grid-template-columns: 1fr 1fr;
  }
}

.egen-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.egen-field.is-full {
  grid-column: 1/-1;
}
.egen-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(232, 238, 244, 0.78);
}
.egen-field input,
.egen-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid var(--line);
  background: var(--navy);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}
.egen-field input:focus,
.egen-field textarea:focus {
  outline: 2px solid rgba(var(--brand-rgb), 0.45);
  outline-offset: 1px;
}

.egen-form-actions {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

.egen-form-feedback {
  grid-column: 1/-1;
  display: none;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .egen-hero h1 {
    font-size: 2.25rem;
  }
  .egen-section,
  .egen-cta {
    padding: 3.25rem 0;
  }
  .egen-hero-btns .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
.egen-page.is-showcase .egen-hero {
  min-height: 0;
  display: block;
  text-align: center;
  padding: 8.25rem 0 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--brand-rgb), 0.22), transparent 58%), radial-gradient(circle at 12% 38%, rgba(var(--brand-rgb), 0.1), transparent 28rem), var(--navy-deep);
}
.egen-page.is-showcase .egen-hero-copy,
.egen-page.is-showcase .egen-browser {
  max-width: 68rem;
  width: 100%;
}
.egen-page.is-showcase .egen-hero-copy {
  position: relative;
  z-index: 1;
  margin: 0 auto 2.75rem;
}
.egen-page.is-showcase .egen-hero-copy p {
  margin: 0 auto;
  max-width: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.egen-page.is-showcase .egen-hero-copy .page-hero-kicker {
  margin-bottom: 1.1rem;
  text-transform: none;
  letter-spacing: 0.04em;
}
.egen-page.is-showcase .egen-hero-copy .page-hero-lead {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.egen-page.is-showcase .egen-hero-copy .page-hero-actions {
  margin-top: 1.85rem;
}
.egen-page.is-showcase .egen-hero h1 {
  margin-bottom: 1rem;
}
.egen-page.is-showcase .egen-browser {
  position: relative;
  z-index: 2;
  margin: 0 auto -5.5rem;
  overflow: hidden;
  border-radius: 1rem 1rem 0.4rem 0.4rem;
  border: 1px solid rgba(232, 238, 244, 0.14);
  background: #071422;
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.08), 0 28px 80px rgba(2, 11, 20, 0.55), 0 8px 32px rgba(var(--brand-rgb), 0.16);
}
.egen-page.is-showcase .egen-browser::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -2.5rem;
  height: 4.5rem;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--brand-rgb), 0.38), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.egen-page.is-showcase .egen-browser-bar {
  display: grid;
  grid-template-columns: 4.5rem 1fr 4.5rem;
  align-items: center;
  height: 2.55rem;
  padding: 0 0.85rem;
  background: linear-gradient(180deg, #12263a 0%, #0c1c2c 100%);
  border-bottom: 1px solid rgba(232, 238, 244, 0.08);
}
.egen-page.is-showcase .egen-browser-dots {
  display: flex;
  gap: 0.38rem;
}
.egen-page.is-showcase .egen-browser-dots i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #ff5f57;
}
.egen-page.is-showcase .egen-browser-dots i:nth-child(2) {
  background: #febc2e;
}
.egen-page.is-showcase .egen-browser-dots i:nth-child(3) {
  background: #28c840;
}
.egen-page.is-showcase .egen-browser-url {
  justify-self: center;
  max-width: 22rem;
  width: 100%;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.55);
  border: 1px solid rgba(232, 238, 244, 0.08);
  color: rgba(232, 238, 244, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.egen-page.is-showcase .egen-browser-screen {
  position: relative;
  max-height: min(34rem, 58vh);
  overflow: hidden;
  background: #020b14;
}
.egen-page.is-showcase .egen-browser-screen img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.egen-page.is-showcase .egen-browser-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6.5rem;
  background: linear-gradient(180deg, transparent, #071422 88%);
  pointer-events: none;
}
.egen-page.is-showcase .egen-hero + .section,
.egen-page.is-showcase .egen-hero + .egen-section {
  padding-top: 8.75rem;
}
.egen-page.is-showcase .egen-benefits,
.egen-page.is-showcase .egen-targets {
  margin-top: 0.25rem;
}
.egen-page.is-showcase .egen-card {
  background: var(--navy-soft);
  border-color: rgba(232, 238, 244, 0.14);
}
.egen-page.is-showcase .egen-feature h3 {
  transition: color 0.3s ease;
}
.egen-page.is-showcase .egen-feature:hover h3 {
  color: var(--brand);
}
.egen-page.is-showcase .egen-feature:hover .egen-feature-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--brand);
  color: var(--brand-on);
}
.egen-page.is-showcase .egen-feature-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.75rem;
  background: rgba(var(--brand-rgb), 0.12);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}
.egen-page.is-showcase .egen-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.egen-page.is-showcase .egen-engine-copy .section-label {
  display: block;
  margin-bottom: 0.85rem;
}
.egen-page.is-showcase .egen-engine-copy .section-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.egen-page.is-showcase .egen-engine-copy .section-lead {
  margin: 0;
  max-width: 32rem;
  font-size: 1.08rem;
  line-height: 1.7;
}
.egen-page.is-showcase .egen-engine-copy .egen-hero-btns {
  margin-top: 1.75rem;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .egen-page.is-showcase .egen-hero {
    padding-top: 7rem;
  }
  .egen-page.is-showcase .egen-hero-copy {
    margin-bottom: 2rem;
  }
  .egen-page.is-showcase .page-hero-actions .btn-primary,
  .egen-page.is-showcase .page-hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .egen-page.is-showcase .egen-engine-copy .egen-hero-btns {
    justify-content: center;
  }
  .egen-page.is-showcase .egen-browser {
    margin-bottom: -2.75rem;
    border-radius: 0.85rem 0.85rem 0.3rem 0.3rem;
  }
  .egen-page.is-showcase .egen-browser-screen {
    max-height: min(22rem, 52vh);
  }
  .egen-page.is-showcase .egen-browser-bar {
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
  }
  .egen-page.is-showcase .egen-browser-url {
    justify-self: stretch;
    max-width: none;
  }
  .egen-page.is-showcase .egen-hero + .section,
  .egen-page.is-showcase .egen-hero + .egen-section {
    padding-top: 5.5rem;
  }
}

.egen-hr-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 20% 50%, rgba(var(--brand-rgb), 0.16), transparent 42rem), var(--navy-deep);
}
.egen-hr-hero .container {
  position: relative;
  z-index: 2;
}

.egen-hr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}

#egen-hr-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  #egen-hr-canvas {
    display: none;
  }
}
.egen-hr-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .egen-hr-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.egen-hr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}
.egen-hr-badge svg {
  width: 0.9rem;
  height: 0.9rem;
}

.egen-hr-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.egen-hr-hero .egen-hr-lead {
  margin: 0 0 0.55rem;
  max-width: 34rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.egen-hr-disclaimer {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.egen-hr-visual {
  position: relative;
  padding: 1.15rem;
}
.egen-hr-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(2, 11, 20, 0.45);
}
.egen-hr-visual::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 80%;
  height: 80%;
  background: var(--brand);
  opacity: 0.18;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.egen-hr-stats {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  background: var(--navy-mid);
  border-radius: 2.5rem 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.egen-hr-stats-head {
  margin: 0 0 2rem;
  text-align: center;
}
.egen-hr-stats-head .egen-title {
  margin: 0 0 0.4rem;
}

.egen-hr-stats-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.egen-hr-stat-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .egen-hr-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-hr-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.egen-hr-stat {
  padding: 1.75rem 1rem;
  text-align: center;
  border-radius: 1.15rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2, 11, 20, 0.2);
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.egen-hr-stat:hover {
  border-color: rgba(var(--brand-rgb), 0.55);
  transform: translateY(-4px);
}

.egen-hr-stat-val {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.egen-hr-stat-lbl {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.egen-hr-features {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .egen-hr-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-hr-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-hr-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: 1.35rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2, 11, 20, 0.2);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}
.egen-hr-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-rgb), 0.55);
  box-shadow: 0 22px 44px rgba(var(--brand-rgb), 0.12);
}
.egen-hr-feature:hover .egen-hr-feature-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--brand);
  color: var(--brand-on);
}
.egen-hr-feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.egen-hr-feature > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.egen-hr-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 1.15rem;
  border-radius: 0.85rem;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}
.egen-hr-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.egen-hr-feature-list {
  list-style: none;
  margin: 0.9rem 0 1.15rem;
  padding: 0;
}
.egen-hr-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.egen-hr-feature-list svg {
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.15rem;
  color: var(--brand);
}

.egen-hr-impact {
  margin-top: auto;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(var(--brand-rgb), 0.08);
  border-left: 4px solid var(--brand);
}
.egen-hr-impact strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.egen-hr-impact p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.egen-hr-edge {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 900px) {
  .egen-hr-edge {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.egen-hr-edge .egen-copy {
  margin-bottom: 1.5rem;
}
.egen-hr-edge .egen-copy strong {
  color: var(--ink);
}
.egen-hr-edge img {
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(2, 11, 20, 0.35);
}

.egen-hr-edge-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.05rem;
  border-radius: 1rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(2, 11, 20, 0.2);
}
.egen-hr-edge-card svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand);
  flex: 0 0 auto;
}
.egen-hr-edge-card h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 700;
}
.egen-hr-edge-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .egen-hr-hero {
    text-align: center;
    padding-top: 7rem;
  }
  .egen-hr-hero .egen-hr-lead,
  .egen-hr-hero .egen-hr-disclaimer {
    margin-inline: auto;
  }
  .egen-hr-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .egen-hr-visual {
    display: none;
  }
}
.egen-sa-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--line);
}
.egen-sa-hero .container {
  position: relative;
  z-index: 2;
}
.egen-sa-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}
.egen-sa-hero .egen-sa-lead {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.egen-sa-hero .egen-sa-sub {
  margin: 0 0 2rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.egen-sa-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .egen-sa-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

#egen-sa-canvas {
  width: 100%;
  height: 28rem;
  position: relative;
  cursor: move;
  z-index: 2;
}
#egen-sa-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  #egen-sa-canvas {
    display: none;
  }
}
.egen-sa-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.egen-sa-head .egen-label {
  margin-bottom: 0.85rem;
}
.egen-sa-head h2 {
  position: relative;
  margin: 0 0 1rem;
  padding-bottom: 0.95rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.egen-sa-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}
.egen-sa-head p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.egen-features {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .egen-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .egen-features.is-two {
    grid-template-columns: 1fr 1fr;
  }
}

.egen-feature {
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: 1.15rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2, 11, 20, 0.2);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.egen-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-rgb), 0.55);
  box-shadow: 0 22px 44px rgba(var(--brand-rgb), 0.12);
}
.egen-feature h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.egen-feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
.egen-feature p + p {
  margin-top: 0.75rem;
}

.egen-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.15rem;
  color: var(--brand);
}
.egen-feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.egen-sa-loop {
  padding: 3.5rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(var(--brand-rgb), 0.16), transparent 55%), var(--navy-elevated);
  border: 1px solid var(--line);
}
.egen-sa-loop h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
}
.egen-sa-loop > p {
  margin: 0 auto 2.25rem;
  max-width: 38rem;
  color: var(--muted);
}

.egen-sa-steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .egen-sa-steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-sa-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.egen-sa-step h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.egen-sa-step-num {
  width: 4.35rem;
  height: 4.35rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-on);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(var(--brand-rgb), 0.35);
}

.egen-why-list {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .egen-why-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-why-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem 1.15rem;
  border-radius: 0.85rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.egen-why-item:hover {
  border-color: rgba(var(--brand-rgb), 0.55);
  background: rgba(var(--brand-rgb), 0.08);
}
.egen-why-item svg {
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--brand);
}
.egen-why-item span {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
}
@media (min-width: 900px) {
  .egen-why-item.is-wide {
    grid-column: 1/-1;
  }
}

.egen-industries {
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
  border-radius: 1.15rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  box-shadow: 0 12px 32px rgba(2, 11, 20, 0.18);
}
.egen-industries h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
}
.egen-industries > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.egen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.egen-tags.is-center {
  justify-content: center;
}

.egen-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.1);
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.egen-outcomes {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .egen-outcomes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-outcomes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-outcome {
  height: 100%;
  padding: 1.75rem 1.35rem;
  text-align: center;
  border-radius: 1.25rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid rgba(var(--brand-rgb), 0.22);
}
.egen-outcome h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
}
.egen-outcome p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.egen-outcomes.has-icons .egen-outcome {
  text-align: left;
  padding: 1.5rem;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(2, 11, 20, 0.2);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}
.egen-outcomes.has-icons .egen-outcome h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.3s ease;
}
.egen-outcomes.has-icons .egen-outcome p {
  font-size: 0.92rem;
}
.egen-outcomes.has-icons .egen-outcome:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--brand-rgb), 0.55);
  box-shadow: 0 22px 44px rgba(var(--brand-rgb), 0.12);
}
.egen-outcomes.has-icons .egen-outcome:hover h3 {
  color: var(--brand);
}
.egen-outcomes.has-icons .egen-outcome:hover .egen-outcome-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--brand);
  color: var(--brand-on);
}

.egen-outcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.15rem;
  border-radius: 0.75rem;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}
.egen-outcome-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.egen-outcome-note {
  margin: 1.35rem 0 0;
  text-align: center;
  font-weight: 700;
  color: var(--brand);
}

.egen-engine {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 2rem;
  border-radius: 2.25rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(var(--brand-rgb), 0.1), transparent 40%), radial-gradient(circle at 90% 80%, rgba(var(--brand-rgb), 0.08), transparent 40%), var(--navy-elevated);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(2, 11, 20, 0.25);
}
.egen-engine::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(var(--brand-rgb), 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--brand-rgb), 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
@media (min-width: 900px) {
  .egen-engine {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 4.5rem 3.5rem;
  }
}
.egen-engine.is-center {
  grid-template-columns: 1fr;
  text-align: center;
}
.egen-engine.is-center .egen-engine-copy p {
  margin-inline: auto;
}
.egen-engine.is-center .egen-hero-btns {
  justify-content: center;
}

.egen-engine-copy {
  position: relative;
  z-index: 2;
}
.egen-engine-copy .egen-label {
  display: block;
  margin-bottom: 0.85rem;
}
.egen-engine-copy h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.egen-engine-copy p {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.egen-engine-visual {
  position: relative;
  z-index: 2;
  min-height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.egen-pulse {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.28;
  animation: egen-pulse 4s infinite alternate;
}

.egen-rocket {
  position: absolute;
  color: var(--brand);
  filter: drop-shadow(0 10px 15px rgba(var(--brand-rgb), 0.35));
  animation: egen-sa-float 6s ease-in-out infinite;
}
.egen-rocket svg {
  width: 5.5rem;
  height: 5.5rem;
}

@keyframes egen-pulse {
  from {
    transform: scale(0.8);
    opacity: 0.12;
  }
  to {
    transform: scale(1.2);
    opacity: 0.32;
  }
}
@keyframes egen-sa-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .egen-pulse,
  .egen-rocket {
    animation: none;
  }
}
@media (max-width: 768px) {
  .egen-sa-hero {
    text-align: center;
    padding-top: 7rem;
  }
  .egen-sa-hero .egen-sa-lead,
  .egen-sa-hero .egen-sa-sub {
    margin-inline: auto;
  }
  .egen-sa-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }
  #egen-sa-canvas {
    height: 18rem;
  }
  .egen-sa-loop,
  .egen-engine {
    padding: 2rem 1.25rem;
  }
}
@media (min-width: 900px) {
  .egen-why-list.is-quad,
  .egen-outcomes.is-four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.egen-er-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--line);
}
.egen-er-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.egen-er-lead {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.egen-er-lead strong {
  color: #fff;
  font-weight: 700;
}

.egen-er-sub {
  margin: 0 0 0.85rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.egen-er-sub strong {
  color: var(--ink);
  font-weight: 700;
}
.egen-er-sub:last-of-type {
  margin-bottom: 2rem;
}

.egen-er-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.egen-er-diagram,
.egen-st-diagram,
.egen-ly-diagram {
  width: 100%;
  max-width: 30rem;
  height: auto;
  color: var(--brand);
}
.egen-er-diagram [stroke="#97C13C"],
.egen-st-diagram [stroke="#97C13C"],
.egen-ly-diagram [stroke="#97C13C"] {
  stroke: currentColor;
}
.egen-er-diagram [fill="#97C13C"],
.egen-st-diagram [fill="#97C13C"],
.egen-ly-diagram [fill="#97C13C"] {
  fill: currentColor;
}
.egen-er-diagram circle[fill="#ffffff"],
.egen-er-diagram rect[fill="#ffffff"],
.egen-st-diagram circle[fill="#ffffff"],
.egen-st-diagram rect[fill="#ffffff"],
.egen-ly-diagram circle[fill="#ffffff"],
.egen-ly-diagram rect[fill="#ffffff"] {
  fill: var(--navy-elevated);
}
.egen-er-diagram circle[fill="#2d3436"],
.egen-st-diagram circle[fill="#2d3436"],
.egen-ly-diagram circle[fill="#2d3436"] {
  fill: var(--navy-deep);
}
.egen-er-diagram text[fill="#2d3436"],
.egen-st-diagram text[fill="#2d3436"],
.egen-ly-diagram text[fill="#2d3436"] {
  fill: var(--ink);
}
.egen-er-diagram [stroke="#dce8c8"],
.egen-er-diagram [stroke="#e8ede0"],
.egen-st-diagram [stroke="#dce8c8"],
.egen-st-diagram [stroke="#e8ede0"],
.egen-ly-diagram [stroke="#dce8c8"],
.egen-ly-diagram [stroke="#e8ede0"] {
  stroke: rgba(var(--brand-rgb), 0.28);
}

.hub-pulse circle {
  animation: egen-er-hub 4.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.orbit-ring {
  animation: egen-er-orbit 22s linear infinite;
}

.spoke-line {
  animation: egen-er-spoke 2.6s linear infinite;
}

@keyframes egen-er-hub {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.65;
  }
}
@keyframes egen-er-orbit {
  to {
    stroke-dashoffset: -120;
  }
}
@keyframes egen-er-spoke {
  to {
    stroke-dashoffset: -21;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hub-pulse circle,
  .orbit-ring,
  .spoke-line {
    animation: none;
  }
}
.egen-er-stats {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .egen-er-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-er-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-er-stat {
  height: 100%;
  padding: 2rem 1.35rem;
  text-align: center;
  border-radius: 1.25rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2, 11, 20, 0.2);
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.egen-er-stat:hover {
  border-color: rgba(var(--brand-rgb), 0.55);
  transform: translateY(-6px);
}

.egen-er-stat-val {
  display: block;
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}

.egen-er-stat-lbl {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.egen-er-stat p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.egen-er-speed-copy {
  margin-bottom: 1.75rem;
}
.egen-er-speed-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800;
}

.egen-er-modules,
.egen-er-info {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .egen-er-modules,
  .egen-er-info {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .egen-er-info {
    grid-template-columns: 1fr 1fr;
  }
}

.egen-er-module {
  height: 100%;
  padding: 1.75rem;
  border-radius: 1.15rem;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  box-shadow: 0 10px 30px rgba(2, 11, 20, 0.18);
}
.egen-er-module h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 800;
}
.egen-er-module p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.egen-er-info-card {
  height: 100%;
  padding: 2.25rem 1.75rem;
  border-radius: 1.25rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
}
.egen-er-info-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
  font-weight: 800;
}
.egen-er-info-card h3 svg {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: var(--brand);
}
.egen-er-info-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.egen-er-info-card p strong {
  color: var(--ink);
}

.egen-er-arch {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .egen-er-arch {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.egen-er-arch h2 {
  position: relative;
  margin: 0 0 1.15rem;
  padding-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
}
.egen-er-arch h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}
.egen-er-arch > div > p {
  margin: 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.egen-er-arch-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.5rem 0;
  max-width: 32rem;
}

.egen-er-arch-highlight {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.45;
}
.egen-er-arch-highlight span {
  color: var(--brand);
}

.egen-er-arch-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.egen-er-arch-visual .egen-er-diagram {
  max-width: 28.75rem;
}

.egen-er-note {
  margin: 2rem 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
}

@media (max-width: 768px) {
  .egen-er-hero {
    text-align: center;
    padding-top: 7rem;
  }
  .egen-er-lead,
  .egen-er-sub {
    margin-inline: auto;
  }
  .egen-er-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .egen-er-diagram,
  .egen-st-diagram,
  .egen-ly-diagram {
    max-width: 22rem;
    margin-inline: auto;
  }
  .egen-er-arch h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .egen-er-arch {
    text-align: center;
  }
  .egen-er-arch-rule {
    margin-inline: auto;
  }
}
.egen-st-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--line);
}
.egen-st-hero .container {
  position: relative;
  z-index: 2;
}
.egen-st-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.egen-st-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.egen-st-diagram .flow-line {
  animation: egen-st-dash 10s linear infinite;
}

@keyframes egen-st-dash {
  to {
    stroke-dashoffset: -80;
  }
}
@media (prefers-reduced-motion: reduce) {
  .egen-st-diagram .flow-line {
    animation: none;
  }
}
.egen-st-cycle {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .egen-st-cycle {
    grid-template-columns: 1fr 1fr;
  }
}

.egen-st-cycle-panel {
  height: 100%;
  padding: 2.15rem 1.85rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(16, 40, 64, 0.55);
}

.egen-st-cycle-after {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 0%, rgba(var(--brand-rgb), 0.22), transparent 12rem), var(--navy-elevated);
}
.egen-st-cycle-after .egen-st-cycle-kicker {
  color: var(--brand);
}

.egen-st-cycle-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.egen-st-cycle-intro {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.65;
}

.egen-st-cycle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  counter-reset: cycle;
}

.egen-st-cycle-list li {
  counter-increment: cycle;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.egen-st-cycle-list li::before {
  content: counter(cycle, decimal-leading-zero);
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
}

.egen-st-cycle-again {
  margin: 1.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(var(--brand-rgb), 0.28);
  font-weight: 700;
  color: var(--ink);
}

.egen-st-cycle-stat {
  position: relative;
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}

.egen-st-cycle-lbl {
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.egen-st-cycle-after p:not(.egen-st-cycle-lbl) {
  position: relative;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.egen-st-cycle-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
}
.egen-st-cycle-mini div {
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.egen-st-cycle-mini strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--brand);
}
.egen-st-cycle-mini span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.egen-st-note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.egen-st-cost {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .egen-st-cost {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.egen-st-cost-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.egen-st-cost-em {
  font-weight: 700;
  color: var(--ink) !important;
}

.egen-st-quotes {
  display: grid;
  gap: 1rem;
}

.egen-st-quote {
  padding: 1.5rem 1.4rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(16, 40, 64, 0.55);
}
.egen-st-quote span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.egen-st-quote p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}
.egen-st-quote.is-new {
  border-color: rgba(var(--brand-rgb), 0.35);
  background: rgba(var(--brand-rgb), 0.1);
}
.egen-st-quote.is-new span {
  color: var(--brand);
}

.egen-st-use-lead,
.egen-st-use-close {
  margin: 0 auto 1.5rem;
  max-width: 44rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.egen-st-use-close {
  margin: 1.5rem auto 0;
}

.egen-st-checks {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .egen-st-checks {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .egen-st-checks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-st-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  font-weight: 600;
  color: var(--ink);
}
.egen-st-check svg {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--brand);
}

.egen-st-know-intro {
  margin: 0 auto 2rem;
  max-width: 40rem;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.egen-st-know {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .egen-st-know {
    grid-template-columns: 1fr 1fr;
  }
}

.egen-st-know-panel {
  padding: 2rem 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(16, 40, 64, 0.55);
}
.egen-st-know-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
}
.egen-st-know-panel > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.egen-st-know-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .egen-st-know-list {
    grid-template-columns: 1fr 1fr;
  }
}
.egen-st-know-list li {
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
  font-size: 0.92rem;
  font-weight: 600;
}

.egen-st-chain {
  display: grid;
  gap: 0;
}

.egen-st-chain-step {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.9rem;
  align-items: start;
}
.egen-st-chain-step p {
  margin: 0 0 1.15rem;
  padding-top: 0.05rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}
.egen-st-chain-step:last-child p {
  margin-bottom: 0;
}

.egen-st-chain-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.egen-st-chain-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.18);
}

.egen-st-chain-line {
  flex: 1;
  width: 1px;
  min-height: 1.4rem;
  background: rgba(var(--brand-rgb), 0.35);
}

.egen-st-know-close {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.egen-st-know-close span {
  color: var(--brand);
}

.egen-st-rev-copy {
  margin: 0 auto 0.75rem;
  max-width: 44rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.egen-st-rev-lead {
  margin: 0 auto 2rem;
  max-width: 44rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.egen-cta-stats {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
}

.egen-cta-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(2, 11, 20, 0.45);
  border: 1px solid var(--line);
}
.egen-cta-stat.is-active {
  border-color: rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.1);
}
.egen-cta-stat strong {
  flex-shrink: 0;
  min-width: 3.4rem;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 800;
}
.egen-cta-stat h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.egen-cta-stat p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}

.egen-engine-copy .egen-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.egen-engine-copy p strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 768px) {
  .egen-st-hero {
    text-align: center;
    padding-top: 7rem;
  }
  .egen-st-hero .egen-er-lead,
  .egen-st-hero .egen-er-sub {
    margin-inline: auto;
  }
  .egen-st-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .egen-st-cycle-list {
    grid-template-columns: 1fr;
  }
}
.egen-ly-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--line);
}
.egen-ly-hero .container {
  position: relative;
  z-index: 2;
}
.egen-ly-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.egen-ly-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.egen-ly-diagram .ring-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: egen-ly-ring 2.4s ease-out infinite;
}

.egen-ly-diagram .ring-2 {
  animation-delay: 0.4s;
}

.egen-ly-diagram .ring-3 {
  animation-delay: 0.8s;
}

.egen-ly-diagram .wave-bar {
  transform-origin: center;
  transform-box: fill-box;
  animation: egen-ly-wave 1.1s ease-in-out infinite;
}

@keyframes egen-ly-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  65% {
    opacity: 0.55;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}
@keyframes egen-ly-wave {
  0%, 100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .egen-ly-diagram .ring-pulse,
  .egen-ly-diagram .wave-bar {
    animation: none;
  }
}
@media (min-width: 900px) {
  .egen-hr-stat-grid.is-three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.egen-ly-stat-desc {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.egen-ly-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.egen-ly-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.egen-ly-list li svg {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.18rem;
  color: var(--brand);
}

.egen-ly-data {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .egen-ly-data {
    grid-template-columns: 1fr 1fr;
  }
}

.egen-ly-data-panel {
  padding: 2.15rem 1.85rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(16, 40, 64, 0.55);
}
.egen-ly-data-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
}
.egen-ly-data-panel p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.egen-ly-data-panel p:last-child {
  margin-bottom: 0;
}

.egen-ly-deploy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.egen-ly-intro {
  margin: 0 auto 0.85rem;
  max-width: 46rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.egen-ly-lead {
  margin: 0 auto 2rem;
  max-width: 46rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.egen-ly-trust {
  margin-top: 2.5rem;
  padding: 2.15rem 1.85rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  background: rgba(var(--brand-rgb), 0.08);
}
.egen-ly-trust h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
  font-weight: 800;
}
.egen-ly-trust h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
}
.egen-ly-trust p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.egen-ly-trust p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .egen-ly-hero {
    text-align: center;
    padding-top: 7rem;
  }
  .egen-ly-hero .egen-er-lead,
  .egen-ly-hero .egen-er-sub {
    margin-inline: auto;
  }
  .egen-ly-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
.egen-eh-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--line);
}
.egen-eh-hero .container {
  position: relative;
  z-index: 2;
}
.egen-eh-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.egen-eh-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.egen-eh-hero .egen-hero-btns {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .egen-eh-hero {
    text-align: center;
    padding-top: 7rem;
  }
  .egen-eh-hero .egen-er-lead,
  .egen-eh-hero .egen-er-sub {
    margin-inline: auto;
  }
  .egen-eh-hero .btn-primary,
  .egen-eh-hero .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .egen-eh-hero .egen-hero-btns {
    justify-content: center;
  }
}
/* eGRevenue AI */
.egen-intro-copy {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.egen-intro-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.egen-intro-copy p:last-child {
  margin-bottom: 0;
}

.egen-formula {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.7rem;
  margin-top: 1.75rem;
}
.egen-formula span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(16, 40, 64, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ink);
}
.egen-formula i {
  color: var(--brand);
  font-style: normal;
  font-weight: 800;
}

.egen-rv-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .egen-rv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.egen-rv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: 1.35rem;
  background: radial-gradient(circle at 100% 0%, rgba(var(--brand-rgb), 0.12), transparent 46%), rgba(16, 40, 64, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(2, 11, 20, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.egen-rv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-rgb), 0.5);
  box-shadow: 0 22px 44px rgba(var(--brand-rgb), 0.12);
}
.egen-rv-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.egen-rv-card > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.egen-rv-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.05rem;
}

.egen-rv-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-top: 0.1rem;
  border-radius: 0.8rem;
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--brand);
}
.egen-rv-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.egen-rv-tagline {
  margin: 0 !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  line-height: 1.4 !important;
}

.egen-rv-caps-label {
  margin: 0 0 0.55rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand) !important;
}

.egen-rv-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}
.egen-rv-list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.35rem;
  border-bottom: 1px solid rgba(232, 238, 244, 0.08);
  font-size: 0.9rem;
  font-weight: 550;
  line-height: 1.4;
  color: rgba(232, 238, 244, 0.9);
}
.egen-rv-list li:last-child {
  border-bottom: 0;
}
.egen-rv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.18);
}

.egen-rv-value {
  padding: 1rem 1.05rem;
  border-radius: 0.9rem;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.28);
}
.egen-rv-value strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.egen-rv-value p {
  margin: 0 !important;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}

.egen-journey {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 58rem;
  margin: 0 auto;
}
.egen-journey span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 650;
}
.egen-journey i {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-style: normal;
  font-weight: 700;
}

.egen-know {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2rem;
}
@media (min-width: 1100px) {
  .egen-know {
    grid-template-columns: repeat(5, 1fr);
  }
}
.egen-know p {
  margin: 0;
  padding: 0.95rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(16, 40, 64, 0.72);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
}
.egen-know p strong {
  color: var(--brand);
  display: block;
  margin-bottom: 0.2rem;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.ir-section {
  position: relative;
  background: radial-gradient(ellipse 70% 45% at 0% 0%, rgba(var(--brand-rgb), 0.1), transparent 55%), linear-gradient(180deg, #0d2740 0%, #0a1f33 100%);
}

.ir-top {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  align-items: end;
}
@media (min-width: 900px) {
  .ir-top {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
}
.ir-top .section-title {
  margin-bottom: 0;
}
.ir-top .section-lead {
  margin: 0;
}

.ir-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .ir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .ir-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.ir-grid-item {
  display: flex;
  min-width: 0;
}
@media (min-width: 768px) {
  .ir-grid-item.is-latest {
    grid-column: 1/-1;
  }
}
@media (min-width: 900px) {
  .ir-grid-item.is-latest {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .ir-grid-item.is-full {
    grid-column: 1/-1;
  }
}

.ir-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
  text-decoration: none;
  color: inherit;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.ir-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  z-index: 2;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ir-card:hover {
  background: rgba(var(--brand-rgb), 0.08);
}
.ir-card:hover::before {
  width: 100%;
}
.ir-card:hover .ir-card-year,
.ir-card:hover .ir-card-body h3,
.ir-card:hover .ir-card-action {
  color: var(--brand);
}
@media (min-width: 768px) {
  .ir-card.is-latest {
    flex-direction: row;
  }
  .ir-card.is-latest .ir-card-cover {
    flex: 1.05 1 0;
    height: auto;
    min-height: 16.5rem;
  }
  .ir-card.is-latest .ir-card-body {
    flex: 0.95 1 0;
    justify-content: center;
    padding: 1.85rem 2rem;
  }
  .ir-card.is-latest .ir-card-body h3 {
    font-size: 1.45rem;
  }
}

.ir-card-cover {
  --cover-img: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200&q=80");
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 220px;
  padding: 1.5rem 1.35rem;
  overflow: hidden;
  background: var(--navy-mid);
}
.ir-card-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cover-img) center/cover no-repeat;
  filter: grayscale(1);
  opacity: 0.16;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  z-index: 2;
}
.ir-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 21, 37, 0.94) 0%, rgba(10, 28, 46, 0.88) 38%, rgba(10, 28, 46, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 900px) {
  .ir-card-cover {
    height: 240px;
  }
}

.ir-card:hover .ir-card-cover::before {
  transform: scale(1.06);
  opacity: 0.22;
}

.ir-card-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.ir-card-year {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  transition: color 0.3s ease;
}

.ir-card.is-latest .ir-card-year {
  font-size: clamp(2.35rem, 4vw, 3.4rem);
}

.ir-card-year.is-date {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.ir-card.is-latest .ir-card-year.is-date {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.ir-card-kind {
  position: relative;
  z-index: 2;
  margin: 0.45rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.ir-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.35rem 1.65rem;
}
.ir-card-body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s ease;
}

.ir-card-meta {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.ir-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.25s ease, gap 0.3s ease;
}

.ir-card:hover .ir-card-action {
  gap: 0.65rem;
}

.mega-menu-item[aria-current=page] {
  background: rgba(var(--brand-rgb), 0.1);
}
.mega-menu-item[aria-current=page] h4 {
  color: var(--brand);
}

.mobile-nav-sub a[aria-current=page] {
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
}

.ir-contact {
  display: grid;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
}
@media (min-width: 900px) {
  .ir-contact {
    grid-template-columns: minmax(19rem, 0.78fr) 1.22fr;
    align-items: stretch;
  }
}

.ir-contact-who {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.6rem 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .ir-contact-who {
    padding: 2.15rem 2rem 1.85rem 2.15rem;
    border-bottom: 0;
  }
}
.ir-contact-who .section-label {
  margin-bottom: 0.7rem;
  color: var(--muted);
}
.ir-contact-who h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.ir-contact-who p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.ir-contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}
@media (min-width: 700px) {
  .ir-contact-channels {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .ir-contact-channels {
    border-left: 1px solid var(--line);
  }
}

.ir-contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
  min-width: 0;
  min-height: 10.25rem;
  height: 100%;
  padding: 1.7rem 1.35rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  .ir-contact-item {
    min-height: 11.5rem;
    padding: 2rem 1.55rem;
    border-right: 1px solid var(--line);
  }
  .ir-contact-item:nth-child(2n) {
    border-right: 0;
  }
  .ir-contact-item:nth-child(n+3) {
    border-bottom: 0;
  }
}
.ir-contact-item:last-child {
  border-bottom: 0;
}

a.ir-contact-item {
  cursor: pointer;
  transition: background 0.25s ease;
}
a.ir-contact-item:hover, a.ir-contact-item:focus-visible {
  background: rgba(var(--brand-rgb), 0.08);
}
a.ir-contact-item:hover .ir-contact-v, a.ir-contact-item:focus-visible .ir-contact-v {
  color: var(--brand);
}

.ir-contact-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand);
  line-height: 0;
}
.ir-contact-icon svg {
  display: block;
  width: 2.3rem;
  height: 2.3rem;
  flex-shrink: 0;
}

.ir-contact-item--email .ir-contact-icon {
  color: #13b3e3;
}

.ir-contact-item--phone .ir-contact-icon {
  color: #97c13c;
}

.ir-contact-item--fax .ir-contact-icon {
  color: var(--muted);
}

.ir-contact-item--address .ir-contact-icon {
  color: #e8a54b;
}

.ir-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.ir-contact-k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.ir-contact-v {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.5;
  color: var(--ink);
  overflow-wrap: break-word;
  transition: color 0.2s ease;
}

.ir-contact-cta {
  margin-top: 1.35rem;
}
@media (min-width: 900px) {
  .ir-contact-cta {
    margin-top: auto;
    padding-top: 2.25rem;
  }
}
.ir-contact-cta .btn-primary {
  max-width: 100%;
}

/* ═══════════════════════════════════════════
   eGeneration — Enterprise Homepage
   Source: assets/scss/site.scss + partials/
   Compile: npm run css
   ═══════════════════════════════════════════ */
.page-hero.is-career h1 {
  max-width: 20ch;
}

.career-jump a[href="#roles"] {
  white-space: nowrap;
}

#roles,
#culture,
#reviews,
#perks,
#apply,
#faq,
#people {
  scroll-margin-top: 8.25rem;
}

.career-culture {
  padding-top: 0;
  background: #071a2c;
}

.career-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.career-collage {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 10.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .career-collage {
    grid-template-columns: 0.95fr 1.15fr 1.4fr 0.95fr;
    grid-template-rows: minmax(12rem, 30vh) minmax(12rem, 30vh);
    grid-auto-rows: unset;
    height: min(38rem, 70vh);
    gap: 0.4rem;
  }
}

.career-collage-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-elevated);
}
.career-collage-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  transition: transform 0.45s ease;
}
.career-collage-item:hover > img {
  transform: scale(1.04);
}
@media (min-width: 768px) {
  .career-collage-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .career-collage-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (min-width: 768px) {
  .career-collage-item:nth-child(5) {
    grid-column: 4;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .career-collage-item:nth-child(6) {
    grid-column: 4;
    grid-row: 2;
  }
}
.career-collage-item.is-badge {
  grid-column: 1/-1;
  min-height: 16rem;
  order: -1;
}
@media (min-width: 768px) {
  .career-collage-item.is-badge {
    order: 0;
    min-height: 0;
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
.career-collage-item.is-tall {
  grid-column: 1/-1;
  min-height: 13rem;
}
@media (min-width: 768px) {
  .career-collage-item.is-tall {
    min-height: 0;
    grid-column: 3;
    grid-row: 1/span 2;
  }
}

.career-collage-badge {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.career-collage-badge::before,
.career-collage-badge img {
  grid-area: 1/1;
}
.career-collage-badge::before {
  content: "";
  width: min(72%, 14.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(7, 18, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.career-collage-badge img {
  position: relative;
  inset: auto;
  width: min(46%, 9rem);
  height: auto;
  max-width: 9rem;
  object-fit: contain;
  transform: none;
  z-index: 1;
}

.career-collage-item.is-badge:hover > img {
  transform: scale(1.04);
}

.career-value-strip {
  display: grid;
  gap: 1.75rem 1.5rem;
}
@media (min-width: 768px) {
  .career-value-strip {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .career-value-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.75rem;
  }
}
.career-value-strip h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}
.career-value-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.career-perks {
  background: radial-gradient(ellipse 60% 45% at 0% 100%, rgba(var(--brand-rgb), 0.08), transparent 55%), linear-gradient(180deg, #0a1f33 0%, var(--navy) 100%);
}

.career-perks-split {
  display: grid;
  gap: 2.75rem;
}
@media (min-width: 900px) {
  .career-perks-split {
    grid-template-columns: minmax(0, 1.4fr) minmax(17.5rem, 0.72fr);
    gap: 4rem;
    align-items: start;
  }
}

.career-perks-main .section-title {
  margin-bottom: 1.1rem;
}
.career-perks-main .section-lead {
  margin: 0;
  max-width: none;
}

.career-perk-list {
  list-style: none;
  margin: 1.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.05rem;
}
.career-perk-list li {
  position: relative;
  padding-left: 1.15rem;
}
.career-perk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.career-perk-list strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.career-perk-list span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.career-perks-close {
  margin: 2rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.career-perks-close a {
  color: var(--brand);
  font-weight: 650;
}

.career-glassdoor-aside {
  padding: 1.5rem 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #071a2c 0%, #0a2034 100%);
}
@media (min-width: 900px) {
  .career-glassdoor-aside {
    position: sticky;
    top: 8.5rem;
  }
}
.career-glassdoor-aside .section-label {
  margin-bottom: 0.85rem;
}
.career-glassdoor-aside .career-rating-score {
  margin-bottom: 0.4rem;
}
.career-glassdoor-aside .career-stars {
  margin-bottom: 0.55rem;
}
.career-glassdoor-aside .btn-ghost {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.career-aside-count {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.career-rating-compact {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}
.career-rating-compact li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.career-rating-compact strong {
  color: var(--ink);
  font-weight: 700;
}

.career-review-slider {
  margin-top: 0.25rem;
}

.career-review-viewport {
  overflow: hidden;
}

.career-review-track {
  display: flex;
  transition: transform 0.35s ease;
}

.career-rating-score {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.career-rating-score strong {
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
}

.career-rating-score em {
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 650;
}

.career-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #f5c518;
}

.career-stars .is-empty {
  opacity: 0.28;
}

.career-star-partial {
  position: relative;
  display: inline-grid;
  color: #f5c518;
}
.career-star-partial > svg {
  opacity: 0.28;
  grid-area: 1/1;
}
.career-star-partial > span {
  grid-area: 1/1;
  width: var(--fill);
  overflow: hidden;
}

.career-review-card {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 0.1rem 0.15rem;
  background: none;
  border: 0;
  border-radius: 0;
}

.career-review-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.career-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.career-review-score {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.career-review-meta .career-stars {
  margin: 0;
}

.career-review-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.career-review-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.career-review-nav span {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.career-review-nav button {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.career-review-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.career-roles {
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--brand-rgb), 0.08), transparent 55%), var(--navy);
}

.career-roles-top {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 900px) {
  .career-roles-top {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    margin-bottom: 2rem;
  }
}
.career-roles-top .section-title {
  margin-bottom: 0;
}

.career-roles-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.15rem;
}

.career-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.career-filter {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42rem 0.55rem 0.42rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.career-filter span {
  min-width: 1.45rem;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: var(--muted);
}
.career-filter:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
}
.career-filter[aria-pressed=true] {
  border-color: transparent;
  background: var(--brand);
  color: var(--brand-on);
}
.career-filter[aria-pressed=true] span {
  background: rgba(0, 0, 0, 0.16);
  color: inherit;
}

.career-search {
  position: relative;
  flex: 1 1 14rem;
  max-width: 20rem;
  min-width: 12rem;
}
@media (max-width: 768px) {
  .career-search {
    flex-basis: 100%;
    max-width: none;
  }
}
.career-search svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.career-search input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--navy-elevated);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
}
.career-search input::placeholder {
  color: var(--muted);
}
.career-search input:focus {
  outline: none;
  border-color: rgba(var(--brand-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
}

.career-roles-status {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.career-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--navy-elevated);
}

.career-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.career-table thead th {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 26, 44, 0.92);
  text-align: left;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.career-table thead th:first-child {
  width: 42%;
  padding-left: 1.25rem;
}
.career-table thead th:last-child {
  width: 4.5rem;
  padding-right: 0.85rem;
  text-align: center;
}
.career-table thead th button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.career-table thead th[aria-sort=ascending] .career-sort-icon, .career-table thead th[aria-sort=descending] .career-sort-icon {
  color: var(--brand);
}
.career-table thead th[aria-sort=descending] .career-sort-icon {
  transform: scaleY(-1);
}
.career-table tbody tr {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.2s ease;
}
.career-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.045);
}
.career-table tbody tr:last-child {
  border-bottom: 0;
}
.career-table tbody tr:hover, .career-table tbody tr:focus-within {
  background: rgba(var(--brand-rgb), 0.1);
}
.career-table tbody tr:hover .career-table-title, .career-table tbody tr:focus-within .career-table-title {
  color: var(--brand);
}
.career-table tbody tr:hover .career-table-go, .career-table tbody tr:focus-within .career-table-go {
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.16);
}
.career-table tbody.is-ready tr {
  background: transparent;
}
.career-table tbody.is-ready tr.is-alt {
  background: rgba(255, 255, 255, 0.045);
}
.career-table tbody.is-ready tr:hover, .career-table tbody.is-ready tr:focus-within {
  background: rgba(var(--brand-rgb), 0.1);
}
.career-table tbody th,
.career-table tbody td {
  padding: 1.05rem 1rem;
  vertical-align: middle;
  text-align: left;
}
.career-table tbody th {
  padding-left: 1.25rem;
  font-weight: 400;
}
.career-table tbody td:last-child {
  position: relative;
  z-index: 3;
  padding-right: 0.85rem;
  text-align: center;
}

.career-sort-icon {
  opacity: 0.45;
  flex-shrink: 0;
}

.career-table-role {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
}
.career-table-role::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.career-table-title {
  display: block;
  width: 100%;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: left;
  transition: color 0.2s ease;
}

.career-table .career-job-summary {
  display: -webkit-box;
  width: 100%;
  text-align: left;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.career-table-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.career-table [data-col=location],
.career-table [data-col=type] {
  color: var(--muted);
  font-size: 0.86rem;
}

.career-table-go {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.career-table-go svg {
  display: block;
}
.career-table-go:hover, .career-table-go:focus-visible {
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.22);
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.45);
  transform: scale(1.06);
}
.career-table-go:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--navy), 0 0 0 4px var(--brand);
}

.career-table tbody tr:hover .career-table-go:hover,
.career-table tbody tr:focus-within .career-table-go:hover,
.career-table tbody tr:focus-within .career-table-go:focus-visible {
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.22);
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.45);
}

.career-table-row.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .career-table {
    table-layout: auto;
  }
  .career-table thead {
    display: none;
  }
  .career-table,
  .career-table tbody,
  .career-table tr,
  .career-table th,
  .career-table td {
    display: block;
    width: 100%;
  }
  .career-table tbody tr {
    padding: 1.15rem 1.2rem 1.2rem;
  }
  .career-table tbody th,
  .career-table tbody td {
    padding: 0;
  }
  .career-table .career-job-summary {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .career-table [data-col=team],
  .career-table [data-col=location],
  .career-table [data-col=type] {
    display: inline-flex;
    width: auto;
    margin: 0.7rem 0.45rem 0 0;
    font-size: 0.78rem;
  }
  .career-table [data-col=location],
  .career-table [data-col=type] {
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }
  .career-table tbody td:last-child {
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .career-table-go {
    position: absolute;
    top: 0.95rem;
    right: 0.85rem;
  }
  .career-table-role {
    padding-right: 2.6rem;
  }
}
.career-job-list {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 900px) {
  .career-job-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.career-job {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--navy-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.career-job::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  z-index: 3;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.career-job:hover, .career-job:focus-visible {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: rgba(var(--brand-rgb), 0.08);
  transform: translateY(-3px);
}
.career-job:hover::before, .career-job:focus-visible::before {
  width: 100%;
}
.career-job:hover h3,
.career-job:hover .career-job-cover-title,
.career-job:hover .career-job-cta, .career-job:focus-visible h3,
.career-job:focus-visible .career-job-cover-title,
.career-job:focus-visible .career-job-cta {
  color: var(--brand);
}
.career-job:hover .career-job-cover::before, .career-job:focus-visible .career-job-cover::before {
  transform: scale(1.06);
  opacity: 0.22;
}
.career-job:hover .career-job-cta svg, .career-job:focus-visible .career-job-cta svg {
  transform: translateX(3px);
}
.career-job:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.career-job-cover {
  --cover-img: url("../images/career/culture-01.jpg");
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 200px;
  padding: 1.35rem 1.3rem;
  overflow: hidden;
  background: var(--navy-mid);
}
.career-job-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cover-img) center/cover no-repeat;
  filter: grayscale(1);
  opacity: 0.16;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  z-index: 2;
}
.career-job-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 21, 37, 0.94) 0%, rgba(10, 28, 46, 0.88) 38%, rgba(10, 28, 46, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 900px) {
  .career-job-cover {
    height: 220px;
  }
}

.career-job[data-dept=engineering] .career-job-cover {
  --cover-img: url("../images/career/culture-01.jpg");
}

.career-job[data-dept=sales] .career-job-cover {
  --cover-img: url("../images/career/culture-02.jpg");
}

.career-job[data-dept=operations] .career-job-cover {
  --cover-img: url("../images/career/culture-03.jpg");
}

.career-job[data-dept=finance] .career-job-cover {
  --cover-img: url("../images/career/culture-04.jpg");
}

.career-job[data-dept=people] .career-job-cover {
  --cover-img: url("../images/career/culture-05.jpg");
}

.career-job-cover-title,
.career-job-cover-kind {
  position: relative;
  z-index: 2;
  margin: 0;
}

.career-job-cover-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  transition: color 0.3s ease;
}

.career-job-cover-kind {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.career-job-body {
  flex: 1;
  padding: 1.35rem 1.3rem 0.85rem;
}

.career-job-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.career-job-kicker span {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.career-job-kicker span:first-child {
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--brand);
}
.career-job-kicker span:last-child {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.career-job h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0 0 0.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  transition: color 0.2s ease;
}

.career-job-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.career-job-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0.85rem 1.3rem 1.05rem;
  border-top: 1px solid var(--line);
}

.career-job-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.career-job-loc svg {
  flex-shrink: 0;
}

.career-job-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand);
}
.career-job-cta svg {
  transition: transform 0.2s ease;
}

.career-job.is-hidden {
  display: none;
}

.career-empty {
  display: none;
  margin: 0.5rem 0 0;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}
.career-empty a {
  color: var(--brand);
  font-weight: 650;
}

.career-apply {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--brand-rgb), 0.08), transparent 55%), linear-gradient(180deg, #071a2c 0%, var(--navy) 100%);
}

.career-apply-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .career-apply-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.career-apply-card {
  padding: 1.4rem 1.35rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--navy-elevated);
}

.career-apply-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.career-apply-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.career-apply-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.career-process {
  margin-top: 3.25rem;
}

.career-process-title {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.career-apply .svc-flow-icon::before {
  box-shadow: 0 0 0 5px var(--navy);
}

.job-hero h1 {
  max-width: 22ch;
  font-size: clamp(1.75rem, 4.2vw, 3.05rem);
}

.job-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .job-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(17rem, 0.7fr);
    gap: 2.25rem;
    align-items: start;
  }
}

.job-prose {
  min-width: 0;
}
.job-prose h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.7rem;
}
.job-prose p,
.job-prose li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.job-prose p {
  margin-bottom: 0.9rem;
}
.job-prose ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.job-prose li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: 0.5rem;
}
.job-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--brand);
}

.job-aside {
  position: relative;
}
@media (min-width: 900px) {
  .job-aside {
    position: sticky;
    top: 6.25rem;
  }
}

.job-aside-card {
  padding: 1.45rem 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--navy-elevated);
}

.job-aside-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.job-aside-card h2:not(:first-child) {
  margin-top: 1.35rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.job-aside-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.job-aside-meta {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.job-aside-meta li {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.job-aside-meta li strong {
  color: var(--ink);
  font-weight: 650;
  text-align: right;
}

.job-aside-actions {
  display: grid;
  gap: 0.65rem;
}

.job-aside-actions .btn-primary,
.job-aside-actions .btn-ghost {
  justify-content: center;
  width: 100%;
}

.job-aside-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-aside-benefits li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  position: relative;
  padding: 0.68rem 0 0.68rem 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}
.job-aside-benefits li:last-child {
  border-bottom: 0;
  padding-bottom: 0.1rem;
}
.job-aside-benefits li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0.12rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.85);
}

.job-aside-benefit-note {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .career-job,
  .career-job-cta svg,
  .career-job-cover::before,
  .career-table-go,
  .career-collage-item img,
  .career-review-track {
    transition: none;
  }
  .career-job:hover,
  .career-job:focus-visible {
    transform: none;
  }
  .career-job:hover .career-job-cta svg,
  .career-job:focus-visible .career-job-cta svg,
  .career-table-go:hover,
  .career-table-go:focus-visible {
    transform: none;
  }
  .career-job:hover .career-job-cover::before,
  .career-job:focus-visible .career-job-cover::before {
    transform: none;
  }
  .career-collage-item:hover > img {
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
