:root {
  --ai-white: #ffffff;
  --ai-paper: #f7f9f8;
  --ai-mist: #eef6f4;

  --ai-ink: #17201f;
  --ai-text: #45514f;
  --ai-muted: #74807e;
  --ai-border: #dce5e2;

  --ai-teal: #169c8b;
  --ai-teal-dark: #0d7468;
  --ai-teal-soft: #dff3ef;

  --ai-orange: #f36a21;
  --ai-orange-soft: #fff0e7;

  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ai-white);
  color: var(--ai-ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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


/* HEADER */

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 32, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  background: var(--ai-white);
  color: var(--ai-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: -1px;
  height: 3px;
}

.brand-mark::before {
  left: 8px;
  width: 13px;
  background: var(--ai-teal);
}

.brand-mark::after {
  left: 21px;
  width: 13px;
  background: var(--ai-orange);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--ai-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-type {
  margin-top: 2px;
  color: var(--ai-muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #56615f;
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--ai-teal-dark);
}

.contact-button {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ai-ink);
  border-radius: 10px;
  color: var(--ai-ink);
  font-size: 12px;
  font-weight: 750;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.contact-button:hover {
  background: var(--ai-ink);
  color: var(--ai-white);
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 83px);
  display: flex;
  align-items: center;
  padding: 90px 0 100px;
  background:
    radial-gradient(
      circle at 84% 22%,
      rgba(22, 156, 139, 0.09),
      transparent 29%
    ),
    radial-gradient(
      circle at 72% 82%,
      rgba(243, 106, 33, 0.055),
      transparent 24%
    ),
    var(--ai-white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -270px;
  top: -300px;
  border: 1px solid rgba(22, 156, 139, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(22, 156, 139, 0.018),
    0 0 0 120px rgba(22, 156, 139, 0.012);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(440px, 0.92fr)
    minmax(500px, 1.08fr);
  gap: clamp(70px, 8vw, 130px);
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  color: var(--ai-teal-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.hero-kicker span {
  width: 30px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--ai-teal) 0 62%,
      var(--ai-orange) 62% 100%
    );
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ai-ink);
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--ai-teal);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 31px 0 0;
  color: var(--ai-text);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.015em;
}

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

.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.primary-button {
  background: var(--ai-ink);
  color: var(--ai-white);
}

.primary-button span {
  color: #76d8cc;
  font-size: 17px;
}

.secondary-button {
  border: 1px solid var(--ai-border);
  background: var(--ai-white);
  color: var(--ai-ink);
}


/* CORPORATE MAP */

.company-map {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-field {
  position: relative;
  width: min(100%, 610px);
  height: 450px;
}

.map-orbit {
  position: absolute;
  inset: 32px 44px;
  border: 1px solid rgba(22, 156, 139, 0.13);
  border-radius: 50%;
}

.map-orbit::before {
  content: "";
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(23, 32, 31, 0.055);
  border-radius: 50%;
}

.company-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  min-height: 180px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 156, 139, 0.28);
  border-radius: 50%;
  background: var(--ai-white);
  box-shadow:
    0 28px 70px rgba(21, 71, 64, 0.08),
    0 0 0 18px rgba(22, 156, 139, 0.025);
  text-align: center;
}

.company-node small {
  color: var(--ai-teal-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.company-node strong {
  margin-top: 7px;
  color: var(--ai-ink);
  font-size: 18px;
  line-height: 1.05;
}

.portfolio-node {
  position: absolute;
  width: 210px;
  padding: 18px;
  border: 1px solid var(--ai-border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 55px rgba(24, 56, 51, 0.07);
}

.portfolio-node::before {
  content: "";
  position: absolute;
  top: 22px;
  width: 44px;
  height: 1px;
  background: var(--ai-border);
}

.portfolio-node span {
  display: block;
  margin-bottom: 7px;
  color: var(--ai-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.portfolio-node strong {
  display: block;
  color: var(--ai-ink);
  font-size: 15px;
}

.portfolio-node p {
  margin: 7px 0 0;
  color: var(--ai-muted);
  font-size: 10px;
  line-height: 1.45;
}

.node-alleria {
  top: 38px;
  right: 0;
  border-top: 3px solid var(--ai-teal);
}

.node-alleria::before {
  right: 100%;
}

.node-bsos {
  bottom: 42px;
  left: 0;
  border-top: 3px solid var(--ai-orange);
}

.node-bsos::before {
  left: 100%;
}

.map-caption {
  position: absolute;
  right: 12px;
  bottom: 38px;
  color: var(--ai-muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}


/* RESPONSIVE */

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .contact-button {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .company-map {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-type {
    display: none;
  }

  .contact-button {
    padding: 0 13px;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .map-field {
    height: 520px;
  }

  .map-orbit {
    inset: 60px 20px;
  }

  .company-node {
    width: 150px;
    min-height: 150px;
  }

  .portfolio-node {
    width: 180px;
  }

  .node-alleria {
    top: 0;
    right: 0;
  }

  .node-bsos {
    bottom: 0;
    left: 0;
  }
}

/* FUTURE HERO — BASE LAYOUT */

.hero-future {
  min-height: calc(100vh - 83px);
  padding: 88px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-future-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.05fr);
  gap: 80px;
  align-items: center;
}

.hero-future-copy {
  position: relative;
  z-index: 2;
}

.hero-system-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
  margin-bottom: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 32, 31, 0.14);

  color: #52605e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #18a999;
}

.hero-future-kicker {
  margin-bottom: 18px;
  color: #168f81;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.hero-future h1 {
  max-width: 760px;
  margin: 0;
  color: #111918;
  font-size: clamp(66px, 6vw, 100px);
  line-height: 0.91;
  letter-spacing: -0.065em;
  font-weight: 780;
}

.hero-future h1 span {
  display: block;
}

.hero-future h2 {
  max-width: 690px;
  margin: 24px 0 0;
  color: #179f90;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-future-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #52605e;
  font-size: 17px;
  line-height: 1.65;
}

.hero-future-actions {
  margin-top: 32px;
}

.hero-future-primary {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 24px;

  border-radius: 8px;
  background: #111918;
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}

.hero-future-primary span {
  color: #62d5c7;
  font-size: 18px;
}

@media (max-width: 1050px) {
  .hero-future-grid {
    grid-template-columns: 1fr;
  }
}


/* FUTURE HERO — INTELLIGENCE FIELD */

.hero-architecture {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero-architecture::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(19, 176, 195, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(19, 176, 195, 0.035),
    0 0 0 140px rgba(105, 76, 255, 0.025);
}

.hero-architecture::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(105, 76, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(19, 176, 195, 0.08),
      transparent 58%
    );
}

.architecture-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(19, 176, 195, 0.5);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.88);

  box-shadow:
    0 0 55px rgba(19, 176, 195, 0.13),
    0 0 90px rgba(105, 76, 255, 0.07);
}

.architecture-core small {
  color: #677270;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.architecture-core strong {
  margin-top: 7px;
  color: #111918;
  font-size: 25px;
  letter-spacing: -0.04em;
}


/* FUTURE HERO — AI NETWORK */

.ai-field {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
}

.ai-field::before {
  content: "";
  position: absolute;
  inset: 7% 2%;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(18, 199, 216, 0.13),
      rgba(115, 92, 255, 0.045) 34%,
      transparent 66%
    );

  filter: blur(10px);
}

.ai-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ai-links path {
  fill: none;
  stroke: url(#aiFlow);
  stroke-width: 1.15;
  stroke-opacity: 0.36;
}

.ai-signal-nodes circle {
  fill: #ffffff;
  stroke: #12bfcf;
  stroke-width: 2.5;

  filter:
    drop-shadow(0 0 6px rgba(18, 199, 216, 0.7))
    drop-shadow(0 0 16px rgba(115, 92, 255, 0.24));
}

.ai-core-ring {
  fill: none;
  transform-origin: 380px 320px;
}

.ai-core-ring.outer {
  stroke: #12c7d8;
  stroke-width: 1;
  stroke-opacity: 0.38;
  stroke-dasharray: 8 13;
}

.ai-core-ring.inner {
  stroke: #735cff;
  stroke-width: 1.4;
  stroke-opacity: 0.54;
  stroke-dasharray: 4 9;
}

.ai-core-node {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 3;

  filter:
    drop-shadow(0 0 12px rgba(18, 199, 216, 0.65))
    drop-shadow(0 0 28px rgba(115, 92, 255, 0.42));
}

.ai-core-label {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 150px;

  text-align: center;
  pointer-events: none;
}

.ai-core-label span {
  display: block;

  color: #4e5c5a;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.ai-core-label strong {
  display: block;
  margin-top: 5px;

  color: #111918;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.ai-core-label small {
  display: block;
  margin-top: 7px;

  color: #735cff;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.ai-label {
  position: absolute;
  z-index: 4;

  padding: 6px 9px;

  border: 1px solid rgba(18, 199, 216, 0.18);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(8px);

  color: #263331;

  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;

  box-shadow: 0 8px 25px rgba(29, 67, 65, 0.055);
}

.label-memory {
  left: 18%;
  top: 19%;
}

.label-identity {
  right: 16%;
  top: 16%;
}

.label-context {
  right: 5%;
  top: 49%;
}

.label-reasoning {
  right: 18%;
  bottom: 15%;
}

.label-orchestration {
  left: 13%;
  bottom: 17%;
}

.label-action {
  left: 3%;
  top: 49%;
}

@keyframes corePulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes networkRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ai-core-node {
  animation: corePulse 2.8s ease-in-out infinite;
}

.ai-core-ring.outer {
  animation: networkRotate 34s linear infinite;
}

.ai-core-ring.inner {
  animation: networkRotate 24s linear infinite reverse;
}


/* PREMIUM AI HERO — LAYOUT */

.hero-premium {
  position: relative;
  min-height: calc(100vh - 83px);
  overflow: hidden;
  padding: 72px 0 54px;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(83, 207, 255, 0.10),
      transparent 32%
    ),
    radial-gradient(
      circle at 86% 60%,
      rgba(126, 91, 255, 0.08),
      transparent 28%
    ),
    #ffffff;
}

.hero-premium-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(680px, 1.22fr);
  gap: 40px;
  align-items: center;
}

.hero-premium-copy {
  position: relative;
  z-index: 5;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;

  color: #1a2429;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.hero-eyebrow span {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #17cbd1,
    #735cff
  );
}

.hero-premium h1 {
  margin: 0;
  color: #10181d;

  font-size: clamp(64px, 5.7vw, 94px);
  font-weight: 780;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero-premium h1 em {
  color: transparent;
  font-style: normal;

  background: linear-gradient(
    90deg,
    #10bfc4,
    #2c8fff 48%,
    #7559ff
  );

  -webkit-background-clip: text;
  background-clip: text;
}

.hero-premium-lead {
  max-width: 540px;
  margin: 28px 0 0;

  color: #5b6b78;
  font-size: 18px;
  line-height: 1.55;
}

.hero-premium-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 32px;
}

.hero-main-cta {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  gap: 28px;

  border-radius: 9px;

  background: #101820;
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}

.hero-main-cta > span {
  color: #5ee7ec;
  font-size: 18px;
}

.hero-secondary-link {
  padding-bottom: 4px;

  border-bottom: 1px solid #8395a4;

  color: #526675;
  font-size: 13px;
  font-weight: 650;
}

.hero-micro-proof {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.hero-micro-proof > span {
  padding-right: 28px;
  border-right: 1px solid #dbe4ea;

  color: #708391;
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: 0.18em;
}

.hero-micro-proof > span:last-child {
  border-right: 0;
}

.hero-micro-proof strong {
  color: #40525f;
  font-size: 8px;
}

.hero-ai-stage {
  position: relative;
  min-height: 680px;
}

@media (max-width: 1100px) {
  .hero-premium-grid {
    grid-template-columns: 1fr;
  }

  .hero-ai-stage {
    min-height: 600px;
  }
}


/* HERO — VERTICAL POSITION CORRECTION */

.hero-premium {
  padding-top: 38px;
}

.hero-premium-grid {
  transform: translateY(-22px);
}


/* ALLERIA HERO IMAGE — FINAL POSITIONING */

.hero-ai-stage {
  position: relative;
  min-height: 650px;
  overflow: visible;
}

.alleria-hero-image {
  position: absolute;
  z-index: 3;

  left: 50%;
  top: 50%;

  width: min(88%, 610px);
  height: auto;
  max-height: 620px;

  transform: translate(-50%, -50%);

  object-fit: contain;

  filter:
    drop-shadow(0 18px 42px rgba(43, 111, 186, 0.12))
    drop-shadow(0 0 34px rgba(113, 84, 255, 0.10));
}

.alleria-glow {
  position: absolute;
  z-index: 1;

  left: 50%;
  top: 50%;

  width: 560px;
  height: 560px;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(52, 208, 238, 0.13) 0%,
      rgba(119, 88, 255, 0.08) 38%,
      transparent 70%
    );

  filter: blur(28px);
}

/* The artwork already contains its own ALLERIA wordmark */
.alleria-wordmark {
  display: none;
}

@media (max-width: 1100px) {
  .hero-ai-stage {
    min-height: 560px;
  }

  .alleria-hero-image {
    width: min(90%, 560px);
    max-height: 540px;
  }
}


/* HERO — TECHNOLOGY CALLOUTS */

.tech-callout {
  position: absolute;
  z-index: 7;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 175px;
  padding: 14px 16px;

  border: 1px solid rgba(98, 140, 255, 0.18);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);

  box-shadow:
    0 14px 36px rgba(72, 100, 150, 0.08),
    0 0 26px rgba(88, 199, 255, 0.05);
}

.tech-callout > span {
  width: 11px;
  height: 11px;

  flex: 0 0 11px;

  border: 2px solid #1cc7da;
  border-radius: 50%;

  background: #ffffff;

  box-shadow:
    0 0 0 5px rgba(28, 199, 218, 0.08),
    0 0 14px rgba(28, 199, 218, 0.38);
}

.tech-callout strong {
  display: block;

  color: #162128;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.tech-callout small {
  display: block;
  margin-top: 6px;

  color: #70808d;
  font-size: 7px;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.callout-identity {
  top: 90px;
  right: 0;
}

.callout-intelligence {
  top: 250px;
  right: -18px;
}

.callout-orchestration {
  top: 170px;
  left: -34px;
}

.callout-processing {
  bottom: 95px;
  left: -28px;
}

.hero-stage-caption {
  top: 8px;
  right: 4px;

  color: #6d7f8d;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.20em;
}


/* HERO — ACTIVE TECHNOLOGY FIELD */

.hero-ai-stage::before {
  content: "";
  position: absolute;
  z-index: 0;

  inset: 28px 10px 24px;

  border-radius: 46%;

  background:
    linear-gradient(
      rgba(30, 202, 221, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(116, 91, 255, 0.045) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  mask-image:
    radial-gradient(
      ellipse at center,
      black 15%,
      rgba(0,0,0,.72) 48%,
      transparent 78%
    );

  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      black 15%,
      rgba(0,0,0,.72) 48%,
      transparent 78%
    );
}

.hero-ai-stage::after {
  content: "";
  position: absolute;
  z-index: 1;

  left: 50%;
  top: 49%;

  width: 540px;
  height: 540px;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(43, 199, 224, 0.25);
  border-radius: 50%;

  box-shadow:
    0 0 0 38px rgba(91, 111, 255, 0.028),
    0 0 0 76px rgba(38, 204, 222, 0.022),
    0 0 100px rgba(91, 111, 255, 0.10);

  pointer-events: none;
}

.alleria-glow {
  opacity: 1;
}

.alleria-hero-image {
  z-index: 3;
}

.tech-callout {
  z-index: 8;
}

.tech-callout::after {
  content: "";
  position: absolute;
  top: 50%;

  width: 48px;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(25, 198, 218, 0.55),
    rgba(105, 88, 255, 0.18)
  );
}

.callout-identity::after,
.callout-intelligence::after {
  right: 100%;
}

.callout-orchestration::after,
.callout-processing::after {
  left: 100%;
}


/* HERO — ALLERIA HOLOGRAPHIC PANEL */

.alleria-holo-panel {
  position: absolute;
  z-index: 9;

  right: -12px;
  bottom: 38px;

  width: 300px;
  padding: 16px 18px;

  border: 1px solid rgba(87, 179, 255, 0.55);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(46, 118, 224, 0.82),
      rgba(67, 89, 196, 0.82)
    );

  box-shadow:
    0 18px 50px rgba(53, 92, 180, 0.18),
    0 0 32px rgba(70, 190, 255, 0.22),
    inset 0 0 24px rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  color: #ffffff;
}

.alleria-holo-panel::before,
.alleria-holo-panel::after {
  content: "";
  position: absolute;

  width: 22px;
  height: 22px;

  border-color: rgba(145, 225, 255, 0.9);
}

.alleria-holo-panel::before {
  left: -5px;
  top: -5px;

  border-left: 2px solid;
  border-top: 2px solid;
}

.alleria-holo-panel::after {
  right: -5px;
  bottom: -5px;

  border-right: 2px solid;
  border-bottom: 2px solid;
}

.holo-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.holo-panel-top strong {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.holo-panel-top span {
  font-size: 6px;
  letter-spacing: 0.16em;
  opacity: 0.82;
}

.holo-panel-body {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 92px;
}

.holo-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.holo-copy strong {
  font-size: 11px;
  line-height: 1.1;
}

.holo-globe {
  width: 72px;
  height: 72px;

  border: 1px solid rgba(142, 226, 255, 0.68);
  border-radius: 50%;

  background:
    linear-gradient(
      rgba(255,255,255,.10) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.10) 1px,
      transparent 1px
    );

  background-size: 12px 12px;

  box-shadow:
    inset 0 0 18px rgba(124, 220, 255, 0.22),
    0 0 22px rgba(124, 220, 255, 0.18);
}

.holo-scale {
  display: flex;
  align-items: center;
  gap: 8px;
}

.holo-scale span {
  width: 56px;
  height: 3px;

  border-radius: 99px;

  background: linear-gradient(
    90deg,
    #45e7ff,
    #75a8ff
  );
}

.holo-scale i {
  width: 7px;
  height: 7px;

  border: 2px solid #c7f5ff;
  border-radius: 50%;
}


/* HERO — HOLOGRAPHIC PANEL */

.alleria-holo-panel {
  position: absolute;
  z-index: 9;
  right: -6px;
  bottom: 58px;

  width: 290px;
  padding: 15px 17px;

  border: 1px solid rgba(86, 186, 255, 0.58);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(31, 115, 220, 0.88),
      rgba(72, 78, 190, 0.84)
    );

  color: #fff;

  box-shadow:
    0 20px 55px rgba(43, 87, 175, 0.20),
    0 0 34px rgba(64, 198, 255, 0.24),
    inset 0 0 22px rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);
}

.alleria-holo-panel::before,
.alleria-holo-panel::after {
  content: "";
  position: absolute;

  width: 20px;
  height: 20px;

  border-color: #8cecff;
}

.alleria-holo-panel::before {
  top: -5px;
  left: -5px;

  border-top: 2px solid;
  border-left: 2px solid;
}

.alleria-holo-panel::after {
  right: -5px;
  bottom: -5px;

  border-right: 2px solid;
  border-bottom: 2px solid;
}

.holo-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 9px;

  border-bottom: 1px solid rgba(255,255,255,.22);
}

.holo-panel-top strong {
  font-size: 12px;
}

.holo-panel-top span {
  font-size: 6px;
  letter-spacing: .15em;
  opacity: .8;
}

.holo-panel-body {
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.holo-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.holo-copy strong {
  font-size: 10px;
}

.holo-globe {
  width: 68px;
  height: 68px;

  border: 1px solid rgba(173, 235, 255, .75);
  border-radius: 50%;

  background:
    linear-gradient(
      rgba(255,255,255,.11) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.11) 1px,
      transparent 1px
    );

  background-size: 11px 11px;

  box-shadow:
    inset 0 0 18px rgba(125, 225, 255, .24),
    0 0 20px rgba(125, 225, 255, .20);
}

.holo-scale {
  display: flex;
  align-items: center;
  gap: 7px;
}

.holo-scale span {
  width: 52px;
  height: 3px;

  border-radius: 99px;

  background: linear-gradient(
    90deg,
    #54efff,
    #7e9cff
  );
}

.holo-scale i {
  width: 7px;
  height: 7px;

  border: 2px solid #d4f8ff;
  border-radius: 50%;
}


/* HERO — TECHNOLOGY CALLOUT ICONS */

.tech-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.96),
      rgba(235,248,255,.92)
    );

  box-shadow:
    inset 0 0 0 1px rgba(50, 186, 224, .16),
    0 8px 22px rgba(48, 110, 180, .08);
}

.tech-icon svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-icon-identity {
  color: #785dff;
}

.tech-icon-intelligence {
  color: #3588ff;
}

.tech-icon-orchestration {
  color: #16c5d8;
}

.tech-icon-processing {
  color: #6f64ff;
}

.tech-callout > span {
  display: none;
}

/* HERO — SYSTEM STRIP */

.hero-system-strip {
  width: min(100%, 520px);
  margin-top: 34px;
  padding: 13px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-top: 1px solid rgba(98, 120, 145, 0.18);
  border-bottom: 1px solid rgba(98, 120, 145, 0.12);

  background:
    linear-gradient(
      90deg,
      rgba(26, 198, 215, 0.03),
      rgba(111, 89, 255, 0.025),
      transparent
    );
}

.system-strip-label {
  color: #728291;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.system-strip-items {
  display: flex;
  align-items: center;
  gap: 16px;
}

.system-strip-items span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #3d4d58;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.10em;
  white-space: nowrap;
}

.system-strip-items i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.system-strip-items .cyan {
  background: #1cc7d8;
  box-shadow: 0 0 9px rgba(28, 199, 216, 0.55);
}

.system-strip-items .violet {
  background: #735cff;
  box-shadow: 0 0 9px rgba(115, 92, 255, 0.48);
}

.system-strip-items .orange {
  background: #ff7a2f;
  box-shadow: 0 0 9px rgba(255, 122, 47, 0.42);
}


/* CORPORATE PORTFOLIO RAIL */

.portfolio-rail {
  position: relative;
  z-index: 15;

  margin-top: -34px;
  padding-bottom: 28px;
}

.portfolio-rail-inner {
  display: grid;
  grid-template-columns:
    1.05fr
    1.2fr
    1fr
    1fr
    1.25fr;

  border: 1px solid rgba(90, 130, 170, 0.16);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 22px 55px rgba(47, 81, 120, 0.07),
    0 0 40px rgba(80, 190, 235, 0.035);

  backdrop-filter: blur(18px);

  overflow: hidden;
}

.portfolio-rail-item {
  position: relative;

  min-height: 98px;
  padding: 18px 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  border-right: 1px solid rgba(90, 130, 170, 0.12);

  transition:
    background 180ms ease,
    transform 180ms ease;
}

.portfolio-rail-item:last-child {
  border-right: 0;
}

a.portfolio-rail-item:hover {
  background:
    linear-gradient(
      135deg,
      rgba(27, 197, 215, 0.055),
      rgba(112, 89, 255, 0.045)
    );
}

.portfolio-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  font-size: 12px;
  font-weight: 900;
}

.portfolio-icon-alleria {
  color: #6b5cff;

  background:
    linear-gradient(
      145deg,
      #edfaff,
      #f1ecff
    );
}

.portfolio-icon-pe {
  color: #ffffff;
  background: #111820;
}

.portfolio-icon-bsos {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #ff812f,
      #ff5c16
    );
}

.portfolio-icon-runtime {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #55c9ff,
      #795dff
    );
}

.portfolio-icon-partners {
  color: #6658ff;

  background:
    linear-gradient(
      145deg,
      #eef9ff,
      #f1edff
    );

  font-size: 20px;
}

.portfolio-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.portfolio-copy strong {
  color: #172128;

  font-size: 11px;
  line-height: 1.2;
}

.portfolio-copy small {
  margin-top: 5px;

  color: #708190;

  font-size: 8px;
  line-height: 1.35;
}

.portfolio-arrow {
  margin-left: auto;

  color: #199fb3;

  font-size: 16px;
}

@media (max-width: 1100px) {
  .portfolio-rail-inner {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-rail-item {
    border-bottom: 1px solid rgba(90, 130, 170, 0.12);
  }
}

