* {
  box-sizing: border-box;
}

:root {
  --bg: #08000d;
  --bg-soft: #13041f;
  --ink: #1a1020;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --purple: #60127d;
  --purple-bright: #8d23bd;
  --purple-hot: #d73898;
  --surface: #ffffff;
  --line: rgba(255, 255, 255, .16);
  --shadow: 0 24px 70px rgba(31, 4, 47, .24);
  --container: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

body::selection {
  color: #ffffff;
  background: var(--purple-hot);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
}

.topbar,
.navbar,
.hero-inner,
.service-strip,
.split-section,
.section,
.content-section,
.stats-band,
.cta-section,
.site-footer {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 13px 0 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.topbar-links a:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-1px);
}

.topbar-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.topbar-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(17, 3, 27, .62);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 176px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.is-current {
  color: #ffffff;
}

.nav-links a.is-current::after {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: var(--purple-hot);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-hot));
  box-shadow: 0 18px 38px rgba(141, 35, 189, .34);
}

.btn-light {
  color: var(--purple);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 255, 255, .12);
}

.btn-large {
  min-height: 56px;
  padding-inline: 30px;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 172px 0 90px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 0, 12, .9) 0%, rgba(20, 3, 31, .76) 46%, rgba(83, 13, 105, .22) 100%),
    linear-gradient(180deg, rgba(8, 0, 13, .15), rgba(8, 0, 13, .92)),
    url("../images/background.png") center / cover no-repeat,
    #08000d;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-hot));
  box-shadow: 0 0 18px rgba(215, 56, 152, .7);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 56, 152, .16), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .25s ease;
}

.cursor-glow.is-active {
  opacity: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 0 24px rgba(215, 56, 152, .6);
  opacity: .5;
  animation: particleFloat var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% -10%;
  height: 360px;
  background: radial-gradient(circle, rgba(141, 35, 189, .55), transparent 58%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--purple-hot);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(62px, 7.8vw, 112px);
  font-weight: 900;
  line-height: .92;
}

.hero p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.hero-actions span {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-card {
  position: absolute;
  inset: 40px 20px 30px 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(215, 56, 152, .25), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: min(82%, 460px);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .24));
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  top: 5px;
  right: 35px;
  width: 130px;
  height: 130px;
  background: rgba(215, 56, 152, .5);
}

.orb-two {
  left: 15px;
  bottom: 12px;
  width: 94px;
  height: 94px;
  background: rgba(141, 35, 189, .55);
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(12, 2, 19, .78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.floating-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.floating-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
}

.floating-card-a {
  top: 86px;
  left: -12px;
}

.floating-card-b {
  right: 0;
  bottom: 68px;
}

.service-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.service-strip article,
.services-grid article,
.pricing-grid article {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 30px;
  color: var(--ink);
}

.service-icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 20px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
}

.service-strip h3,
.services-grid h3,
.project-grid h3,
.pricing-grid h3,
.team-grid h3 {
  margin: 0;
}

.service-strip p,
.services-grid p,
.section-copy p,
.site-footer p {
  color: #6c6170;
  line-height: 1.75;
}

.service-strip p {
  grid-column: 2;
  margin: 8px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 78px;
  padding: 120px 0;
}

.section-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section-copy h2,
.section-heading h2 {
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.section-copy p {
  margin: 24px 0 0;
  font-size: 17px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  padding: 0;
  margin: 30px 0 36px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-hot);
  box-shadow: 0 0 0 6px rgba(215, 56, 152, .12);
}

.section {
  padding: 110px 0;
}

.content-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 70px;
  right: max(20px, calc((100% - var(--container)) / 2));
  width: 150px;
  height: 150px;
  border: 1px solid rgba(141, 35, 189, .16);
  border-radius: 38px;
  transform: rotate(18deg);
  pointer-events: none;
}

.content-section::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - var(--container)) / 2));
  bottom: 54px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 56, 152, .13), transparent 68%);
  pointer-events: none;
}

.tinted-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100% - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(251, 247, 253, .9)),
    radial-gradient(circle at 12% 15%, rgba(215, 56, 152, .12), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(96, 18, 125, .14), transparent 32%);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.text-card,
.compact-grid article {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.text-card::after,
.compact-grid article::after,
.services-grid article::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--purple-hot));
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .28s ease;
}

.text-card:hover::after,
.compact-grid article:hover::after,
.services-grid article:hover::after {
  transform: scaleX(1);
}

.text-card h2,
.text-card h3,
.compact-grid h3 {
  margin: 0;
  color: var(--ink);
}

.text-card h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.text-card h3 {
  font-size: 28px;
}

.text-card p,
.timeline-grid p,
.compact-grid p,
.project-grid p,
.team-grid p,
.section-intro {
  color: #6c6170;
  line-height: 1.75;
}

.featured-card {
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 0%, rgba(215, 56, 152, .42), transparent 35%),
    linear-gradient(145deg, var(--purple), #210330);
}

.featured-card h3,
.featured-card p {
  color: #ffffff;
}

.feature-list {
  counter-reset: feature;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wide-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list li {
  position: relative;
  min-height: 96px;
  padding: 24px 22px 22px 76px;
  border: 1px solid rgba(96, 18, 125, .08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #ffffff, #fbf7fd);
  box-shadow: 0 14px 34px rgba(31, 4, 47, .08);
  font-weight: 750;
  line-height: 1.45;
}

.feature-list li::before {
  counter-increment: feature;
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
  box-shadow: 0 12px 24px rgba(141, 35, 189, .2);
  font-size: 12px;
  font-weight: 950;
}

.stats-band {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 82px;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 620px;
  padding: 110px max(28px, calc((100% - var(--container)) / 2));
  color: var(--ink);
  background: #ffffff;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  top: 120px;
  left: max(18px, calc((100% - var(--container)) / 2 - 110px));
  width: 330px;
  height: 330px;
  pointer-events: none;
  border: 54px solid rgba(96, 18, 125, .055);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
  transform: rotate(14deg);
}

.stats-band::after {
  content: "";
  position: absolute;
  top: -120px;
  right: 14%;
  width: 300px;
  height: 120px;
  border-radius: 50%;
  background: rgba(96, 18, 125, .08);
  filter: blur(60px);
}

.stats-intro {
  position: relative;
  z-index: 1;
}

.stats-intro .eyebrow {
  margin-bottom: 14px;
}

.stats-intro h2 {
  margin: 0;
  color: #403174;
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 950;
  line-height: 1.08;
}

.stats-intro p {
  max-width: 260px;
  margin: 28px 0 0;
  color: #5f596c;
  font-size: 18px;
  line-height: 1.65;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 84px 72px;
}

.stats-grid article {
  position: relative;
  overflow: visible;
  min-height: 210px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.stats-grid article::after {
  display: none;
}

.stats-grid strong {
  display: block;
  color: #403174;
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 420;
  line-height: .9;
  letter-spacing: 0;
}

.stats-grid span {
  display: block;
  width: min(100%, 285px);
  margin: 34px auto 0;
  padding: 20px 12px 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--purple), var(--purple-hot)) 1;
  color: #352a72;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-intro {
  max-width: 780px;
  margin: -28px auto 42px;
  text-align: center;
  font-size: 18px;
}

.join-experience {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 620px;
  padding: 42px;
  border: 1px solid rgba(96, 18, 125, .08);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(251, 247, 253, .92)),
    radial-gradient(circle at 18% 20%, rgba(215, 56, 152, .18), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(96, 18, 125, .16), transparent 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.join-experience::before {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px dashed rgba(141, 35, 189, .22);
  border-radius: 36px;
  pointer-events: none;
}

.join-experience::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 240px;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, rgba(215, 56, 152, .42), transparent);
  pointer-events: none;
}

.join-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 420px;
  padding: 36px;
  border-radius: 50px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 35% 18%, rgba(215, 56, 152, .42), transparent 34%),
    linear-gradient(145deg, #6b168d, #1b0328);
  box-shadow: 0 36px 90px rgba(31, 4, 47, .32);
}

.join-core::before,
.join-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.join-core::before {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.join-core::after {
  inset: -18px;
  border: 1px solid rgba(141, 35, 189, .16);
  animation: pulseFrame 4s ease-in-out infinite;
}

.join-core img {
  width: min(240px, 80%);
  margin-bottom: 30px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .28));
}

.join-core strong {
  font-size: 34px;
  line-height: 1.05;
}

.join-core span {
  max-width: 220px;
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.join-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.join-benefits article {
  position: relative;
  min-height: 148px;
  padding: 24px 24px 24px 86px;
  border: 1px solid rgba(96, 18, 125, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 44px rgba(31, 4, 47, .09);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.join-benefits article::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 22px;
  height: 1px;
  background: rgba(141, 35, 189, .28);
}

.join-benefits article span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
  box-shadow: 0 12px 24px rgba(141, 35, 189, .2);
}

.join-benefits h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.join-benefits p {
  margin: 9px 0 0;
  color: #6c6170;
  line-height: 1.65;
}

.join-benefits article:hover {
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(31, 4, 47, .16);
  transform: translateY(-8px) translateX(calc((var(--step) % 2) * 4px));
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 72px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(141, 35, 189, .28), transparent);
}

.timeline-grid article {
  position: relative;
  padding: 34px 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.timeline-grid article::before {
  content: "";
  position: absolute;
  top: 36px;
  right: -43px;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 6px solid #fbf7fd;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--purple), var(--purple-hot));
  box-shadow: 0 0 0 5px rgba(141, 35, 189, .12);
}

.timeline-grid article:nth-child(even)::before {
  right: auto;
  left: -45px;
}

.timeline-grid article:nth-child(even) {
  margin-top: 38px;
}

.timeline-grid h3 {
  margin: 0;
  font-size: 24px;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.compact-grid article {
  min-height: 210px;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 56, 152, .12), transparent 34%),
    #ffffff;
}

.department-system,
.department-hub,
.department-orbit,
.department-card {
  display: none;
}

.department-command {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 46px;
  min-height: 680px;
  padding: 46px;
  border: 1px solid rgba(96, 18, 125, .08);
  border-radius: 46px;
  background:
    linear-gradient(90deg, rgba(96, 18, 125, .08) 1px, transparent 1px),
    linear-gradient(rgba(96, 18, 125, .08) 1px, transparent 1px),
    radial-gradient(circle at 25% 42%, rgba(215, 56, 152, .2), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(96, 18, 125, .16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(251, 247, 253, .94));
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.department-command::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(96, 18, 125, .08);
  border-radius: 34px;
  pointer-events: none;
}

.department-command::after {
  content: "DEPARTMENTS";
  position: absolute;
  right: -20px;
  bottom: -18px;
  color: rgba(96, 18, 125, .045);
  font-size: clamp(68px, 10vw, 160px);
  font-weight: 950;
  line-height: .8;
  pointer-events: none;
}

.command-screen {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 34%, rgba(215, 56, 152, .42), transparent 24%),
    linear-gradient(145deg, #6b168d, #180224);
  box-shadow: 0 38px 100px rgba(31, 4, 47, .36);
  overflow: hidden;
}

.command-screen::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  pointer-events: none;
}

.command-screen img {
  position: absolute;
  top: 68px;
  left: 50%;
  width: min(290px, 70%);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .25));
  transform: translateX(-50%);
}

.command-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.command-screen h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .95;
}

.command-screen p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.7;
}

.command-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 310px);
  margin-top: 30px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
}

.command-metrics span {
  color: rgba(255, 255, 255, .68);
  font-weight: 800;
}

.command-metrics strong {
  font-size: 34px;
  line-height: 1;
}

.command-radar {
  position: absolute;
  top: 42px;
  left: 42px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 42%, rgba(255, 255, 255, .12) 43%, transparent 45%),
    radial-gradient(circle, transparent 66%, rgba(255, 255, 255, .1) 67%, transparent 69%);
  opacity: .75;
}

.command-radar::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 78px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .6), transparent);
  transform-origin: left center;
  animation: radarSweep 3s linear infinite;
}

.command-radar span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, .8);
}

.command-radar span:nth-child(1) {
  top: 42px;
  left: 82px;
}

.command-radar span:nth-child(2) {
  right: 40px;
  bottom: 50px;
}

.command-radar span:nth-child(3) {
  left: 42px;
  bottom: 46px;
}

.department-console {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.department-node {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 18px 22px;
  border: 1px solid rgba(96, 18, 125, .1);
  border-radius: 26px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 44px rgba(31, 4, 47, .08);
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.department-node::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(215, 56, 152, .16), transparent 30%),
    linear-gradient(90deg, rgba(96, 18, 125, .08), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}

.department-node span,
.department-node strong,
.department-node em {
  position: relative;
  z-index: 1;
}

.department-node span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
  box-shadow: 0 12px 24px rgba(141, 35, 189, .2);
}

.department-node strong {
  font-size: 24px;
}

.department-node em {
  justify-self: end;
  color: #8c7b92;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.department-node:hover,
.department-node.is-active {
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(31, 4, 47, .16);
  transform: translateX(12px);
}

.department-node:hover::before,
.department-node.is-active::before {
  opacity: 1;
}

.department-node.is-active {
  border-color: rgba(215, 56, 152, .32);
}

.compact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.compact-grid article {
  padding: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 24px;
}

.gallery-grid article,
.gallery-grid a {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background:
    linear-gradient(180deg, transparent, rgba(8, 0, 13, .88)),
    url("../images/background-purple.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
}

.gallery-grid article::before,
.gallery-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 18%, rgba(215, 56, 152, .35), transparent 36%);
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-grid article span,
.gallery-grid article small,
.gallery-grid a span,
.gallery-grid a small {
  position: relative;
  z-index: 1;
}

.gallery-grid article small,
.gallery-grid a small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-grid article:hover::before,
.gallery-grid article.is-active::before,
.gallery-grid a:hover::before,
.gallery-grid a.is-active::before {
  opacity: 1;
}

.gallery-grid article.is-active,
.gallery-grid a.is-active {
  outline: 2px solid rgba(215, 56, 152, .75);
  outline-offset: 4px;
}

.gallery-grid article:nth-child(1),
.gallery-grid article:nth-child(6),
.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid article:nth-child(3),
.gallery-grid a:nth-child(3) {
  grid-row: span 2;
}

.gallery-showcase {
  margin-top: 34px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(96, 18, 125, .1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 56, 152, .12), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(31, 4, 47, .1);
}

.gallery-page-hero {
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 170px max(28px, calc((100% - var(--container)) / 2)) 86px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 0, 13, .92), rgba(33, 5, 47, .72)),
    linear-gradient(180deg, rgba(8, 0, 13, .2), rgba(8, 0, 13, .92)),
    url("../images/background-purple.png") center / cover no-repeat;
}

.gallery-page-hero > div {
  max-width: 760px;
}

.gallery-page-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(66px, 8vw, 118px);
  line-height: .92;
  letter-spacing: 0;
}

.gallery-page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.7;
}

.gallery-page-browser {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.album-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.album-tabs button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(96, 18, 125, .14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--purple);
  font-weight: 850;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
}

.album-tabs button:hover,
.album-tabs button.is-active {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
  transform: translateY(-2px);
}

.gallery-page-showcase {
  margin-top: 0;
}

.gallery-page-showcase .gallery-showcase-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.04;
}

.media-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(96, 18, 125, .1);
}

.media-section-title span {
  color: var(--purple-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-section-title strong {
  color: var(--ink);
  font-size: clamp(22px, 2.3vw, 32px);
}

.gallery-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gallery-showcase-head h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.gallery-showcase-head p {
  max-width: 520px;
  margin: 0;
  color: #6c6170;
  line-height: 1.65;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-photo {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #14031f;
  color: #ffffff;
  cursor: zoom-in;
  box-shadow: 0 18px 44px rgba(31, 4, 47, .16);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 0, 13, .06), rgba(8, 0, 13, .82));
}

.gallery-photo-info {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  text-align: left;
}

.gallery-photo-info span {
  color: var(--purple-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-photo-info strong {
  display: block;
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.gallery-photo-info em {
  display: block;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
  font-style: normal;
  line-height: 1.55;
}

.gallery-photo:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.gallery-photo.is-contain {
  background: #ffffff;
}

.gallery-photo.is-contain img {
  padding: 26px;
  object-fit: contain;
}

.gallery-photo.is-contain::after {
  background: linear-gradient(180deg, transparent 38%, rgba(8, 0, 13, .76));
}

.gallery-video {
  cursor: pointer;
}

.gallery-play {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.gallery-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--purple);
  transform: translate(-50%, -50%);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 0, 13, .82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 0;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  transform: translateY(18px) scale(.98);
  transition: transform .24s ease;
}

.gallery-lightbox.is-open .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-image-wrap {
  min-height: 460px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #09020f;
  cursor: zoom-in;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  transition: transform .25s ease;
}

.gallery-lightbox.is-zoomed .lightbox-image-wrap {
  cursor: zoom-out;
}

.gallery-lightbox.is-zoomed .lightbox-image-wrap img {
  transform: scale(1.28);
}

.gallery-lightbox.is-contain .lightbox-image-wrap {
  background: #ffffff;
}

.gallery-lightbox.is-contain .lightbox-image-wrap img {
  padding: clamp(20px, 4vw, 44px);
}

.lightbox-info {
  align-self: stretch;
  padding: clamp(24px, 3vw, 40px);
}

.lightbox-info span {
  color: var(--purple-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lightbox-info h3 {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.lightbox-info p {
  margin: 0 0 26px;
  color: #6c6170;
  line-height: 1.72;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  font-weight: 850;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.partner-marquee {
  --partner-gap: clamp(28px, 4vw, 52px);
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: clamp(22px, 2.5vw, 36px);
}

#partners {
  background: transparent;
  padding-top: 82px;
  padding-bottom: 32px;
}

#partners::before,
#partners::after {
  display: none;
}

#partners .section-heading {
  margin-bottom: 34px;
}

#news {
  padding-top: 58px;
}

.partner-track {
  display: flex;
  align-items: center;
  min-height: clamp(150px, 13vw, 210px);
  width: max-content;
  animation: partnerMarquee 24s linear infinite;
}

.partner-set {
  display: flex;
  align-items: center;
  gap: var(--partner-gap);
  flex: 0 0 auto;
  padding-right: var(--partner-gap);
}

.partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(150px, 13vw, 210px);
  height: clamp(130px, 11vw, 180px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.partner-logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
}

.partner-logo-square img {
  width: 82%;
  height: 82%;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo:hover {
  transform: translateY(-4px);
}

.cta-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
  padding: 86px max(28px, calc((100% - var(--container)) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 56, 152, .35), transparent 34%),
    linear-gradient(135deg, var(--purple), #1b0328);
}

.cta-section::before {
  content: "NEXUS";
  position: absolute;
  right: -20px;
  bottom: -40px;
  color: rgba(255, 255, 255, .06);
  font-size: clamp(110px, 18vw, 260px);
  font-weight: 950;
  line-height: .75;
  letter-spacing: 0;
  pointer-events: none;
}

.cta-section h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
}

.cta-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.7;
}

.copyright {
  margin-top: 24px;
  color: rgba(255, 255, 255, .48) !important;
}

.services-section,
.pricing-section {
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100% - var(--container)) / 2));
  background: #fbf7fd;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.services-grid article {
  padding: 36px 32px;
}

.services-grid h3 {
  margin-top: 24px;
  font-size: 22px;
}

.services-grid p {
  margin: 14px 0 0;
}

.training-carousel {
  position: relative;
  width: min(var(--container), 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: 14px 4px 60px;
}

.training-track {
  display: flex;
  gap: 26px;
  transition: transform .75s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.training-track article {
  position: relative;
  flex: 0 0 calc((100% - 52px) / 3);
  min-height: 355px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(96, 18, 125, .1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 56, 152, .18), transparent 34%),
    linear-gradient(145deg, #ffffff, #fbf7fd);
  box-shadow: 0 24px 70px rgba(31, 4, 47, .12);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.training-track article::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 18, 125, .18), rgba(215, 56, 152, .2));
}

.training-track article::after {
  content: "";
  position: absolute;
  inset: auto 26px 0 26px;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--purple-hot));
}

.training-track article:hover {
  border-color: rgba(215, 56, 152, .28);
  box-shadow: 0 34px 90px rgba(31, 4, 47, .18);
  transform: translateY(-8px);
}

.training-track .card-icon {
  position: relative;
  z-index: 1;
  width: 68px;
  border-radius: 22px;
}

.training-track small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 26px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(96, 18, 125, .08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.training-track h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.14;
}

.training-track p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #6c6170;
  line-height: 1.75;
}

.training-dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.training-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(96, 18, 125, .18);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.training-dots button.is-active {
  width: 58px;
  background: linear-gradient(90deg, var(--purple), var(--purple-hot));
}

.projects-section {
  overflow: hidden;
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.filter-row button {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid #eadced;
  border-radius: 999px;
  color: var(--purple);
  font-weight: 800;
  background: #ffffff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 26px;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(8, 0, 13, .06) 0%, rgba(8, 0, 13, .38) 44%, rgba(8, 0, 13, .92) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .72), transparent 58%),
    url("../images/background-purple.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.project-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(215, 56, 152, .22), transparent 32%);
  pointer-events: none;
}

.project-grid article > * {
  position: relative;
  z-index: 1;
}

.project-arm {
  background-image:
    linear-gradient(180deg, rgba(8, 0, 13, .05) 0%, rgba(8, 0, 13, .36) 42%, rgba(8, 0, 13, .94) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .76), transparent 60%),
    url("../images/Arm_robotics.png") !important;
}

.project-platform {
  background-image:
    linear-gradient(180deg, rgba(8, 0, 13, .05) 0%, rgba(8, 0, 13, .36) 42%, rgba(8, 0, 13, .94) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .76), transparent 60%),
    url("../images/platform_nexus.png") !important;
}

.project-iot {
  background-image:
    linear-gradient(180deg, rgba(8, 0, 13, .05) 0%, rgba(8, 0, 13, .36) 42%, rgba(8, 0, 13, .94) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .78), transparent 60%),
    url("../images/conected_systeme.png") !important;
}

.project-arduino {
  background-image:
    linear-gradient(180deg, rgba(8, 0, 13, .05) 0%, rgba(8, 0, 13, .36) 42%, rgba(8, 0, 13, .94) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .78), transparent 60%),
    url("../images/Embedded_Projects.png") !important;
}

.project-printing {
  background-image:
    linear-gradient(180deg, rgba(8, 0, 13, .05) 0%, rgba(8, 0, 13, .36) 42%, rgba(8, 0, 13, .94) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .78), transparent 60%),
    url("../images/TechnicalPrototypes.png") !important;
}

.project-ai {
  background-image:
    linear-gradient(180deg, rgba(8, 0, 13, .05) 0%, rgba(8, 0, 13, .36) 42%, rgba(8, 0, 13, .94) 100%),
    linear-gradient(90deg, rgba(96, 18, 125, .78), transparent 60%),
    url("../images/SmartApplications.png") !important;
}

.project-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
}

.project-grid article:nth-child(2n) {
  background-position: 70% center;
}

.project-grid span,
.team-grid span,
.pricing-grid span {
  color: var(--purple-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-grid h3 {
  margin-top: 8px;
  font-size: 26px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.pricing-grid article {
  padding: 38px 34px;
}

.pricing-grid h3 {
  margin-top: 12px;
  font-size: 42px;
}

.pricing-grid ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
  color: #6c6170;
}

.pricing-grid li::before {
  content: "+";
  margin-right: 10px;
  color: var(--purple-hot);
  font-weight: 900;
}

.featured-price {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 56, 152, .42), transparent 34%),
    linear-gradient(145deg, var(--purple), #210330) !important;
  transform: translateY(-18px);
}

.featured-price h3,
.featured-price span {
  color: #ffffff;
}

.featured-price ul {
  color: rgba(255, 255, 255, .78);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.board-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-grid article {
  text-align: left;
}

.board-grid p {
  margin: 12px 0 0;
  font-size: 14px;
}

.team-grid article {
  padding: 18px 18px 26px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-grid div {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.06;
  margin-bottom: 22px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 0, 13, .08), rgba(8, 0, 13, .58)),
    url("../images/background-purple.png") center / cover no-repeat;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(8, 0, 13, .72)),
    radial-gradient(circle at 20% 10%, rgba(215, 56, 152, .2), transparent 34%);
  pointer-events: none;
}

.placeholder-photo::before {
  content: "NEXUS";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .3);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: .08em;
}

.team-grid article:hover .member-photo img {
  transform: scale(1.06);
}

.team-grid h3 {
  margin-top: 8px;
  font-size: 21px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 70px;
  padding: 70px 0;
  color: rgba(255, 255, 255, .74);
}

footer.site-footer {
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100% - var(--container)) / 2));
  background: #08000d;
}

.site-footer img {
  width: 210px;
  margin-bottom: 22px;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: fixed;
    padding-top: 14px;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-logo {
    width: 148px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: rgba(18, 3, 28, .96);
  }

  .site-header.is-open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-inner,
  .split-section,
  .service-strip,
  .services-grid,
  .project-grid,
  .pricing-grid,
  .team-grid,
  .gallery-photo-grid,
  .board-grid,
  .two-column,
  .wide-list,
  .join-experience,
  .join-benefits,
  .stats-band,
  .stats-grid,
  .timeline-grid,
  .compact-grid,
  .gallery-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 400px;
  }

  .service-strip {
    margin-top: 52px;
  }

  .stats-band {
    gap: 48px;
    min-height: auto;
  }

  .stats-intro {
    text-align: center;
  }

  .stats-intro .eyebrow {
    justify-content: center;
  }

  .stats-intro p {
    max-width: 620px;
    margin-inline: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 34px;
  }

  .training-track article {
    flex-basis: calc((100% - 26px) / 2);
  }

  .split-section,
  .section,
  .content-section,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-price {
    transform: none;
  }
}

@media (max-width: 620px) {
  .topbar,
  .navbar,
  .hero-inner,
  .service-strip,
  .split-section,
  .section,
  .content-section,
  .gallery-page-browser,
  .stats-band,
  .site-footer {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    font-size: 44px;
  }

  .stats-band {
    width: 100%;
    padding-block: 76px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid strong {
    font-size: 68px;
  }

  .training-track article {
    flex-basis: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions span {
    text-align: center;
  }

  .service-strip article {
    grid-template-columns: 1fr;
  }

  .service-strip p {
    grid-column: auto;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .hero-card {
    inset: 30px 0;
  }

  .floating-card {
    min-width: 142px;
  }
}

.navbar {
  transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled .navbar {
  min-height: 72px;
  background: rgba(17, 3, 27, .88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
}

.hero-visual {
  transition: transform .18s ease-out;
}

.service-icon svg,
.card-icon svg {
  width: 28px;
  height: 28px;
}

.service-icon path,
.card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.text-card,
.services-grid article,
.project-grid article,
.team-grid article,
.timeline-grid article,
.compact-grid article,
.gallery-grid article,
.gallery-grid a,
.partner-logo,
.feature-list li,
.stats-grid article {
  transition: opacity .72s ease, transform .25s ease, box-shadow .25s ease, background-position .35s ease;
}

.feature-list li:hover,
.timeline-grid article:hover,
.gallery-grid article:hover,
.gallery-grid a:hover,
.stats-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(31, 4, 47, .14);
}

.gallery-grid article:hover,
.gallery-grid a:hover {
  background-position: 60% center;
}

.filter-row button {
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.filter-row button:hover,
.filter-row button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
  transform: translateY(-2px);
}

.project-grid article.is-hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .72s ease, transform .72s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  pointer-events: none;
  animation: pulseFrame 3.6s ease-in-out infinite;
}

.floating-card-a {
  animation: floatOne 5.5s ease-in-out infinite;
}

.floating-card-b {
  animation: floatTwo 6s ease-in-out infinite;
}

@keyframes pulseFrame {
  0%, 100% {
    opacity: .25;
    transform: scale(.98);
  }

  50% {
    opacity: .65;
    transform: scale(1);
  }
}

@keyframes floatOne {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatTwo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@keyframes particleFloat {
  from {
    transform: translate3d(0, 0, 0) scale(.85);
    opacity: .25;
  }

  to {
    transform: translate3d(var(--move-x), var(--move-y), 0) scale(1.15);
    opacity: .75;
  }
}

@keyframes departmentPulse {
  0%, 100% {
    opacity: .42;
    transform: scale(.96);
  }

  50% {
    opacity: .9;
    transform: scale(1.05);
  }
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .timeline-grid::before {
    left: 18px;
  }

  .timeline-grid article,
  .timeline-grid article:nth-child(even) {
    margin-left: 38px;
    transform: none;
  }

  .timeline-grid article::before,
  .timeline-grid article:nth-child(even)::before {
    right: auto;
    left: -46px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid article:nth-child(1),
  .gallery-grid article:nth-child(3),
  .gallery-grid article:nth-child(6),
  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(3),
  .gallery-grid a:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 44px);
    overflow-y: auto;
  }

  .lightbox-image-wrap,
  .lightbox-image-wrap img {
    min-height: 360px;
  }

  .department-command {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 24px;
  }

  .command-screen {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .gallery-photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-hero {
    min-height: 440px;
    padding: 140px 22px 64px;
  }

  .gallery-page-hero h1 {
    font-size: 58px;
  }

  .album-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-photo,
  .gallery-photo img {
    min-height: 240px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .lightbox-image-wrap,
  .lightbox-image-wrap img {
    min-height: 300px;
  }

  .department-node {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .department-node em {
    justify-self: start;
  }

  .department-node:hover,
  .department-node.is-active {
    transform: translateY(-5px);
  }
}

@media (max-width: 720px) {
  .join-experience {
    min-height: auto;
    padding: 22px;
    border-radius: 30px;
  }

  .join-experience::before,
  .join-experience::after,
  .join-benefits article::before {
    display: none;
  }

  .join-core {
    min-height: 330px;
    border-radius: 32px;
  }

  .join-benefits article {
    padding: 82px 22px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .partner-track {
    animation: none !important;
    transform: none !important;
  }
}


