/* =========================================================
   MAXI TECH — Corporate Premium Home
   Platform-agnostic HTML/CSS/JS implementation
   ========================================================= */

.home-page {
  background: #05070d;
}

.home-page main {
  padding-top: 0;
  background: #f7f9fc;
}

.home-page main > section {
  scroll-margin-top: 88px;
}

.section-anchor {
  display: block;
  position: relative;
  top: -88px;
  width: 1px;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.home-page .container {
  max-width: 1240px;
}

.home-page .btn {
  min-height: 46px;
  border-radius: 6px;
  letter-spacing: 0;
}

.home-page .btn--primary {
  background: linear-gradient(135deg, #244cff 0%, #3a7bff 100%);
  box-shadow: 0 12px 32px rgba(36, 76, 255, 0.24);
}

.home-page .btn--primary:hover {
  box-shadow: 0 16px 40px rgba(56, 213, 255, 0.22);
}

.home-page .btn--outline {
  border-color: rgba(255, 255, 255, 0.22);
  color: #f7f9fc;
}

.home-page .btn--outline:hover {
  border-color: rgba(56, 213, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.site-header {
  background: rgba(5, 7, 13, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(5, 7, 13, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.logo-mark {
  gap: 0.75rem;
  letter-spacing: 0;
}

.header__logo .logo-mark__image {
  width: auto;
  height: 42px;
  max-width: none;
  object-fit: contain;
}

.footer__brand .logo-mark__image {
  height: 48px;
}

.logo-mark__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(56, 213, 255, 0.36);
  border-radius: 8px;
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(56, 213, 255, 0.12), rgba(36, 76, 255, 0.12)),
    rgba(255, 255, 255, 0.03);
}

.home-page .mobile-menu {
  background: rgba(5, 7, 13, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .mobile-menu a {
  color: rgba(247, 249, 252, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.home-page .mobile-menu a:first-child {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.home-page .mobile-menu a:hover,
.home-page .mobile-menu a:focus-visible {
  color: #38d5ff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #244cff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.dashboard-section .eyebrow,
.final-cta .eyebrow {
  color: #38d5ff;
}

.section-title {
  margin: 0;
  color: #07111f;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-lead {
  margin-top: 1.25rem;
  color: #526070;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading--wide {
  max-width: 920px;
}

.section-heading--inverted .section-title,
.section-heading--inverted .section-lead {
  color: #f7f9fc;
}

.section-heading--inverted .section-lead {
  color: rgba(247, 249, 252, 0.66);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }

  .section-lead {
    font-size: 1.125rem;
  }

  .section-heading {
    margin-bottom: 4rem;
  }
}

@media (min-width: 1180px) {
  .section-title {
    font-size: 3.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
  color: #f7f9fc;
  background:
    linear-gradient(125deg, rgba(36, 76, 255, 0.15), transparent 32%),
    linear-gradient(180deg, #05070d 0%, #07111f 58%, #0c1525 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(56, 213, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 213, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 76%, transparent);
  opacity: 0.65;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16rem;
  background: linear-gradient(180deg, transparent, #f7f9fc);
  pointer-events: none;
}

.hero__matrix {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(56, 213, 255, 0.08) 8.1%, transparent 8.2% 100%),
    linear-gradient(180deg, transparent 0 22%, rgba(36, 76, 255, 0.1) 22.1%, transparent 22.2% 100%);
  background-size: 360px 280px;
  opacity: 0.42;
  animation: matrixDrift 24s linear infinite;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.25rem;
  align-items: center;
  min-width: 0;
}

.hero__content {
  max-width: 780px;
  min-width: 0;
}

.hero__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.hero__subtitle {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: rgba(247, 249, 252, 0.72);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.hero__signal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 760px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero__signal-list div {
  padding: 1.125rem;
  background: rgba(5, 7, 13, 0.54);
}

.hero__signal-list dt {
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__signal-list dd {
  margin-top: 0.45rem;
  color: rgba(247, 249, 252, 0.72);
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero-system {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
}

.hero__visual-column {
  position: relative;
  min-width: 0;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(56, 213, 255, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.hero-system__brandmark {
  position: absolute;
  top: 1.55rem;
  right: 1.55rem;
  z-index: 1;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(56, 213, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.72;
  mix-blend-mode: screen;
  box-shadow: 0 16px 38px rgba(36, 76, 255, 0.18);
}

.hero-system__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.network-line {
  fill: none;
  stroke: url(#networkGradient);
  stroke-width: 1.5;
  stroke-dasharray: 7 13;
  opacity: 0.7;
  animation: networkFlow 11s linear infinite;
}

.network-line--two {
  animation-duration: 14s;
  opacity: 0.45;
}

.network-line--three {
  stroke-width: 1;
  opacity: 0.28;
  animation-duration: 18s;
}

.network-nodes circle {
  fill: #38d5ff;
  filter: drop-shadow(0 0 10px rgba(56, 213, 255, 0.75));
  animation: nodePulse 4s ease-in-out infinite;
}

.network-nodes circle:nth-child(2n) {
  fill: #3be28b;
  animation-delay: 600ms;
}

.network-nodes circle:nth-child(3n) {
  fill: #3a7bff;
  animation-delay: 1200ms;
}

.architecture-stack {
  position: absolute;
  right: 7%;
  bottom: 18%;
  width: 58%;
  transform: perspective(900px) rotateX(58deg) rotateZ(-32deg);
  transform-style: preserve-3d;
}

.stack-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  margin-top: -8px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(56, 213, 255, 0.22);
  border-radius: 8px;
  color: rgba(247, 249, 252, 0.82);
  background:
    linear-gradient(135deg, rgba(56, 213, 255, 0.18), rgba(36, 76, 255, 0.08)),
    rgba(7, 17, 31, 0.82);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  animation: stackFloat 8s ease-in-out infinite;
}

.stack-layer--mid {
  margin-left: 2rem;
  animation-delay: 800ms;
}

.stack-layer--base {
  margin-left: 4rem;
  animation-delay: 1600ms;
}

.stack-layer span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-layer b {
  font-size: 0.82rem;
  letter-spacing: 0;
}

.glass-panel {
  position: absolute;
  display: grid;
  gap: 0.65rem;
  min-width: 168px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  animation: panelFloat 9s ease-in-out infinite;
}

.mascot-card {
  position: absolute;
  right: 1.4rem;
  bottom: -3rem;
  z-index: 4;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  width: min(350px, calc(100% - 2.8rem));
  padding: 0.75rem;
  border: 1px solid rgba(56, 213, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.62)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

.mascot-card img {
  width: 86px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  object-fit: cover;
  object-position: 50% 18%;
}

.mascot-card figcaption {
  min-width: 0;
}

.mascot-card span {
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mascot-card strong {
  display: block;
  margin-top: 0.45rem;
  color: #f7f9fc;
  font-size: 0.98rem;
  line-height: 1.35;
}

.glass-panel--maturity {
  top: 12%;
  left: 7%;
}

.glass-panel--risk {
  top: 18%;
  right: 7%;
  animation-delay: 1200ms;
}

.glass-panel--roadmap {
  left: 10%;
  bottom: 10%;
  animation-delay: 2200ms;
}

.panel-label {
  color: rgba(247, 249, 252, 0.52);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-panel strong {
  color: #ffffff;
  font-size: 1.125rem;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  align-items: end;
  height: 50px;
}

.mini-bars span {
  display: block;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #38d5ff, #244cff);
}

.status-row {
  display: flex;
  gap: 0.35rem;
}

.status-row span {
  width: 28px;
  height: 6px;
  border-radius: 6px;
  background: #3be28b;
  opacity: 0.9;
}

.status-row span:nth-child(2) {
  background: #38d5ff;
}

.status-row span:nth-child(3) {
  background: #f5b84b;
}

.roadmap-lines {
  display: grid;
  gap: 0.45rem;
}

.roadmap-lines span {
  display: block;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.roadmap-lines span::before {
  content: "";
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #244cff, #38d5ff);
}

.roadmap-lines span:nth-child(2)::before {
  width: 54%;
}

.roadmap-lines span:nth-child(3)::before {
  width: 38%;
}

@media (min-width: 700px) {
  .hero__signal-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.8fr);
  }

  .hero__title {
    font-size: 4.45rem;
  }

  .hero__subtitle {
    font-size: 1.18rem;
  }
}

@media (min-width: 1320px) {
  .hero__title {
    font-size: 5rem;
  }
}

/* Metrics */
.metrics-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 2rem 0 5rem;
  background: #f7f9fc;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #dfe6ef;
}

.metric-card {
  min-height: 148px;
  padding: 1.5rem;
  background: #ffffff;
}

.metric-card strong {
  display: block;
  color: #07111f;
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1;
}

.metric-card span:last-child {
  display: block;
  max-width: 14rem;
  margin-top: 0.75rem;
  color: #526070;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (min-width: 620px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .metrics-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Editorial diagnosis */
.light-section {
  background: #f7f9fc;
}

.diagnosis-section,
.value-section,
.services-section,
.method-section,
.industries-section,
.insights-section {
  padding: 6rem 0;
}

.diagnosis-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-top: 1px solid #dfe6ef;
  border-bottom: 1px solid #dfe6ef;
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 76, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(56, 213, 255, 0.08), transparent 34%),
    #f7f9fc;
}

.diagnosis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  opacity: 0.7;
}

.diagnosis-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, #244cff, #38d5ff, #3be28b);
  transform: scaleX(var(--diagnosis-progress, 0));
  transform-origin: left;
  transition: transform 120ms linear;
}

.diagnosis-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: rgba(7, 17, 31, 0.035);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.85;
  text-transform: uppercase;
}

.diagnosis-backdrop span {
  position: absolute;
  white-space: nowrap;
}

.diagnosis-backdrop span:nth-child(1) {
  top: 4%;
  right: -8%;
}

.diagnosis-backdrop span:nth-child(2) {
  left: -6%;
  bottom: 18%;
}

.diagnosis-backdrop span:nth-child(3) {
  right: 4%;
  bottom: -3%;
}

.diagnosis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.diagnosis-title {
  margin: 0;
  color: #07111f;
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.diagnosis-title span {
  display: block;
  overflow-wrap: normal;
  opacity: var(--line-opacity, 0.18);
  transform: translate3d(0, var(--line-y, 24px), 0);
  transition:
    opacity 220ms linear,
    transform 220ms linear,
    color 220ms linear;
}

.diagnosis-title__accent {
  position: relative;
  display: inline;
  color: #244cff;
}

.diagnosis-title__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: rgba(56, 213, 255, 0.24);
  transform: scaleX(var(--diagnosis-progress, 0));
  transform-origin: left;
  z-index: -1;
}

.diagnosis-manifesto {
  max-width: 660px;
  margin-top: 2rem;
  color: #526070;
  font-size: 1.08rem;
  line-height: 1.75;
}

.diagnosis-body p {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.85;
}

.diagnosis-equation {
  display: grid;
  gap: 1px;
  margin-top: 1.75rem;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #dfe6ef;
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.08);
}

.diagnosis-equation div {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.diagnosis-equation span {
  color: #526070;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.diagnosis-equation strong {
  color: #244cff;
  font-size: 1.6rem;
  line-height: 1;
}

.diagnosis-equation div:first-child strong {
  color: #f05b5b;
}

.fragment-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(36, 76, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(36, 76, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(36, 76, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 42px 42px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.08);
}

.fragment-map span {
  position: relative;
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid #e5ebf3;
  border-radius: 6px;
  color: #07111f;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.07);
  transform: translate3d(var(--fragment-x, 0), var(--fragment-y, 0), 0) rotate(var(--fragment-r, 0deg));
  transition:
    transform 760ms var(--ease-out),
    border-color 360ms var(--ease-out),
    box-shadow 360ms var(--ease-out),
    background 360ms var(--ease-out);
}

.fragment-map span::before {
  content: attr(data-fragment);
  color: #244cff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fragment-map b {
  display: block;
  margin-top: 1.2rem;
  color: #07111f;
  font-size: 1.04rem;
}

.fragment-map small {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.fragment-map:hover span {
  border-color: rgba(36, 76, 255, 0.24);
  box-shadow: 0 24px 44px rgba(7, 17, 31, 0.1);
}

.fragment-map span:nth-child(1) { --fragment-x: -10px; --fragment-y: -8px; --fragment-r: -1.5deg; }
.fragment-map span:nth-child(2) { --fragment-x: 10px; --fragment-y: 14px; --fragment-r: 1.2deg; }
.fragment-map span:nth-child(3) { --fragment-x: -16px; --fragment-y: 8px; --fragment-r: 1deg; }
.fragment-map span:nth-child(4) { --fragment-x: 14px; --fragment-y: -8px; --fragment-r: -1deg; }
.fragment-map span:nth-child(5) { --fragment-x: -4px; --fragment-y: 18px; --fragment-r: 1.5deg; }
.fragment-map span:nth-child(6) { --fragment-x: 16px; --fragment-y: 2px; --fragment-r: -1.3deg; }

.diagnosis-body.revealed .fragment-map span,
.fragment-map:hover span {
  --fragment-x: 0;
  --fragment-y: 0;
  --fragment-r: 0deg;
}

@media (min-width: 920px) {
  .diagnosis-grid {
    grid-template-columns: 1.18fr 0.82fr;
    gap: 5rem;
  }

  .diagnosis-title {
    font-size: 4.4rem;
  }
}

@media (min-width: 1220px) {
  .diagnosis-title {
    font-size: 5.15rem;
  }
}

/* Pillars */
.value-section {
  color: #f7f9fc;
  background:
    linear-gradient(135deg, rgba(36, 76, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #0b1728 100%);
}

.value-section .section-title,
.value-section .section-lead {
  color: #f7f9fc;
}

.value-section .section-lead {
  color: rgba(247, 249, 252, 0.68);
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pillar-card {
  min-height: 360px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  transition: transform 320ms var(--ease-out), border-color 320ms var(--ease-out), background 320ms var(--ease-out);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 213, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(56, 213, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.pillar-card--featured {
  border-color: rgba(56, 213, 255, 0.34);
  box-shadow: 0 24px 60px rgba(36, 76, 255, 0.16);
}

.pillar-card__index {
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.pillar-card h3 {
  margin-top: 3rem;
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 0;
}

.pillar-card p {
  margin-top: 1rem;
  color: rgba(247, 249, 252, 0.68);
  line-height: 1.75;
}

.pillar-card ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pillar-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(247, 249, 252, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}

.pillar-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3be28b;
}

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

  .pillar-card--featured {
    transform: translateY(-1.5rem);
  }

  .pillar-card--featured:hover {
    transform: translateY(-2rem);
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.92));
  transition: transform 320ms var(--ease-out), border-color 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 76, 255, 0.2);
  box-shadow: 0 24px 55px rgba(7, 17, 31, 0.1);
}

.service-card--featured {
  color: #f7f9fc;
  border-color: rgba(36, 76, 255, 0.4);
  background:
    linear-gradient(145deg, rgba(36, 76, 255, 0.88), rgba(7, 17, 31, 0.96));
}

.service-card--large {
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(36, 76, 255, 0.9));
  color: #f7f9fc;
}

.service-card__label {
  color: #244cff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card--featured .service-card__label,
.service-card--large .service-card__label {
  color: #38d5ff;
}

.service-card h3 {
  margin-top: 1.2rem;
  color: inherit;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.service-card p {
  margin-top: 1rem;
  color: #526070;
  line-height: 1.7;
}

.service-card--featured p,
.service-card--large p {
  color: rgba(247, 249, 252, 0.7);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.service-card li {
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(36, 76, 255, 0.12);
  border-radius: 6px;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(36, 76, 255, 0.05);
}

.service-card--featured li,
.service-card--large li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 249, 252, 0.78);
  background: rgba(255, 255, 255, 0.07);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 2rem;
  color: #244cff;
  font-weight: 800;
}

.service-card a::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 200ms var(--ease-out);
}

.service-card:hover a::after {
  width: 30px;
}

.service-card--featured a,
.service-card--large a {
  color: #38d5ff;
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card--large {
    grid-column: span 2;
  }

  .service-card--featured {
    grid-column: span 2;
  }
}

/* Methodology */
.method-section {
  position: relative;
  overflow: hidden;
  color: #f7f9fc;
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 213, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #07111f 100%);
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.72;
}

.method-backdrop {
  position: absolute;
  right: -6%;
  top: 7%;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.85;
  white-space: nowrap;
}

.method-section .container {
  position: relative;
  z-index: 1;
}

.method-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.method-header .section-title {
  color: #ffffff;
}

.method-header .section-lead {
  color: rgba(247, 249, 252, 0.66);
}

.method-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.method-console {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  padding: 1.25rem;
  border: 1px solid rgba(56, 213, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.method-console > span {
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-console strong {
  color: #ffffff;
  font-size: 2.6rem;
  line-height: 1;
}

.method-console__progress {
  display: grid;
  gap: 0.65rem;
}

.method-console__progress i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.method-console__progress i::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #244cff, #38d5ff, #3be28b);
  transition: width 1100ms var(--ease-out);
}

.method-board.revealed .method-console__progress i::before {
  width: var(--value);
}

.method-console dl {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.method-console dl div {
  padding: 0.9rem;
  background: rgba(5, 7, 13, 0.55);
}

.method-console dt {
  color: rgba(247, 249, 252, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-console dd {
  margin-top: 0.35rem;
  color: rgba(247, 249, 252, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  grid-auto-flow: row;
  grid-auto-rows: auto;
}

.timeline::before,
.timeline__progress {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.5rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline__progress {
  height: var(--timeline-progress, 0%);
  bottom: auto;
  background: linear-gradient(180deg, #244cff, #38d5ff, #3be28b);
  box-shadow: 0 0 28px rgba(56, 213, 255, 0.38);
  transition: height 120ms linear, width 120ms linear;
}

.timeline-card {
  position: relative;
  min-height: 210px;
  margin-left: 2.25rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.58);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition:
    transform 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    background 320ms var(--ease-out);
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 213, 255, 0.34);
  background: rgba(7, 17, 31, 0.78);
}

.timeline-card.is-active {
  border-color: rgba(56, 213, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(36, 76, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 13, 0.72);
  box-shadow: 0 24px 54px rgba(36, 76, 255, 0.16);
}

.timeline-card.is-complete::before {
  background: #3be28b;
  border-color: #3be28b;
  box-shadow: 0 0 0 7px rgba(59, 226, 139, 0.08), 0 0 24px rgba(59, 226, 139, 0.42);
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: -1.86rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #38d5ff;
  border-radius: 50%;
  background: #07111f;
  box-shadow: 0 0 0 7px rgba(56, 213, 255, 0.08), 0 0 20px rgba(56, 213, 255, 0.36);
}

.timeline-card span {
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline-card h3 {
  margin-top: 1.8rem;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.timeline-card p {
  margin-top: 0.8rem;
  color: rgba(247, 249, 252, 0.62);
  line-height: 1.7;
}

@media (min-width: 1060px) {
  .method-header {
    grid-template-columns: 1fr 0.62fr;
  }

  .method-board {
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: stretch;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.15rem;
    grid-auto-flow: dense;
  }

  .timeline::before,
  .timeline__progress {
    top: 1.15rem;
    bottom: 1.15rem;
    left: 1.15rem;
    width: 3px;
    height: auto;
  }

  .timeline__progress {
    height: var(--timeline-progress, 0%);
  }

  .timeline-card {
    min-height: 265px;
    margin-left: 0;
    padding: 1.4rem;
  }

  .timeline-card::before {
    top: auto;
    left: 1.4rem;
    bottom: 1.2rem;
    width: 0.55rem;
    height: 0.55rem;
  }
}

/* Dashboard */
.dashboard-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  color: #f7f9fc;
  background:
    linear-gradient(135deg, rgba(56, 213, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #07111f 100%);
}

.dashboard-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
}

.dashboard-section .container {
  position: relative;
  z-index: 1;
}

.executive-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.dashboard-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.56);
  overflow: hidden;
}

.dashboard-card > span {
  color: rgba(247, 249, 252, 0.5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-card strong {
  margin-top: 0.65rem;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.dashboard-card--score {
  min-height: 250px;
}

.dashboard-card--wide {
  min-height: 250px;
}

.radial-score {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(#38d5ff 0 84%, rgba(255, 255, 255, 0.08) 84% 100%);
}

.radial-score span {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #07111f;
}

.progress-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: auto;
}

.progress-stack i,
.progress-line,
.training-bars i {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-stack i::before,
.progress-line::before,
.training-bars i::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #244cff, #38d5ff);
  transition: width 1100ms var(--ease-out);
}

.executive-dashboard.revealed .progress-stack i::before,
.executive-dashboard.revealed .progress-line::before,
.executive-dashboard.revealed .training-bars i::before {
  width: var(--value);
}

.progress-line {
  margin-top: auto;
}

.progress-line--green::before {
  background: linear-gradient(90deg, #244cff, #3be28b);
}

.training-bars {
  display: grid;
  gap: 0.85rem;
  margin-top: auto;
}

.mini-cloud-map {
  position: relative;
  min-height: 72px;
  margin-top: auto;
}

.mini-cloud-map i,
.data-points i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38d5ff;
  box-shadow: 0 0 16px rgba(56, 213, 255, 0.55);
}

.mini-cloud-map i:nth-child(1) { left: 12%; top: 50%; }
.mini-cloud-map i:nth-child(2) { left: 34%; top: 18%; }
.mini-cloud-map i:nth-child(3) { left: 54%; top: 58%; }
.mini-cloud-map i:nth-child(4) { left: 75%; top: 28%; }
.mini-cloud-map i:nth-child(5) { left: 88%; top: 68%; }

.security-rings {
  position: relative;
  flex: 1;
  min-height: 98px;
  margin-top: 1rem;
}

.security-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(56, 213, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.security-rings i:nth-child(2) {
  width: 70px;
  height: 70px;
  border-color: rgba(59, 226, 139, 0.35);
}

.security-rings i:nth-child(3) {
  width: 104px;
  height: 104px;
  border-color: rgba(255, 255, 255, 0.14);
}

.data-points {
  position: relative;
  min-height: 92px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.data-points i:nth-child(1) { left: 12%; top: 26%; }
.data-points i:nth-child(2) { left: 28%; top: 66%; background: #3be28b; }
.data-points i:nth-child(3) { left: 44%; top: 42%; }
.data-points i:nth-child(4) { left: 58%; top: 74%; background: #244cff; }
.data-points i:nth-child(5) { left: 72%; top: 30%; }
.data-points i:nth-child(6) { left: 86%; top: 58%; background: #3be28b; }

.dashboard-card--roadmap ol {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
}

.dashboard-card--roadmap li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(247, 249, 252, 0.7);
  font-size: 0.9rem;
}

.dashboard-card--roadmap li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d5ff;
}

@media (min-width: 720px) {
  .executive-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-card--wide,
  .dashboard-card--roadmap {
    grid-column: span 2;
  }
}

@media (min-width: 1120px) {
  .executive-dashboard {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .dashboard-card--score {
    grid-row: span 2;
  }

  .dashboard-card--wide {
    grid-column: span 2;
  }

  .dashboard-card--roadmap {
    grid-column: span 2;
  }
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #dfe6ef;
}

.industry-tile {
  min-height: 180px;
  padding: 1.25rem;
  background: #ffffff;
  transition: background 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.industry-tile:hover {
  background:
    linear-gradient(145deg, rgba(36, 76, 255, 0.07), rgba(56, 213, 255, 0.04)),
    #ffffff;
}

.industry-tile h3 {
  color: #07111f;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.industry-tile p {
  margin-top: 2.5rem;
  color: #526070;
  line-height: 1.65;
}

@media (min-width: 620px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Insights */
.insights-section {
  background: #ffffff;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.insight-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #ffffff;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 76, 255, 0.18);
  box-shadow: 0 22px 50px rgba(7, 17, 31, 0.08);
}

.insight-card > span {
  width: fit-content;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(36, 76, 255, 0.12);
  border-radius: 6px;
  color: #244cff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(36, 76, 255, 0.05);
}

.insight-card h3 {
  margin-top: 1.25rem;
  color: #07111f;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.insight-card p {
  margin-top: 1rem;
  color: #526070;
  line-height: 1.7;
}

.insight-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 2rem;
  color: #244cff;
  font-weight: 800;
}

@media (min-width: 720px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  color: #f7f9fc;
  background:
    linear-gradient(135deg, rgba(36, 76, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #05070d 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(56, 213, 255, 0.12), transparent),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 90px 90px, 90px 90px;
  opacity: 0.62;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1240px;
}

.final-cta__copy {
  max-width: 900px;
}

.final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.final-cta p:not(.eyebrow) {
  margin-top: 1.25rem;
  color: rgba(247, 249, 252, 0.68);
  font-size: 1.1rem;
  line-height: 1.75;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.agenda-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(56, 213, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 13, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.agenda-panel__media {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-panel__media img {
  width: 82px;
  height: 92px;
  border: 1px solid rgba(56, 213, 255, 0.2);
  border-radius: 6px;
  object-fit: cover;
  object-position: 50% 18%;
}

.agenda-panel__media span {
  color: #38d5ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-panel__media strong {
  display: block;
  margin-top: 0.35rem;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.25;
}

.agenda-form {
  display: grid;
  gap: 0.85rem;
}

.form-hidden {
  display: none;
}

.agenda-form__row {
  display: grid;
  gap: 0.35rem;
}

.agenda-form label {
  color: rgba(247, 249, 252, 0.62);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-form input,
.agenda-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #f7f9fc;
  background: rgba(5, 7, 13, 0.68);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.agenda-form textarea {
  min-height: 108px;
  resize: vertical;
}

.agenda-form input:focus,
.agenda-form textarea:focus {
  outline: none;
  border-color: rgba(56, 213, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(56, 213, 255, 0.12);
}

.agenda-form input::placeholder,
.agenda-form textarea::placeholder {
  color: rgba(247, 249, 252, 0.36);
}

.agenda-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 4rem;
  }
}

@media (min-width: 1040px) {
  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

/* Enterprise footer */
.footer--enterprise .footer__grid {
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.footer--enterprise .footer__brand {
  max-width: 420px;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(247, 249, 252, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer__social a:hover {
  border-color: rgba(56, 213, 255, 0.42);
  color: #38d5ff;
}

@media (min-width: 680px) {
  .footer--enterprise .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer--enterprise .footer__grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }
}

@media (min-width: 1220px) {
  .footer--enterprise .footer__grid {
    grid-template-columns: 2.2fr repeat(7, 1fr);
  }
}

/* Motion */
.home-page .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.home-page .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.home-page .reveal-group > .reveal:nth-child(1) { transition-delay: 0ms; }
.home-page .reveal-group > .reveal:nth-child(2) { transition-delay: 70ms; }
.home-page .reveal-group > .reveal:nth-child(3) { transition-delay: 140ms; }
.home-page .reveal-group > .reveal:nth-child(4) { transition-delay: 210ms; }
.home-page .reveal-group > .reveal:nth-child(5) { transition-delay: 280ms; }
.home-page .reveal-group > .reveal:nth-child(6) { transition-delay: 350ms; }
.home-page .reveal-group > .reveal:nth-child(7) { transition-delay: 420ms; }
.home-page .reveal-group > .reveal:nth-child(8) { transition-delay: 490ms; }
.home-page .reveal-group > .reveal:nth-child(9) { transition-delay: 560ms; }
.home-page .reveal-group > .reveal:nth-child(10) { transition-delay: 630ms; }

@keyframes matrixDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-360px, -280px, 0); }
}

@keyframes networkFlow {
  from { stroke-dashoffset: 160; }
  to { stroke-dashoffset: 0; }
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes stackFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes panelFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* Responsive refinements */
@media (max-width: 560px) {
  .hero {
    padding-top: 7rem;
  }

  .hero__title {
    font-size: 2.38rem;
    line-height: 1.04;
  }

  .hero .eyebrow {
    max-width: 28ch;
    font-size: 0.68rem;
  }

  .hero__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .btn {
    width: 100%;
  }

  .hero-system {
    min-height: 440px;
  }

  .header__logo .logo-mark__image {
    height: 38px;
  }

  .architecture-stack {
    right: 4%;
    width: 78%;
  }

  .glass-panel {
    min-width: 142px;
  }

  .glass-panel--risk {
    right: 4%;
  }

  .hero-system__brandmark {
    width: 58px;
    height: 58px;
    top: 1rem;
    right: 1rem;
  }

  .mascot-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 420px) {
  .section-title,
  .diagnosis-title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 2.12rem;
  }

  .fragment-map {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__matrix,
  .network-line,
  .network-nodes circle,
  .stack-layer,
  .glass-panel {
    animation: none;
  }

  .home-page .reveal,
  .home-page .reveal.revealed,
  .service-card,
  .pillar-card,
  .insight-card,
  .industry-tile,
  .btn {
    transition: none;
    transform: none;
  }
}
