/* ================================================================
   AEVORIX TECH
   NAVBAR + HERO SECTION

   TABLE OF CONTENTS
   ---------------------------------------------------------------
   01. Design Tokens
   02. Reset
   03. Base Styles
   04. Background Effects
   05. Navbar
   06. Mobile Navigation
   07. Hero Layout
   08. Hero Typography
   09. Buttons
   10. Hero Visual
   11. Floating Cards
   12. Hero Bottom Bar
   13. Reveal Animations
   14. Placeholder Section
   15. Responsive Design
   16. Reduced Motion
================================================================ */

/* ================================================================
   01. DESIGN TOKENS
================================================================ */

:root {
  /* Brand Colors */
  --blue: #0878ff;
  --blue-light: #00b8ff;
  --blue-deep: #0758e8;

  --green: #73ed31;
  --green-light: #9cff4b;

  /* Background */
  --navy-950: #020817;
  --navy-900: #031126;
  --navy-850: #06162d;
  --navy-800: #091d38;

  /* Neutral */
  --white: #f7faff;
  --text: #eaf1fb;
  --muted: #8d9cb3;
  --muted-light: #b5c0d0;

  /* Borders */
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(255, 255, 255, 0.16);

  /* Glass */
  --glass: rgba(8, 22, 44, 0.62);
  --glass-heavy: rgba(4, 15, 33, 0.9);

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  /* Layout */
  --container: 1400px;

  /* Navbar */
  --nav-height: 92px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 350ms var(--ease);
}

/* ================================================================
   02. RESET
================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;

  background:
    radial-gradient(
      circle at 70% 10%,
      rgba(0, 112, 255, 0.08),
      transparent 30%
    ),
    var(--navy-950);

  color: var(--text);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

/* ================================================================
   03. BASE STYLES
================================================================ */

.container {
  width: min(calc(100% - 64px), var(--container));

  margin-inline: auto;
}

/* Selection */
::selection {
  background: var(--green);
  color: var(--navy-950);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
  background: #173252;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* ================================================================
   04. BACKGROUND EFFECTS
================================================================ */

/*
   Very subtle texture.
   Helps avoid a completely flat AI-template appearance.
*/

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;

  pointer-events: none;

  opacity: 0.025;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

/* Cursor-following ambient light */
.cursor-glow {
  position: fixed;

  width: 420px;
  height: 420px;

  left: 0;
  top: 0;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 119, 255, 0.11), transparent 68%);

  pointer-events: none;

  transform: translate(-50%, -50%);

  z-index: 0;

  opacity: 0;

  transition: opacity 300ms ease;
}

/* ================================================================
   05. NAVBAR
================================================================ */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  border-bottom: 1px solid transparent;

  transition:
    background var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition);
}

/* Applied through JS after scrolling */
.site-header.scrolled {
  background: rgba(2, 8, 23, 0.76);

  border-color: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar {
  height: var(--nav-height);

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;
}

/* Brand */
/* .brand {
  justify-self: start;

  display: inline-flex;
  align-items: center;

  position: relative;
  z-index: 1002;
}

.brand-logo {
  width: 190px;
  max-height: 54px;

  object-fit: contain;
  object-position: left center;
} */

.brand {
  justify-self: start;

  display: inline-flex;
  align-items: center;

  position: relative;
  z-index: 1002;

  width: 150px;
  height: 54px;

  overflow: visible;
}

.brand-logo {
  display: block;

  width: 100%;
  height: 100%;

  max-width: none;
  max-height: none;

  object-fit: contain;
  object-position: left center;
}

/* Desktop center links */
.nav-center {
  display: flex;
  align-items: center;

  gap: 34px;
}

.nav-link {
  position: relative;

  padding-block: 12px;

  color: var(--muted-light);

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.02em;

  transition: color var(--transition);
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 4px;

  width: 0;
  height: 2px;

  border-radius: 20px;

  background: linear-gradient(90deg, var(--blue-light), var(--green));

  transform: translateX(-50%);

  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 18px;
}

/* Right CTA */
.nav-actions {
  justify-self: end;
}

.nav-cta {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 12px 18px;

  border: 1px solid var(--border-bright);

  border-radius: 100px;

  color: var(--white);

  font-size: 13px;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.035);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.nav-cta svg {
  width: 18px;
  height: 18px;

  transition: transform var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);

  border-color: rgba(115, 237, 49, 0.5);

  background: rgba(115, 237, 49, 0.06);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

/* Mobile menu button */
.menu-toggle {
  display: none;

  position: relative;

  width: 48px;
  height: 48px;

  border: 1px solid var(--border);

  border-radius: 50%;

  z-index: 1002;
}

.menu-toggle span {
  position: absolute;

  left: 50%;

  width: 18px;
  height: 1.5px;

  background: var(--white);

  transform-origin: center;

  transition:
    transform var(--transition),
    top var(--transition);
}

.menu-toggle span:first-child {
  top: 20px;

  transform: translateX(-50%);
}

.menu-toggle span:last-child {
  top: 26px;

  transform: translateX(-50%);
}
/* ================================================================
   MOBILE MENU — VIEWPORT OVERLAY FIX
================================================================ */

@media (max-width: 1024px) {
  /*
     IMPORTANT:
     backdrop-filter on the header can interfere with a fixed
     descendant mobile menu on some mobile browsers.
  */

  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    background: transparent;
    border-color: transparent;
  }

  /*
     Force mobile navigation to occupy the real viewport.
  */

  .mobile-menu {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    overflow-y: auto;
    overscroll-behavior: contain;

    background: #020817;

    z-index: 1001;
  }

  /*
     Inner content must fill complete navigation viewport.
  */

  .mobile-menu-inner {
    width: 100%;

    min-height: calc(100dvh - var(--nav-height) - 70px);

    height: auto;
  }

  /*
     Keep logo and close button above menu overlay.
  */

  .brand,
  .menu-toggle {
    position: relative;

    z-index: 1002;
  }
}
/* Animated close state */
.menu-toggle.active span:first-child {
  top: 23px;

  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
  top: 23px;

  transform: translateX(-50%) rotate(-45deg);
}

/* ================================================================
   06. MOBILE NAVIGATION
================================================================ */

.mobile-menu {
  display: none;

  position: fixed;
  inset: 0;

  z-index: 1001;

  padding: calc(var(--nav-height) + 40px) 24px 30px;

  background: rgba(2, 8, 23, 0.97);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  opacity: 0;

  visibility: hidden;

  transform: translateY(-20px);

  transition:
    opacity 400ms var(--ease),
    visibility 400ms,
    transform 400ms var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.mobile-menu-inner {
  height: 100%;

  display: flex;
  flex-direction: column;
}

.mobile-menu-label {
  margin-bottom: 22px;

  color: var(--green);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-link {
  display: flex;
  align-items: center;

  gap: 20px;

  padding: 14px 0;

  border-bottom: 1px solid var(--border);

  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 48px);
  font-weight: 600;

  line-height: 1.2;
}

.mobile-link-number {
  width: 28px;

  color: var(--muted);

  font-family: var(--font-body);
  font-size: 10px;
}

.mobile-menu-footer {
  margin-top: auto;

  display: flex;
  justify-content: space-between;

  gap: 30px;

  color: var(--muted);

  font-size: 12px;
}

.mobile-menu-footer p {
  color: var(--white);
}

/* ================================================================
   07. HERO LAYOUT
================================================================ */

.hero {
  position: relative;

  min-height: 100svh;

  padding-top: var(--nav-height);

  display: flex;
  flex-direction: column;

  overflow: hidden;

  isolation: isolate;
}

/* Technical background grid */
.hero-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  background-image:
    linear-gradient(rgba(53, 117, 190, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 117, 190, 0.055) 1px, transparent 1px);

  background-size: 70px 70px;

  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

/* Ambient orbs */
.hero-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(20px);

  pointer-events: none;

  z-index: -2;
}

.hero-orb-blue {
  width: 650px;
  height: 650px;

  right: -220px;
  top: -120px;

  background: radial-gradient(circle, rgba(0, 110, 255, 0.16), transparent 68%);
}

.hero-orb-green {
  width: 400px;
  height: 400px;

  left: 34%;
  bottom: -260px;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.09),
    transparent 70%
  );
}

.hero-container {
  flex: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(460px, 0.98fr);

  align-items: center;

  gap: 40px;

  padding-top: 42px;
  padding-bottom: 32px;
}

/* ================================================================
   08. HERO TYPOGRAPHY
================================================================ */

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  padding: 8px 13px;

  border: 1px solid rgba(115, 237, 49, 0.18);

  border-radius: 100px;

  background: rgba(115, 237, 49, 0.04);

  color: #b9c8da;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 16px rgba(115, 237, 49, 0.8);
}

.status-dot::after {
  content: "";

  position: absolute;
  inset: -5px;

  border: 1px solid rgba(115, 237, 49, 0.4);

  border-radius: 50%;

  animation: statusPulse 2s ease-out infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);

  font-size: clamp(52px, 5.1vw, 88px);

  font-weight: 600;

  letter-spacing: -0.055em;

  line-height: 0.98;

  color: var(--white);
}

.title-line {
  display: block;
}

.gradient-text {
  color: transparent;

  background: linear-gradient(
    100deg,
    #eef7ff 0%,
    var(--blue-light) 42%,
    var(--blue) 68%,
    var(--green) 100%
  );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 650px;

  margin-top: 28px;

  color: var(--muted-light);

  font-size: clamp(15px, 1.1vw, 18px);

  line-height: 1.8;
}

/* Capabilities */
.hero-capabilities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: 30px;

  color: #708198;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-capabilities i {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: var(--green);
}

/* ================================================================
   09. BUTTONS
================================================================ */

.hero-actions {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 34px;
}

.btn {
  position: relative;

  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 0 20px;

  border-radius: 100px;

  font-size: 13px;
  font-weight: 700;

  overflow: hidden;

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn-primary {
  min-width: 185px;

  justify-content: space-between;

  padding-left: 24px;
  padding-right: 7px;

  color: var(--navy-950);

  background: linear-gradient(110deg, var(--green-light), var(--green));

  box-shadow: 0 12px 40px rgba(115, 237, 49, 0.15);
}

.btn-primary::before {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  left: -120px;

  background: rgba(255, 255, 255, 0.4);

  transform: skewX(-20deg);

  transition: left 600ms var(--ease);
}

.btn-primary:hover::before {
  left: 220px;
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 16px 50px rgba(115, 237, 49, 0.25);
}

.btn-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(2, 8, 23, 0.12);
}

.btn-icon svg {
  width: 18px;
  height: 18px;

  transition: transform var(--transition);
}

.btn-primary:hover .btn-icon svg {
  transform: translateX(3px);
}

/* Secondary */
.btn-secondary {
  padding-inline: 20px;

  border: 1px solid var(--border-bright);

  background: rgba(255, 255, 255, 0.025);
}

.btn-secondary:hover {
  transform: translateY(-3px);

  border-color: rgba(0, 184, 255, 0.5);
}

.play-icon {
  width: 29px;
  height: 29px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(8, 120, 255, 0.14);

  color: var(--blue-light);
}

.play-icon svg {
  width: 14px;
  height: 14px;
}

/* ================================================================
   10. HERO VISUAL
================================================================ */

.hero-visual {
  position: relative;

  width: 100%;
  max-width: 650px;

  aspect-ratio: 1 / 1;

  justify-self: end;

  perspective: 1000px;
}

/* Orbit circles */
.orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  border: 1px dashed rgba(87, 155, 230, 0.15);

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.orbit-one {
  width: 82%;
  height: 82%;

  animation: rotateOrbit 35s linear infinite;
}

.orbit-two {
  width: 64%;
  height: 64%;

  border-style: solid;

  border-color: rgba(115, 237, 49, 0.08);

  animation: rotateOrbitReverse 28s linear infinite;
}

@keyframes rotateOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateOrbitReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Central visual */
.hero-visual > .tech-core {
  position: absolute;

  width: 76%;
  height: 76%;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: grid;
  place-items: center;
}

.core-glow {
  position: absolute;

  width: 60%;
  height: 60%;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.23), transparent 70%);

  filter: blur(12px);

  animation: coreBreath 4s ease-in-out infinite;
}

@keyframes coreBreath {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.core-svg {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: visible;

  filter: drop-shadow(0 30px 70px rgba(0, 70, 180, 0.18));
}

.svg-ring {
  fill: none;

  stroke: rgba(88, 157, 235, 0.16);

  stroke-width: 1;
}

.ring-a {
  stroke-dasharray: 4 12;

  transform-origin: center;

  animation: svgRotate 28s linear infinite;
}

.ring-b {
  stroke: rgba(115, 237, 49, 0.1);

  stroke-dasharray: 2 8;

  transform-origin: center;

  animation: svgRotate 20s linear infinite reverse;
}

@keyframes svgRotate {
  to {
    transform: rotate(360deg);
  }
}

.network-lines path {
  fill: none;

  stroke: rgba(70, 144, 230, 0.13);

  stroke-width: 1;
}

.core-polygon {
  fill: rgba(6, 26, 55, 0.65);

  stroke: rgba(0, 184, 255, 0.2);

  stroke-width: 1;
}

.node {
  filter: drop-shadow(0 0 8px currentColor);

  animation: nodePulse 2.8s ease-in-out infinite;
}

.node-blue {
  fill: var(--blue-light);
  color: var(--blue-light);
}

.node-green {
  fill: var(--green);
  color: var(--green);
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Center text */
.core-label {
  position: absolute;

  left: 50%;
  bottom: 18%;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 2px;

  pointer-events: none;
}

.core-label span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.25em;
}

.core-label small {
  color: var(--muted);

  font-size: 7px;

  letter-spacing: 0.18em;
}

/* ================================================================
   11. FLOATING CARDS
================================================================ */

.floating-card {
  position: absolute;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 11px;

  min-width: 150px;

  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, 0.11);

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(14, 37, 70, 0.78),
    rgba(4, 16, 35, 0.78)
  );

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: transform 150ms ease-out;
}

.floating-card strong {
  display: block;

  color: var(--white);

  font-size: 11px;
  font-weight: 700;
}

.floating-card small {
  display: block;

  margin-top: 1px;

  color: var(--muted);

  font-size: 8px;
}

.floating-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: rgba(0, 132, 255, 0.13);

  color: var(--blue-light);

  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
}

/* Card positioning */
.card-web {
  left: 0;
  top: 23%;

  animation: cardFloat 5s ease-in-out infinite;
}

.card-ai {
  right: 0;
  top: 38%;

  animation: cardFloat 6s ease-in-out infinite 1s;
}

.card-game {
  left: 10%;
  bottom: 14%;

  animation: cardFloat 5.5s ease-in-out infinite 0.5s;
}

@keyframes cardFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

/* AI pulse icon */
.ai-pulse {
  position: relative;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    var(--green) 0 12%,
    rgba(115, 237, 49, 0.16) 13% 40%,
    transparent 41%
  );
}

.ai-pulse::before,
.ai-pulse::after {
  content: "";

  position: absolute;
  inset: 4px;

  border: 1px solid rgba(115, 237, 49, 0.35);

  border-radius: 50%;

  animation: aiRing 2s ease-out infinite;
}

.ai-pulse::after {
  animation-delay: 1s;
}

@keyframes aiRing {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Game icon */
.game-shape {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  color: #c4a7ff;

  background: rgba(133, 76, 255, 0.12);
}

.game-shape svg {
  width: 21px;
  height: 21px;
}

/* Code badge */
.code-badge {
  position: absolute;

  right: 12%;
  bottom: 8%;

  display: flex;
  align-items: center;

  gap: 8px;

  padding: 8px 11px;

  border: 1px solid rgba(0, 184, 255, 0.12);

  border-radius: 8px;

  background: rgba(3, 15, 32, 0.7);

  color: #73869e;

  font-size: 8px;
}

.code-dot {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 10px var(--green);
}

/* ================================================================
   12. HERO BOTTOM BAR
================================================================ */

.hero-bottom {
  min-height: 82px;

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 30px;

  border-top: 1px solid var(--border);
}

/* Availability */
.availability {
  display: flex;
  align-items: center;

  gap: 12px;

  color: var(--muted);

  font-size: 10px;
}

.availability p {
  display: flex;
  flex-direction: column;
}

.availability strong {
  color: var(--white);
  font-weight: 600;
}

.availability-icon {
  position: relative;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(115, 237, 49, 0.2);

  border-radius: 50%;
}

.availability-icon::before {
  content: "";

  position: absolute;

  width: 6px;
  height: 6px;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  background: var(--green);

  transform: translate(-50%, -50%);

  box-shadow: 0 0 10px var(--green);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  align-items: center;

  gap: 14px;

  color: #687a92;

  font-size: 9px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;

  width: 50px;
  height: 1px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.12);
}

.scroll-line i {
  position: absolute;

  width: 50%;
  height: 100%;

  background: linear-gradient(90deg, var(--blue), var(--green));

  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* Coordinates */
.location {
  justify-self: end;

  display: grid;

  grid-template-columns: auto auto;

  gap: 0 12px;

  color: #63758d;

  font-size: 8px;

  letter-spacing: 0.08em;
}

.location strong {
  grid-column: 1 / -1;

  margin-top: 3px;

  color: #a4b1c3;

  font-size: 9px;
  font-weight: 600;

  text-align: right;
}

/* ================================================================
   13. REVEAL ANIMATIONS
================================================================ */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  animation: revealElement 900ms var(--ease) forwards;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 320ms;
}

.delay-4 {
  animation-delay: 440ms;
}

.delay-5 {
  animation-delay: 560ms;
}

@keyframes revealElement {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ================================================================
   14. PLACEHOLDER SECTION
================================================================ */

.section-placeholder {
  min-height: 70vh;

  display: grid;
  place-items: center;

  padding: 120px 0;

  background: #f6f9fc;

  color: var(--navy-950);
}

.section-index {
  display: block;

  margin-bottom: 16px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.section-placeholder h2 {
  max-width: 850px;

  font-family: var(--font-display);

  font-size: clamp(42px, 6vw, 86px);

  font-weight: 600;

  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-placeholder h2 span {
  color: var(--blue);
}

/* ================================================================
   15. RESPONSIVE DESIGN
================================================================ */

/* ------------------------------------------------
   LARGE LAPTOP
------------------------------------------------ */

@media (max-width: 1250px) {
  :root {
    --nav-height: 84px;
  }

  .nav-center {
    gap: 22px;
  }

  .hero-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(420px, 0.9fr);
  }

  .hero-title {
    font-size: clamp(50px, 5.4vw, 72px);
  }

  .hero-visual {
    max-width: 560px;
  }

  .floating-card {
    transform: scale(0.9);
  }
}

/* ------------------------------------------------
   TABLET / SMALL LAPTOP
------------------------------------------------ */

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .navbar {
    grid-template-columns: 1fr auto;
  }

  .nav-center,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    min-height: 900px;

    grid-template-columns: 1fr 0.8fr;

    gap: 10px;

    padding-top: 50px;
  }

  .hero-title {
    font-size: clamp(50px, 6.3vw, 68px);
  }

  .hero-visual {
    width: 125%;

    margin-left: -15%;
  }

  .floating-card {
    min-width: 135px;

    padding: 10px;
  }

  .card-web {
    left: 5%;
  }

  .card-ai {
    right: 2%;
  }
}

/* ------------------------------------------------
   TABLET PORTRAIT
------------------------------------------------ */

@media (max-width: 820px) {
  .hero-container {
    min-height: auto;

    grid-template-columns: 1fr;

    padding-top: 70px;
    padding-bottom: 10px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-title {
    font-size: clamp(52px, 9vw, 76px);
  }

  .hero-description {
    max-width: 600px;
  }

  .hero-visual {
    width: 100%;
    max-width: 580px;

    margin: -10px auto -30px;

    justify-self: center;
  }

  .hero-bottom {
    min-height: 90px;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

/* ------------------------------------------------
   MOBILE
------------------------------------------------ */

@media (max-width: 600px) {
  :root {
    --nav-height: 76px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .brand-logo {
    width: 150px;
    max-height: 80px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-container {
    padding-top: 48px;
  }

  .hero-eyebrow {
    margin-bottom: 20px;

    font-size: 9px;

    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(44px, 13.2vw, 64px);

    line-height: 1.01;

    letter-spacing: -0.06em;
  }

  .hero-description {
    margin-top: 22px;

    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;

    margin-top: 28px;
  }

  .btn {
    width: 100%;
  }

  .btn-primary {
    justify-content: space-between;
  }

  .hero-capabilities {
    gap: 10px;

    margin-top: 24px;

    font-size: 8px;
  }

  /* Visual is simplified but remains rich */
  .hero-visual {
    margin-top: 15px;

    min-height: 390px;

    aspect-ratio: auto;
  }

  .hero-visual > .tech-core {
    width: 105%;
    height: auto;

    aspect-ratio: 1;
  }

  .orbit-one {
    width: 100%;
    height: 100%;
  }

  .orbit-two {
    width: 75%;
    height: 75%;
  }

  .floating-card {
    min-width: 128px;

    padding: 9px;

    border-radius: 11px;
  }

  .floating-card strong {
    font-size: 9px;
  }

  .floating-card small {
    font-size: 7px;
  }

  .floating-icon,
  .ai-pulse,
  .game-shape {
    width: 29px;
    height: 29px;
  }

  .card-web {
    left: -2%;
    top: 16%;
  }

  .card-ai {
    right: -2%;
    top: 46%;
  }

  .card-game {
    left: 2%;
    bottom: 6%;
  }

  .code-badge {
    right: 2%;
    bottom: 1%;
  }

  .hero-bottom {
    min-height: 95px;

    grid-template-columns: 1fr;

    padding: 20px 0;

    gap: 0;
  }

  .location {
    display: none;
  }

  .availability {
    justify-self: start;
  }

  .mobile-menu-footer {
    flex-direction: column;

    gap: 5px;
  }
}

/* ------------------------------------------------
   VERY SMALL MOBILE
------------------------------------------------ */

@media (max-width: 380px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-eyebrow {
    font-size: 8px;
  }

  .card-ai {
    right: -8%;
  }

  .floating-card {
    transform: scale(0.88);
  }
}

/* ================================================================
   16. REDUCED MOTION ACCESSIBILITY
================================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}
/* ================================================================
   ================================================================
   AEVORIX TECH — SERVICES SECTION V2
   COMPLETE CSS
   
   IMPORTANT:
   Remove all previous Services section CSS before adding this file.
   
   Structure:
   1. Main Section
   2. Background Effects
   3. Section Header
   4. Services Grid
   5. Service Cards
   6. Card Header & Icon
   7. Card Content
   8. PNG Image System
   9. Capability Rows
   10. Bottom CTA
   11. Scroll Reveal
   12. Responsive
   13. Accessibility
   ================================================================
   ================================================================ */

/* ================================================================
   1. MAIN SERVICES SECTION
================================================================ */

.services-v2 {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 90px;

  overflow: hidden;

  color: var(--navy-950, #020817);

  background: linear-gradient(180deg, #f8fbff 0%, #f1f7fd 48%, #edf5fc 100%);
}

/*
   If your project already has a global .container,
   you can remove this block.
*/

.services-v2 .container {
  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   2. BACKGROUND EFFECTS
================================================================ */

/* Subtle technical grid */

.services-v2-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(8, 120, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 255, 0.035) 1px, transparent 1px);

  background-size: 70px 70px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

/* Decorative glow orbs */

.services-v2-orb {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.services-v2-orb-blue {
  width: 700px;
  height: 700px;

  top: 10%;
  right: -430px;

  background: radial-gradient(
    circle,
    rgba(8, 120, 255, 0.09) 0%,
    rgba(8, 120, 255, 0.03) 40%,
    transparent 72%
  );
}

.services-v2-orb-green {
  width: 550px;
  height: 550px;

  left: -350px;
  bottom: 8%;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.07) 0%,
    rgba(115, 237, 49, 0.02) 42%,
    transparent 72%
  );
}

/* ================================================================
   3. SECTION HEADER
================================================================ */

.services-v2-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 60px;
}

/* Kicker */

.services-v2-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--blue, #0878ff);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.services-v2-kicker span {
  display: block;

  width: 30px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--blue, #0878ff),
    var(--green, #73ed31)
  );
}

/* Main heading */

.services-v2-heading h2 {
  max-width: 900px;

  margin: 0;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(48px, 5.2vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;

  color: var(--navy-950, #020817);
}

.services-v2-heading h2 span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #0878ff 0%, #00b8ff 48%, #73ed31 100%);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

/* Header description */

.services-v2-intro {
  padding-bottom: 5px;
}

.services-v2-intro p {
  margin: 0;

  color: #647388;

  font-size: 14px;

  line-height: 1.8;
}

/* Header link */

.services-v2-intro > a {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: var(--navy-950, #020817);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition: color 300ms ease;
}

.services-v2-intro > a svg {
  width: 18px;
  height: 18px;

  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-v2-intro > a:hover {
  color: var(--blue, #0878ff);
}

.services-v2-intro > a:hover svg {
  transform: translateX(5px);
}

/* ================================================================
   4. SERVICES GRID
================================================================ */

.services-v2-grid-layout {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;

  align-items: stretch;
}

/* ================================================================
   5. SERVICE CARD
================================================================ */

.service-v2-card {
  position: relative;

  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: 24px;

  overflow: hidden;

  border: 1px solid rgba(3, 17, 38, 0.085);

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.82);

  box-shadow: 0 15px 50px rgba(13, 46, 84, 0.045);

  transform: translateZ(0);

  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 500ms ease,
    box-shadow 500ms ease,
    background 500ms ease;
}

/* Top corner glow */

.service-v2-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -180px;
  right: -170px;

  z-index: 0;

  border-radius: 50%;

  pointer-events: none;

  opacity: 0;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.13), transparent 70%);

  transition:
    opacity 500ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card hover */

.service-v2-card:hover {
  transform: translateY(-7px);

  border-color: rgba(8, 120, 255, 0.22);

  background: rgba(255, 255, 255, 0.94);

  box-shadow: 0 30px 75px rgba(13, 46, 84, 0.11);
}

.service-v2-card:hover::before {
  opacity: 1;

  transform: scale(1.5);
}

/* ================================================================
   6. CARD HEADER & ICON
================================================================ */

/* ================================================================
   SERVICE TITLE ROW — ICON + TITLE
================================================================ */

.service-v2-title-row {
  display: flex;
  align-items: center;

  gap: 14px;

  width: 100%;

  margin-top: 4px;
}

.service-v2-title-row .service-v2-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;
}

.service-v2-title-row h3 {
  flex: 1;

  min-width: 0;

  margin: 0;
}

/* Icon container */

.service-v2-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border: 1px solid rgba(8, 120, 255, 0.13);

  border-radius: 14px;

  color: var(--blue, #0878ff);

  background: linear-gradient(
    135deg,
    rgba(8, 120, 255, 0.08),
    rgba(115, 237, 49, 0.045)
  );

  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    background 500ms ease,
    box-shadow 500ms ease;
}

/* SVG icon */

.service-v2-icon svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.4;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Icon hover animation */

.service-v2-card:hover .service-v2-icon {
  transform: rotate(-4deg) scale(1.06);

  background: rgba(8, 120, 255, 0.1);

  box-shadow: 0 10px 25px rgba(8, 120, 255, 0.1);
}

/* ================================================================
   7. CARD TITLE & DESCRIPTION
================================================================ */

.service-v2-title {
  position: relative;

  z-index: 3;

  margin-top: 0px;
}

/* Category */

.service-v2-category {
  display: block;

  margin-bottom: 8px;

  color: var(--blue, #0878ff);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

/* Service name */

.service-v2-title h3 {
  margin: 0;

  color: var(--navy-950, #020817);

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(27px, 2.2vw, 36px);

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -0.045em;
}

/* Description */

.service-v2-title p {
  min-height: 66px;

  margin: 12px 0 0;

  color: #68778b;

  font-size: 11px;

  line-height: 1.72;
}

/* ================================================================
   8. PNG IMAGE SYSTEM
   IMPORTANT: NO CROPPING
================================================================ */

.service-v2-image {
  position: relative;

  z-index: 2;

  /*
       Full bleed image:
       Card has 24px padding on both sides,
       so we compensate with +48px width.
    */

  width: calc(100% + 48px);

  margin: 20px -24px 20px;

  overflow: hidden;

  border-top: 1px solid rgba(3, 17, 38, 0.06);

  border-bottom: 1px solid rgba(3, 17, 38, 0.06);

  background: #f4f7fb;

  isolation: isolate;
}

/*
   IMPORTANT:
   
   height: auto = original ratio preserved
   No fixed height
   No object-fit: cover
   Therefore no cropping.
*/

.service-v2-image img {
  position: relative;

  width: 100%;
  height: auto;

  display: block;

  max-width: none;

  transform: scale(1);

  transform-origin: center;

  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

/*
   Very small hover zoom.
   Keep this subtle because generated
   artwork contains important edge details.
*/

.service-v2-card:hover .service-v2-image img {
  transform: scale(1.018);
}

/* Image overlay */

.service-image-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, 0) 0%,
    rgba(2, 8, 23, 0) 58%,
    rgba(2, 8, 23, 0.04) 100%
  );
}

/* Image label */

.service-image-label {
  position: absolute;

  left: 16px;
  bottom: 14px;

  z-index: 3;

  min-height: 28px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 0 11px;

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 100px;

  color: #ffffff;

  background: rgba(2, 8, 23, 0.7);

  -webkit-backdrop-filter: blur(12px);

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 25px rgba(2, 8, 23, 0.15);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.13em;

  white-space: nowrap;

  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    background 400ms ease;
}

/* Green status dot */

.service-image-label::before {
  content: "";

  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--green, #73ed31);

  box-shadow: 0 0 9px rgba(115, 237, 49, 0.85);
}

/* Label hover */

.service-v2-card:hover .service-image-label {
  transform: translateY(-3px);

  background: rgba(2, 8, 23, 0.82);
}

/* ================================================================
   9. CAPABILITY ROWS
================================================================ */

.service-v2-capabilities {
  position: relative;

  z-index: 3;

  margin-top: auto;
}

/* Individual capability */

.service-v2-capabilities a {
  position: relative;

  min-height: 43px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 10px 3px;

  overflow: hidden;

  border-bottom: 1px solid rgba(3, 17, 38, 0.075);

  color: #4d5e73;

  font-size: 12px;
  font-weight: 600;

  line-height: 1.35;

  text-decoration: none;

  transition:
    color 300ms ease,
    padding 350ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms ease;
}

/* Top border on first item */

.service-v2-capabilities a:first-child {
  border-top: 1px solid rgba(3, 17, 38, 0.075);
}

/* Active side indicator */

.service-v2-capabilities a::before {
  content: "";

  position: absolute;

  width: 3px;
  height: 0;

  left: -24px;
  top: 50%;

  border-radius: 0 3px 3px 0;

  transform: translateY(-50%);

  background: linear-gradient(
    180deg,
    var(--blue, #0878ff),
    var(--green, #73ed31)
  );

  transition: height 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Arrow */

.service-v2-capabilities a i {
  flex-shrink: 0;

  color: #9aa7b6;

  font-size: 13px;
  font-style: normal;

  opacity: 0;

  transform: translate(-6px, 6px);

  transition:
    opacity 300ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms ease;
}

/* Capability hover */

.service-v2-capabilities a:hover {
  padding-left: 10px;

  color: var(--blue, #0878ff);
}

.service-v2-capabilities a:hover::before {
  height: 60%;
}

.service-v2-capabilities a:hover i {
  opacity: 1;

  color: var(--green, #73ed31);

  transform: translate(0, 0);
}

/* ================================================================
   10. SERVICES BOTTOM CTA
================================================================ */

.services-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 40px;

  padding: 24px 28px;

  border: 1px solid rgba(8, 120, 255, 0.11);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.58);

  -webkit-backdrop-filter: blur(10px);

  backdrop-filter: blur(10px);

  transition:
    border-color 350ms ease,
    background 350ms ease,
    box-shadow 350ms ease;
}

.services-v2-footer:hover {
  border-color: rgba(8, 120, 255, 0.2);

  background: rgba(255, 255, 255, 0.75);

  box-shadow: 0 20px 50px rgba(13, 46, 84, 0.06);
}

/* Footer left side */

.services-v2-footer > div {
  display: flex;
  align-items: center;

  gap: 12px;
}

.services-v2-footer-dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--green, #73ed31);

  box-shadow: 0 0 12px rgba(115, 237, 49, 0.65);

  animation: servicesStatusPulse 2.2s ease-in-out infinite;
}

@keyframes servicesStatusPulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(115, 237, 49, 0.4);
  }

  50% {
    box-shadow: 0 0 16px rgba(115, 237, 49, 0.85);
  }
}

.services-v2-footer p {
  margin: 0;

  color: #718096;

  font-size: 11px;

  line-height: 1.6;
}

.services-v2-footer strong {
  color: var(--navy-950, #020817);

  font-weight: 700;
}

/* Footer CTA link */

.services-v2-footer > a {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;

  color: var(--navy-950, #020817);

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition: color 300ms ease;
}

.services-v2-footer > a svg {
  width: 18px;
  height: 18px;

  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-v2-footer > a:hover {
  color: var(--blue, #0878ff);
}

.services-v2-footer > a:hover svg {
  transform: translateX(5px);
}

/* ================================================================
   11. SCROLL REVEAL ANIMATION
================================================================ */

.service-v2-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-v2-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* Desktop stagger */

.services-v2-grid-layout .service-v2-card:nth-child(1) {
  transition-delay: 0ms;
}

.services-v2-grid-layout .service-v2-card:nth-child(2) {
  transition-delay: 80ms;
}

.services-v2-grid-layout .service-v2-card:nth-child(3) {
  transition-delay: 160ms;
}

.services-v2-grid-layout .service-v2-card:nth-child(4) {
  transition-delay: 0ms;
}

.services-v2-grid-layout .service-v2-card:nth-child(5) {
  transition-delay: 80ms;
}

.services-v2-grid-layout .service-v2-card:nth-child(6) {
  transition-delay: 160ms;
}

/* ================================================================
   12. RESPONSIVE — LARGE TABLET
================================================================ */

@media (max-width: 1180px) {
  .services-v2 {
    padding: 120px 0 80px;
  }

  .services-v2-grid-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-v2-header {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(260px, 0.85fr);

    gap: 50px;
  }

  /*
       Reset stagger because grid is now 2 columns
    */

  .services-v2-grid-layout .service-v2-card:nth-child(odd) {
    transition-delay: 0ms;
  }

  .services-v2-grid-layout .service-v2-card:nth-child(even) {
    transition-delay: 80ms;
  }
}

/* ================================================================
   RESPONSIVE — TABLET
================================================================ */

@media (max-width: 820px) {
  .services-v2 {
    padding: 105px 0 70px;
  }

  .services-v2 .container {
    width: min(100% - 36px, 1380px);
  }

  .services-v2-header {
    grid-template-columns: 1fr;

    align-items: start;

    gap: 25px;

    margin-bottom: 45px;
  }

  .services-v2-heading h2 {
    max-width: 700px;
  }

  .services-v2-intro {
    max-width: 600px;
  }

  .services-v2-grid-layout {
    gap: 16px;
  }

  .services-v2-footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 20px;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE
================================================================ */

@media (max-width: 620px) {
  .services-v2 {
    padding: 85px 0 55px;
  }

  .services-v2 .container {
    width: calc(100% - 28px);
  }

  .service-v2-title-row {
    gap: 12px;
  }

  .service-v2-title-row .service-v2-icon {
    width: 44px;
    height: 44px;

    flex-basis: 44px;
  }

  .service-v2-title-row .service-v2-icon svg {
    width: 25px;
    height: 25px;
  }

  /* Header */

  .services-v2-header {
    margin-bottom: 35px;
  }

  .services-v2-kicker {
    margin-bottom: 14px;

    font-size: 9px;
  }

  .services-v2-heading h2 {
    font-size: clamp(42px, 13vw, 58px);

    line-height: 1;

    letter-spacing: -0.05em;
  }

  .services-v2-intro p {
    font-size: 13px;

    line-height: 1.75;
  }

  /* One card per row */

  .services-v2-grid-layout {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  /*
       Remove all stagger on mobile.
       Faster and cleaner scroll experience.
    */

  .services-v2-grid-layout .service-v2-card {
    transition-delay: 0ms;
  }

  /* Card */

  .service-v2-card {
    padding: 20px;

    border-radius: 20px;
  }

  .service-v2-card:hover {
    transform: translateY(-3px);
  }

  /* Title */

  .service-v2-title {
    margin-top: 22px;
  }

  .service-v2-title h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .service-v2-title p {
    min-height: 0;

    font-size: 11px;
  }

  /*
       Image full bleed calculation:
       Card padding is now 20px,
       therefore width compensation = 40px.
    */

  .service-v2-image {
    width: calc(100% + 40px);

    margin: 20px -20px 18px;
  }

  /*
       Still no crop on mobile.
       PNG keeps natural aspect ratio.
    */

  .service-v2-image img {
    width: 100%;
    height: auto;
  }

  .service-v2-card:hover .service-v2-image img {
    transform: scale(1.01);
  }

  /* Image label */

  .service-image-label {
    left: 12px;
    bottom: 10px;

    min-height: 25px;

    padding: 0 9px;

    font-size: 6px;

    letter-spacing: 0.11em;
  }

  /* Capabilities */

  .service-v2-capabilities a {
    min-height: 46px;

    padding: 11px 3px;

    font-size: 11px;
  }

  /*
       Mobile has no real hover,
       so arrow remains slightly visible.
    */

  .service-v2-capabilities a i {
    opacity: 0.55;

    transform: none;
  }

  /* Bottom CTA */

  .services-v2-footer {
    margin-top: 25px;

    padding: 20px;

    border-radius: 16px;
  }

  .services-v2-footer > div {
    align-items: flex-start;
  }

  .services-v2-footer p {
    font-size: 10px;

    line-height: 1.7;
  }
}

/* ================================================================
   RESPONSIVE — VERY SMALL MOBILE
================================================================ */

@media (max-width: 380px) {
  .services-v2 .container {
    width: calc(100% - 20px);
  }

  .service-v2-card {
    padding: 17px;
  }

  /*
       17px card padding × 2 = 34px
    */

  .service-v2-image {
    width: calc(100% + 34px);

    margin-left: -17px;
    margin-right: -17px;
  }

  .service-v2-icon {
    width: 44px;
    height: 44px;
  }

  .service-v2-icon svg {
    width: 25px;
    height: 25px;
  }

  .service-image-label {
    max-width: calc(100% - 24px);

    overflow: hidden;

    text-overflow: ellipsis;
  }
}

/* ================================================================
   13. ACCESSIBILITY — REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .service-v2-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .service-v2-card,
  .service-v2-icon,
  .service-v2-image img,
  .service-image-label,
  .service-v2-capabilities a,
  .service-v2-capabilities a i,
  .services-v2-intro a svg,
  .services-v2-footer a svg {
    transition: none;
  }

  .service-v2-card:hover {
    transform: none;
  }

  .service-v2-card:hover .service-v2-image img {
    transform: none;
  }

  .services-v2-footer-dot {
    animation: none;
  }
}

/* ================================================================
   TOUCH DEVICES
================================================================ */

@media (hover: none) {
  /*
       Prevent sticky hover effects on phones and tablets.
    */

  .service-v2-card:hover {
    transform: none;
  }

  .service-v2-card:hover .service-v2-image img {
    transform: none;
  }

  .service-v2-capabilities a i {
    opacity: 0.5;

    transform: none;
  }
}
/* ================================================================
   ================================================================
   AEVORIX TECH — HOW WE BUILD
   COMPLETE SECTION CSS
   ================================================================
   ================================================================ */

/* ================================================================
   SECTION
================================================================ */

.build-process {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 135px 0 100px;

  overflow: hidden;

  color: #ffffff;

  background: linear-gradient(145deg, #020817 0%, #031126 50%, #04162d 100%);
}

/* Container fallback */

.build-process .container {
  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   BACKGROUND GRID
================================================================ */

.build-process__grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 184, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 255, 0.045) 1px, transparent 1px);

  background-size: 72px 72px;

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 10%,
    transparent 78%
  );

  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 78%);
}

/* ================================================================
   BACKGROUND GLOWS
================================================================ */

.build-process__glow {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}

.build-process__glow--blue {
  width: 700px;
  height: 700px;

  top: -400px;
  left: -280px;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.16), transparent 70%);
}

.build-process__glow--green {
  width: 600px;
  height: 600px;

  right: -350px;
  bottom: -350px;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.09),
    transparent 70%
  );
}

/* ================================================================
   HEADER
================================================================ */

.build-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 70px;
}

/* Kicker */

.build-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: #00b8ff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.build-kicker__line {
  width: 30px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 20px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

/* Main title */

.build-title {
  max-width: 900px;

  margin: 0;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(50px, 5.2vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.build-title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #0878ff, #00b8ff 48%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

/* Right intro */

.build-header__right {
  padding-bottom: 5px;
}

.build-header__right p {
  margin: 0;

  color: rgba(224, 235, 248, 0.66);

  font-size: 14px;

  line-height: 1.8;
}

/* Status */

.build-header__status {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.04em;
}

.build-status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 12px rgba(115, 237, 49, 0.7);

  animation: buildStatusPulse 2.2s ease-in-out infinite;
}

@keyframes buildStatusPulse {
  50% {
    box-shadow: 0 0 20px rgba(115, 237, 49, 0.95);
  }
}

/* ================================================================
   MAIN SYSTEM PANEL
================================================================ */

.build-system {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(123, 180, 255, 0.14);

  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(9, 28, 57, 0.86),
    rgba(4, 17, 38, 0.92)
  );

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);
}

/* Mouse spotlight */

.build-system::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: calc(var(--mouse-x, 50%) - 250px);

  top: calc(var(--mouse-y, 50%) - 250px);

  z-index: 0;

  border-radius: 50%;

  pointer-events: none;

  opacity: 0;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.11), transparent 68%);

  transition: opacity 350ms ease;
}

.build-system:hover::before {
  opacity: 1;
}

/* ================================================================
   TOP BAR
================================================================ */

.build-system__topbar {
  position: relative;

  z-index: 3;

  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 0 28px;

  border-bottom: 1px solid rgba(123, 180, 255, 0.1);

  background: rgba(255, 255, 255, 0.018);
}

/* Identity */

.build-system__identity {
  display: flex;
  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.build-system__signal {
  width: 8px;
  height: 8px;

  border: 2px solid #00b8ff;

  border-radius: 50%;

  box-shadow: 0 0 12px rgba(0, 184, 255, 0.65);
}

/* Meta */

.build-system__meta {
  display: flex;
  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.35);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.build-system__divider {
  width: 1px;
  height: 14px;

  background: rgba(255, 255, 255, 0.14);
}

/* ================================================================
   PIPELINE
================================================================ */

.build-pipeline {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  padding: 55px 30px 45px;
}

/* Main line */

.build-pipeline__track {
  position: absolute;

  height: 2px;

  left: calc(10% + 30px);
  right: calc(10% + 30px);

  top: 120px;

  overflow: hidden;

  background: rgba(130, 180, 240, 0.12);
}

/* Animated progress */

.build-pipeline__progress {
  width: 0%;
  height: 100%;

  border-radius: 20px;

  background: linear-gradient(90deg, #0878ff 0%, #00b8ff 55%, #73ed31 100%);

  box-shadow: 0 0 14px rgba(0, 184, 255, 0.45);

  transition: width 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Activated by JS */

.build-system.is-active .build-pipeline__progress {
  width: 100%;
}

/* ================================================================
   STAGE
================================================================ */

.build-stage {
  position: relative;

  min-width: 0;

  padding: 0 14px;

  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.build-system.is-active .build-stage {
  opacity: 1;

  transform: translateY(0);
}

/* Stagger */

.build-system.is-active .build-stage:nth-of-type(2) {
  transition-delay: 100ms;
}

.build-system.is-active .build-stage:nth-of-type(3) {
  transition-delay: 220ms;
}

.build-system.is-active .build-stage:nth-of-type(4) {
  transition-delay: 340ms;
}

.build-system.is-active .build-stage:nth-of-type(5) {
  transition-delay: 460ms;
}

.build-system.is-active .build-stage:nth-of-type(6) {
  transition-delay: 580ms;
}

/* Trigger */

.build-stage__trigger {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0;

  border: 0;

  color: inherit;

  background: none;

  cursor: pointer;

  font: inherit;
}

/* Number */

.build-stage__number {
  margin-bottom: 16px;

  color: rgba(255, 255, 255, 0.3);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;

  transition: color 300ms ease;
}

/* Node */

.build-stage__node {
  position: relative;

  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border: 1px solid rgba(123, 180, 255, 0.2);

  border-radius: 18px;

  color: #6f8eaf;

  background: linear-gradient(145deg, #0b2446, #06162e);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);

  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    color 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}

/* Node point */

.build-stage__node::after {
  content: "";

  position: absolute;

  width: 7px;
  height: 7px;

  right: -4px;
  top: 50%;

  border-radius: 50%;

  background: #284a70;

  transform: translateY(-50%);

  transition:
    background 350ms ease,
    box-shadow 350ms ease;
}

/* Icon */

.build-stage__node svg {
  width: 29px;
  height: 29px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stage heading */

.build-stage__heading {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 6px;
}

.build-stage__eyebrow {
  color: #00b8ff;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.build-stage__heading strong {
  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 23px;
  font-weight: 600;

  letter-spacing: -0.035em;
}

/* ================================================================
   STAGE CONTENT
================================================================ */

.build-stage__content {
  margin-top: 24px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.build-stage__content p {
  min-height: 60px;

  margin: 0 0 18px;

  color: rgba(211, 226, 244, 0.56);

  font-size: 10px;

  line-height: 1.7;
}

/* Capability list */

.build-stage__content ul {
  display: flex;
  flex-direction: column;

  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.build-stage__content li {
  position: relative;

  padding-left: 13px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 9px;

  line-height: 1.4;
}

.build-stage__content li::before {
  content: "";

  position: absolute;

  width: 4px;
  height: 4px;

  left: 0;
  top: 5px;

  border-radius: 50%;

  background: rgba(0, 184, 255, 0.65);
}

/* ================================================================
   STAGE INTERACTION
================================================================ */

.build-stage:hover .build-stage__node,
.build-stage.is-selected .build-stage__node {
  transform: translateY(-6px);

  color: #00b8ff;

  border-color: rgba(0, 184, 255, 0.55);

  box-shadow:
    0 18px 38px rgba(0, 100, 220, 0.2),
    0 0 25px rgba(0, 184, 255, 0.08);
}

.build-stage:hover .build-stage__node::after,
.build-stage.is-selected .build-stage__node::after {
  background: #73ed31;

  box-shadow: 0 0 10px rgba(115, 237, 49, 0.8);
}

.build-stage:hover .build-stage__number,
.build-stage.is-selected .build-stage__number {
  color: #73ed31;
}

/* Final stage green */

.build-stage:last-child .build-stage__eyebrow {
  color: #73ed31;
}

.build-stage:last-child:hover .build-stage__node,
.build-stage:last-child.is-selected .build-stage__node {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.4);

  box-shadow:
    0 18px 38px rgba(55, 170, 40, 0.12),
    0 0 25px rgba(115, 237, 49, 0.08);
}

/* ================================================================
   SYSTEM FOOTER
================================================================ */

.build-system__footer {
  position: relative;

  z-index: 3;

  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 0 28px;

  border-top: 1px solid rgba(123, 180, 255, 0.1);

  background: rgba(255, 255, 255, 0.018);
}

/* Footer message */

.build-footer__message {
  display: flex;
  align-items: center;

  gap: 10px;
}

.build-footer__pulse {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 10px rgba(115, 237, 49, 0.7);
}

.build-footer__message p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
}

/* Footer link */

.build-footer__link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: #ffffff;

  font-size: 10px;
  font-weight: 700;

  text-decoration: none;

  transition: color 300ms ease;
}

.build-footer__link svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.build-footer__link:hover {
  color: #73ed31;
}

.build-footer__link:hover svg {
  transform: translateX(5px);
}

/* ================================================================
   REVEAL
================================================================ */

.build-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.build-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE — TABLET
================================================================ */

@media (max-width: 1100px) {
  .build-process {
    padding: 115px 0 85px;
  }

  .build-header {
    gap: 45px;
  }

  .build-pipeline {
    grid-template-columns: repeat(5, minmax(150px, 1fr));

    overflow-x: auto;

    scrollbar-width: thin;

    scrollbar-color: rgba(0, 184, 255, 0.4) transparent;
  }

  .build-pipeline__track {
    left: 100px;
    right: 100px;
  }
}

/* ================================================================
   RESPONSIVE — SMALL TABLET
================================================================ */

@media (max-width: 820px) {
  .build-process {
    padding: 100px 0 70px;
  }

  .build-process .container {
    width: calc(100% - 36px);
  }

  .build-header {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 48px;
  }

  .build-header__right {
    max-width: 600px;
  }

  .build-system__topbar {
    padding: 0 20px;
  }

  .build-system__meta {
    display: none;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE
================================================================ */

@media (max-width: 620px) {
  .build-process {
    padding: 85px 0 55px;
  }

  .build-process .container {
    width: calc(100% - 28px);
  }

  .build-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .build-header__right p {
    font-size: 13px;
  }

  .build-system {
    border-radius: 20px;
  }

  .build-system__topbar {
    min-height: 58px;

    padding: 0 17px;
  }

  .build-system__identity {
    font-size: 7px;
  }

  /* Vertical pipeline */

  .build-pipeline {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 30px 18px;
  }

  /* Vertical line */

  .build-pipeline__track {
    width: 2px;
    height: auto;

    left: 48px;
    right: auto;

    top: 62px;
    bottom: 70px;
  }

  .build-pipeline__progress {
    width: 100%;
    height: 0%;
  }

  .build-system.is-active .build-pipeline__progress {
    width: 100%;
    height: 100%;

    transition: height 1500ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Mobile stage */

  .build-stage {
    padding: 0 0 30px;
  }

  .build-stage:last-child {
    padding-bottom: 0;
  }

  .build-stage__trigger {
    display: grid;

    grid-template-columns: 20px 60px 1fr;

    align-items: center;

    gap: 10px;

    text-align: left;
  }

  .build-stage__number {
    margin: 0;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
  }

  .build-stage__node {
    width: 56px;
    height: 56px;

    margin: 0;

    border-radius: 16px;
  }

  .build-stage__node::after {
    right: auto;

    left: 50%;
    top: auto;
    bottom: -4px;

    transform: translateX(-50%);
  }

  .build-stage__heading {
    align-items: flex-start;
  }

  .build-stage__heading strong {
    font-size: 25px;
  }

  /* Mobile details */

  .build-stage__content {
    margin: 16px 0 0 90px;

    padding-top: 15px;
  }

  .build-stage__content p {
    min-height: 0;

    margin-bottom: 14px;

    font-size: 10px;
  }

  .build-stage__content ul {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px 12px;
  }

  /* Footer */

  .build-system__footer {
    min-height: auto;

    align-items: flex-start;
    flex-direction: column;

    gap: 16px;

    padding: 20px 18px;
  }
}

/* ================================================================
   VERY SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .build-process .container {
    width: calc(100% - 20px);
  }

  .build-stage__content ul {
    grid-template-columns: 1fr;
  }

  .build-stage__content {
    margin-left: 86px;
  }
}

/* ================================================================
   REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .build-reveal,
  .build-stage {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .build-pipeline__progress {
    width: 100%;

    transition: none;
  }

  .build-status-dot {
    animation: none;
  }

  .build-stage__node,
  .build-footer__link svg {
    transition: none;
  }
}
.build-system.is-active .build-stage[data-stage="1"] {
  transition-delay: 0ms;
}

.build-system.is-active .build-stage[data-stage="2"] {
  transition-delay: 120ms;
}

.build-system.is-active .build-stage[data-stage="3"] {
  transition-delay: 240ms;
}

.build-system.is-active .build-stage[data-stage="4"] {
  transition-delay: 360ms;
}

.build-system.is-active .build-stage[data-stage="5"] {
  transition-delay: 480ms;
}
/* ================================================================
   ================================================================
   AEVORIX TECH — TECHNOLOGY ECOSYSTEM
   ================================================================
   ================================================================ */

/* ================================================================
   SECTION
================================================================ */

.tech-ecosystem {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 100px;

  overflow: hidden;

  color: #020817;

  background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 55%, #f8fbff 100%);
}

.tech-ecosystem .container {
  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   BACKGROUND
================================================================ */

.tech-ecosystem__grid {
  position: absolute;
  inset: 0;

  z-index: -4;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(8, 120, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 255, 0.035) 1px, transparent 1px);

  background-size: 72px 72px;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.tech-ecosystem__noise {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  opacity: 0.16;

  background-image: radial-gradient(
    rgba(8, 120, 255, 0.12) 0.6px,
    transparent 0.6px
  );

  background-size: 9px 9px;
}

.tech-ecosystem__orb {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.tech-ecosystem__orb--blue {
  width: 650px;
  height: 650px;

  top: 10%;
  left: -430px;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.1), transparent 70%);
}

.tech-ecosystem__orb--green {
  width: 550px;
  height: 550px;

  right: -350px;
  bottom: 5%;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.08),
    transparent 70%
  );
}

/* ================================================================
   HEADER
================================================================ */

.tech-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 65px;
}

.tech-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: #0878ff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.tech-kicker__line {
  width: 30px;
  height: 2px;

  border-radius: 20px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

.tech-title {
  max-width: 950px;

  margin: 0;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(50px, 5.2vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.tech-title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #0878ff, #00b8ff 48%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.tech-header__side {
  padding-bottom: 5px;
}

.tech-header__side p {
  margin: 0;

  color: #65758a;

  font-size: 14px;

  line-height: 1.8;
}

.tech-header__signal {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #52647a;

  font-size: 10px;
  font-weight: 600;
}

.tech-live-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 12px rgba(115, 237, 49, 0.7);

  animation: techLivePulse 2.2s ease-in-out infinite;
}

@keyframes techLivePulse {
  50% {
    box-shadow: 0 0 20px rgba(115, 237, 49, 1);
  }
}

/* ================================================================
   CONSOLE
================================================================ */

.tech-console {
  overflow: hidden;

  border: 1px solid rgba(8, 120, 255, 0.13);

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.78);

  box-shadow: 0 35px 100px rgba(19, 63, 112, 0.1);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);
}

/* ================================================================
   TOPBAR
================================================================ */

.tech-console__topbar {
  min-height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 0 26px;

  border-bottom: 1px solid rgba(3, 17, 38, 0.08);

  background: rgba(248, 251, 255, 0.72);
}

.tech-console__identity {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #354a63;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.tech-console__indicator {
  width: 8px;
  height: 8px;

  border: 2px solid #0878ff;

  border-radius: 50%;

  box-shadow: 0 0 10px rgba(8, 120, 255, 0.4);
}

.tech-console__status {
  display: flex;
  align-items: center;

  gap: 12px;

  color: #8998a9;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.tech-console__separator {
  width: 1px;
  height: 14px;

  background: rgba(3, 17, 38, 0.12);
}

/* ================================================================
   CONSOLE BODY
================================================================ */

.tech-console__body {
  display: grid;

  grid-template-columns:
    255px
    minmax(480px, 1fr)
    300px;

  min-height: 620px;
}

/* ================================================================
   LEFT NAVIGATION
================================================================ */

.tech-nav {
  padding: 25px 18px;

  border-right: 1px solid rgba(3, 17, 38, 0.08);

  background: rgba(248, 251, 255, 0.65);
}

.tech-nav__label {
  margin: 0 10px 18px;

  color: #9aa7b6;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.tech-nav__item {
  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns: 24px 1fr 16px;

  align-items: center;

  gap: 8px;

  min-height: 72px;

  padding: 10px;

  border: 0;
  border-radius: 13px;

  color: #68788c;

  text-align: left;

  background: transparent;

  cursor: pointer;

  font: inherit;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-nav__item:hover {
  color: #020817;

  background: rgba(8, 120, 255, 0.045);
}

.tech-nav__item.is-active {
  color: #020817;

  background: linear-gradient(
    135deg,
    rgba(8, 120, 255, 0.09),
    rgba(115, 237, 49, 0.045)
  );
}

.tech-nav__item.is-active::before {
  content: "";

  position: absolute;

  width: 3px;
  height: 34px;

  left: -18px;
  top: 50%;

  border-radius: 0 4px 4px 0;

  transform: translateY(-50%);

  background: linear-gradient(180deg, #0878ff, #73ed31);
}

.tech-nav__index {
  color: #a0adbb;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.tech-nav__content {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.tech-nav__content strong {
  font-size: 11px;
  font-weight: 700;

  white-space: nowrap;
}

.tech-nav__content small {
  color: #95a2b2;

  font-size: 8px;

  white-space: nowrap;
}

.tech-nav__arrow {
  color: #0878ff;

  font-size: 13px;

  opacity: 0;

  transform: translate(-5px, 5px);

  transition:
    opacity 300ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-nav__item.is-active .tech-nav__arrow {
  opacity: 1;

  transform: translate(0, 0);
}

/* ================================================================
   CENTER VISUAL
================================================================ */

.tech-visual {
  position: relative;

  min-width: 0;

  overflow: hidden;

  background: radial-gradient(
    circle at center,
    rgba(8, 120, 255, 0.055),
    transparent 55%
  );
}

.tech-visual__header {
  position: relative;

  z-index: 5;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  padding: 28px 30px 0;
}

.tech-visual__eyebrow {
  display: block;

  margin-bottom: 7px;

  color: #0878ff;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.tech-visual__header h3 {
  margin: 0;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 28px;
  font-weight: 600;

  letter-spacing: -0.04em;
}

.tech-visual__counter {
  display: flex;

  gap: 4px;

  color: #a1adba;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.tech-visual__counter span:first-child {
  color: #0878ff;
}

/* ================================================================
   CONSTELLATION
================================================================ */

.tech-constellation {
  position: relative;

  width: min(100%, 650px);
  height: 500px;

  margin: 5px auto 0;
}

/* Rings */

.tech-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  border: 1px solid rgba(8, 120, 255, 0.09);

  border-radius: 50%;

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.tech-ring--outer {
  width: 430px;
  height: 430px;

  border-style: dashed;

  animation: techRingRotate 45s linear infinite;
}

.tech-ring--middle {
  width: 310px;
  height: 310px;

  animation: techRingRotateReverse 32s linear infinite;
}

.tech-ring--inner {
  width: 180px;
  height: 180px;

  border-color: rgba(115, 237, 49, 0.13);
}

@keyframes techRingRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes techRingRotateReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Connection SVG */

.tech-connections {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;

  pointer-events: none;
}

.tech-line {
  fill: none;

  stroke: url(#techLineGradient);

  stroke-width: 1.2;

  stroke-dasharray: 5 7;

  opacity: 0.4;

  animation: techDataFlow 8s linear infinite;
}

@keyframes techDataFlow {
  to {
    stroke-dashoffset: -100;
  }
}

/* ================================================================
   CORE
================================================================ */

.tech-ecosystem .tech-core {
  position: absolute;

  width: 112px;
  height: 112px;

  left: 50%;
  top: 50%;

  z-index: 4;

  transform: translate(-50%, -50%);
}

.tech-core__pulse {
  position: absolute;
  inset: -20px;

  border: 1px solid rgba(8, 120, 255, 0.2);

  border-radius: 50%;

  animation: techCorePulse 3s ease-in-out infinite;
}

@keyframes techCorePulse {
  50% {
    transform: scale(1.13);

    opacity: 0.25;
  }
}

.tech-core__inner {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  border: 1px solid rgba(8, 120, 255, 0.28);

  border-radius: 30px;

  background: linear-gradient(145deg, #061a35, #020817);

  box-shadow:
    0 20px 50px rgba(2, 8, 23, 0.25),
    0 0 40px rgba(8, 120, 255, 0.1);

  transform: rotate(45deg);
}

.tech-core__mark,
.tech-core__inner small {
  transform: rotate(-45deg);
}

.tech-core__mark {
  color: #ffffff;

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 24px;
  font-weight: 700;

  letter-spacing: -0.05em;
}

.tech-core__inner small {
  color: #73ed31;

  font-size: 6px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

/* ================================================================
   TECHNOLOGY NODES
================================================================ */

.tech-node {
  position: absolute;

  z-index: 5;

  min-width: 112px;

  padding: 12px 14px;

  border: 1px solid rgba(8, 120, 255, 0.14);

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow: 0 12px 30px rgba(20, 60, 105, 0.08);

  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 250ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}

.tech-node:hover {
  transform: translateY(-5px);

  border-color: rgba(8, 120, 255, 0.4);

  box-shadow: 0 18px 40px rgba(8, 120, 255, 0.12);
}

.tech-node__signal {
  position: absolute;

  width: 6px;
  height: 6px;

  top: 10px;
  right: 10px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 8px rgba(115, 237, 49, 0.65);
}

.tech-node strong {
  display: block;

  padding-right: 10px;

  color: #031126;

  font-size: 11px;
  font-weight: 700;
}

.tech-node small {
  display: block;

  margin-top: 5px;

  color: #9aa7b6;

  font-size: 6px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

/* Node positions */

.tech-node--1 {
  left: 5%;
  top: 9%;
}

.tech-node--2 {
  right: 3%;
  top: 7%;
}

.tech-node--3 {
  right: 0;
  top: 46%;
}

.tech-node--4 {
  right: 10%;
  bottom: 4%;
}

.tech-node--5 {
  left: 9%;
  bottom: 7%;
}

.tech-node--6 {
  left: 0;
  top: 43%;
}

/* Node change animation */

.tech-node.is-changing {
  opacity: 0;

  transform: scale(0.92) translateY(8px);
}

/* ================================================================
   INTELLIGENCE PANEL
================================================================ */

.tech-intelligence {
  display: flex;
  flex-direction: column;

  padding: 28px 24px;

  border-left: 1px solid rgba(3, 17, 38, 0.08);

  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.75),
    rgba(241, 247, 253, 0.7)
  );
}

.tech-intelligence__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(3, 17, 38, 0.08);
}

.tech-intelligence__label {
  color: #8c9aaa;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.tech-intelligence__status {
  padding: 5px 7px;

  border: 1px solid rgba(115, 237, 49, 0.35);

  border-radius: 100px;

  color: #388b20;

  background: rgba(115, 237, 49, 0.08);

  font-size: 6px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

/* Main Info */

.tech-intelligence__main {
  padding: 25px 0;
}

.tech-intelligence__number {
  display: block;

  margin-bottom: 12px;

  color: #0878ff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.tech-intelligence__main h3 {
  margin: 0 0 13px;

  color: #020817;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 29px;
  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -0.045em;
}

.tech-intelligence__main p {
  margin: 0;

  color: #718095;

  font-size: 10px;

  line-height: 1.75;
}

/* ================================================================
   CAPABILITIES
================================================================ */

.tech-capabilities {
  padding: 22px 0;

  border-top: 1px solid rgba(3, 17, 38, 0.08);

  border-bottom: 1px solid rgba(3, 17, 38, 0.08);
}

.tech-capabilities__title {
  display: block;

  margin-bottom: 14px;

  color: #8c9aaa;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.tech-capabilities__list {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}

.tech-capabilities__list span {
  padding: 7px 9px;

  border: 1px solid rgba(8, 120, 255, 0.11);

  border-radius: 8px;

  color: #4d6178;

  background: rgba(255, 255, 255, 0.7);

  font-size: 7px;
  font-weight: 600;
}

/* ================================================================
   ARCHITECTURE SIGNAL
================================================================ */

.tech-architecture {
  margin-top: auto;

  padding-top: 24px;
}

.tech-architecture__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-bottom: 10px;

  color: #78889b;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.tech-architecture__head span:last-child {
  color: #0878ff;
}

.tech-architecture__track {
  width: 100%;
  height: 4px;

  overflow: hidden;

  border-radius: 20px;

  background: rgba(8, 120, 255, 0.1);
}

.tech-architecture__value {
  display: block;

  width: var(--signal-width, 94%);

  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg, #0878ff, #00b8ff, #73ed31);

  transition: width 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-architecture p {
  margin: 13px 0 0;

  color: #9aa6b5;

  font-size: 8px;

  line-height: 1.6;
}

/* ================================================================
   FOOTER
================================================================ */

.tech-console__footer {
  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 35px;

  padding: 15px 26px;

  border-top: 1px solid rgba(3, 17, 38, 0.08);

  background: rgba(248, 251, 255, 0.72);
}

.tech-footer__title {
  display: flex;
  align-items: center;

  gap: 9px;

  flex-shrink: 0;

  color: #52647a;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.tech-footer__dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 9px rgba(115, 237, 49, 0.6);
}

.tech-footer__capabilities {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.tech-footer__capabilities span {
  padding: 7px 10px;

  border: 1px solid rgba(3, 17, 38, 0.08);

  border-radius: 100px;

  color: #63758a;

  background: rgba(255, 255, 255, 0.65);

  font-size: 7px;
  font-weight: 600;
}

/* ================================================================
   REVEAL
================================================================ */

.tech-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE — LAPTOP
================================================================ */

@media (max-width: 1250px) {
  .tech-console__body {
    grid-template-columns:
      230px
      minmax(420px, 1fr)
      270px;
  }

  .tech-node {
    min-width: 100px;
  }
}

/* ================================================================
   RESPONSIVE — TABLET
================================================================ */

@media (max-width: 1050px) {
  .tech-ecosystem {
    padding: 115px 0 80px;
  }

  .tech-console__body {
    grid-template-columns:
      220px
      minmax(0, 1fr);
  }

  .tech-intelligence {
    grid-column: 1 / -1;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 25px;

    border-left: 0;

    border-top: 1px solid rgba(3, 17, 38, 0.08);
  }

  .tech-intelligence__top {
    display: none;
  }

  .tech-intelligence__main {
    padding: 0;
  }

  .tech-capabilities {
    padding: 0;

    border: 0;
  }

  .tech-architecture {
    margin: 0;
    padding: 0;
  }
}

/* ================================================================
   RESPONSIVE — SMALL TABLET
================================================================ */

@media (max-width: 820px) {
  .tech-ecosystem .container {
    width: calc(100% - 36px);
  }

  .tech-header {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 48px;
  }

  .tech-header__side {
    max-width: 600px;
  }

  .tech-console__body {
    display: block;
  }

  /* Horizontal category selector */

  .tech-nav {
    display: flex;

    gap: 7px;

    overflow-x: auto;

    padding: 14px;

    border-right: 0;

    border-bottom: 1px solid rgba(3, 17, 38, 0.08);

    scrollbar-width: none;
  }

  .tech-nav::-webkit-scrollbar {
    display: none;
  }

  .tech-nav__label {
    display: none;
  }

  .tech-nav__item {
    min-width: 145px;
    min-height: 60px;

    grid-template-columns: 20px 1fr;

    flex-shrink: 0;
  }

  .tech-nav__arrow {
    display: none;
  }

  .tech-nav__item.is-active::before {
    width: 45%;
    height: 2px;

    left: 50%;
    top: auto;
    bottom: -14px;

    transform: translateX(-50%);

    border-radius: 4px 4px 0 0;
  }

  .tech-visual {
    min-height: 570px;
  }

  .tech-intelligence {
    display: grid;

    grid-template-columns: 1fr 1fr;
  }

  .tech-architecture {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE
================================================================ */

@media (max-width: 620px) {
  .tech-ecosystem {
    padding: 85px 0 55px;
  }

  .tech-ecosystem .container {
    width: calc(100% - 28px);
  }

  .tech-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .tech-header__side p {
    font-size: 13px;
  }

  .tech-console {
    border-radius: 20px;
  }

  .tech-console__topbar {
    min-height: 56px;

    padding: 0 16px;
  }

  .tech-console__status {
    display: none;
  }

  .tech-console__identity {
    font-size: 7px;
  }

  /* Visual */

  .tech-visual {
    min-height: 500px;
  }

  .tech-visual__header {
    padding: 22px 18px 0;
  }

  .tech-visual__header h3 {
    font-size: 24px;
  }

  .tech-constellation {
    height: 420px;
  }

  /* Smaller rings */

  .tech-ring--outer {
    width: 310px;
    height: 310px;
  }

  .tech-ring--middle {
    width: 230px;
    height: 230px;
  }

  .tech-ring--inner {
    width: 140px;
    height: 140px;
  }

  /* Core */

  .tech-ecosystem .tech-core {
    width: 90px;
    height: 90px;
  }

  .tech-core__inner {
    border-radius: 25px;
  }

  .tech-core__mark {
    font-size: 20px;
  }

  /* Mobile nodes */

  .tech-node {
    min-width: 90px;

    padding: 10px 11px;
  }

  .tech-node strong {
    font-size: 9px;
  }

  .tech-node small {
    font-size: 5px;
  }

  .tech-node--1 {
    left: 2%;
    top: 8%;
  }

  .tech-node--2 {
    right: 1%;
    top: 8%;
  }

  .tech-node--3 {
    right: 0;
    top: 46%;
  }

  .tech-node--4 {
    right: 5%;
    bottom: 5%;
  }

  .tech-node--5 {
    left: 5%;
    bottom: 5%;
  }

  .tech-node--6 {
    left: 0;
    top: 46%;
  }

  /* Intelligence */

  .tech-intelligence {
    display: flex;

    padding: 24px 18px;
  }

  .tech-intelligence__main {
    padding-bottom: 20px;
  }

  .tech-capabilities {
    padding: 20px 0;

    border-top: 1px solid rgba(3, 17, 38, 0.08);

    border-bottom: 1px solid rgba(3, 17, 38, 0.08);
  }

  .tech-architecture {
    padding-top: 20px;
  }

  /* Footer */

  .tech-console__footer {
    align-items: flex-start;
    flex-direction: column;

    gap: 14px;

    padding: 20px 18px;
  }
}

/* ================================================================
   VERY SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .tech-ecosystem .container {
    width: calc(100% - 20px);
  }

  .tech-node {
    min-width: 82px;

    padding: 9px;
  }

  .tech-node strong {
    font-size: 8px;
  }

  .tech-ring--outer {
    width: 280px;
    height: 280px;
  }
}

/* ================================================================
   REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .tech-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .tech-ring,
  .tech-line,
  .tech-core__pulse,
  .tech-live-dot {
    animation: none;
  }

  .tech-node,
  .tech-architecture__value {
    transition: none;
  }
}
/* ================================================================
   ================================================================
   AEVORIX — SELECTED WORK / PORTFOLIO
   ================================================================
   ================================================================ */

/* ================================================================
   SECTION
================================================================ */

.work-section {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 110px;

  overflow: hidden;

  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f5faff 100%);

  color: #020817;
}

.work-section .container {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

/* ================================================================
   BACKGROUND
================================================================ */

.work-bg-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(8, 120, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 255, 0.03) 1px, transparent 1px);

  background-size: 80px 80px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.work-bg-orb {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.work-bg-orb--blue {
  width: 650px;
  height: 650px;

  top: 12%;
  left: -450px;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.09), transparent 70%);
}

.work-bg-orb--green {
  width: 500px;
  height: 500px;

  right: -350px;
  bottom: 5%;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.08),
    transparent 70%
  );
}

/* ================================================================
   HEADER
================================================================ */

.work-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 60px;
}

.work-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: #0878ff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.work-kicker__line {
  width: 30px;
  height: 2px;

  border-radius: 100px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

.work-title {
  max-width: 950px;

  margin: 0;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(50px, 5.2vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.work-title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #0878ff, #00b8ff 48%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.work-header__side {
  padding-bottom: 5px;
}

.work-header__side p {
  margin: 0;

  color: #65758a;

  font-size: 14px;

  line-height: 1.8;
}

.work-header__link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #031126;

  font-size: 10px;
  font-weight: 700;

  text-decoration: none;
}

.work-header__link svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-header__link:hover {
  color: #0878ff;
}

.work-header__link:hover svg {
  transform: translateX(5px);
}

/* ================================================================
   TOOLBAR
================================================================ */

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 28px;

  padding: 12px 14px;

  border: 1px solid rgba(8, 120, 255, 0.11);

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.8);

  box-shadow: 0 15px 45px rgba(25, 70, 120, 0.05);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.work-filters {
  display: flex;
  align-items: center;

  gap: 6px;
}

.work-filter {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 42px;

  padding: 0 16px;

  border: 0;
  border-radius: 10px;

  color: #718095;

  background: transparent;

  cursor: pointer;

  font: inherit;

  font-size: 10px;
  font-weight: 700;

  transition:
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.work-filter:hover {
  color: #020817;

  background: rgba(8, 120, 255, 0.05);
}

.work-filter.is-active {
  color: #ffffff;

  background: linear-gradient(135deg, #0878ff, #005ee8);

  box-shadow: 0 10px 25px rgba(8, 120, 255, 0.2);
}

.work-filter__index {
  font-size: 7px;

  opacity: 0.6;

  letter-spacing: 0.1em;
}

.work-toolbar__status {
  display: flex;
  align-items: center;

  gap: 9px;

  padding-right: 8px;

  color: #8998a9;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.work-toolbar__status strong {
  color: #0878ff;
}

.work-status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 10px rgba(115, 237, 49, 0.7);
}

/* ================================================================
   PROJECT GRID
================================================================ */

.work-grid {
  display: grid;

  grid-template-columns: repeat(12, minmax(0, 1fr));

  gap: 22px;
}

/* All mode composition */

.work-card {
  grid-column: span 4;

  min-width: 0;
}

.work-card--featured {
  grid-column: span 8;
}

.work-card--wide {
  grid-column: span 8;
}

/*
   Filtered mode:
   every visible card gets equal width.
*/

.work-grid.is-filtered .work-card {
  grid-column: span 4;
}

/* ================================================================
   PROJECT CARD
================================================================ */

.work-card {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(3, 17, 38, 0.08);

  border-radius: 22px;

  background: #ffffff;

  box-shadow: 0 18px 50px rgba(20, 60, 100, 0.07);

  opacity: 1;

  transform: translateY(0) scale(1);

  transition:
    opacity 400ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms ease,
    border-color 350ms ease;
}

.work-card:hover {
  transform: translateY(-7px);

  border-color: rgba(8, 120, 255, 0.22);

  box-shadow: 0 28px 70px rgba(20, 70, 125, 0.13);
}

/* Filter animation states */

.work-card.is-hiding {
  opacity: 0;

  transform: scale(0.96) translateY(12px);

  pointer-events: none;
}

.work-card.is-hidden {
  display: none;
}

/* ================================================================
   CARD MEDIA
================================================================ */

.work-card__media {
  position: relative;

  height: 330px;

  overflow: hidden;

  background: linear-gradient(145deg, #eaf3fc, #dcebf8);
}

.work-card--featured .work-card__media,
.work-card--wide .work-card__media {
  height: 440px;
}

.work-card__media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms ease;
}

.work-card:hover .work-card__media img {
  transform: scale(1.045);
}

/* Image overlay */

.work-card__overlay {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, 0.28) 0%,
    transparent 35%,
    transparent 65%,
    rgba(2, 8, 23, 0.32) 100%
  );
}

/* ================================================================
   CARD TOP METADATA
================================================================ */

.work-card__top {
  position: absolute;

  left: 18px;
  right: 18px;
  top: 18px;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.work-card__number,
.work-card__type {
  display: inline-flex;
  align-items: center;

  min-height: 27px;

  padding: 0 10px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 100px;

  color: #ffffff;

  background: rgba(2, 8, 23, 0.3);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

/* ================================================================
   PROJECT ACTION
================================================================ */

.work-card__action {
  position: absolute;

  right: 18px;
  bottom: 18px;

  z-index: 4;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #031126;

  background: #ffffff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);

  transform: translateY(10px) scale(0.9);

  opacity: 0;

  transition:
    opacity 350ms ease,
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms ease,
    background 300ms ease;
}

.work-card:hover .work-card__action,
.work-card:focus-within .work-card__action {
  opacity: 1;

  transform: translateY(0) scale(1);
}

.work-card__action:hover {
  color: #ffffff;

  background: #0878ff;
}

.work-card__action svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================================================================
   CARD CONTENT
================================================================ */

.work-card__content {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(160px, 0.65fr);

  align-items: end;

  gap: 25px;

  padding: 24px 24px 26px;
}

.work-card--standard .work-card__content {
  grid-template-columns: 1fr;

  gap: 13px;
}

.work-card__category {
  display: block;

  margin-bottom: 8px;

  color: #0878ff;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.work-card__content h3 {
  margin: 0;

  color: #020817;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 28px;
  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.work-card--featured .work-card__content h3,
.work-card--wide .work-card__content h3 {
  font-size: 34px;
}

.work-card__content p {
  margin: 0;

  color: #718095;

  font-size: 10px;

  line-height: 1.7;
}

/* ================================================================
   BOTTOM CTA
================================================================ */

.work-bottom {
  margin-top: 70px;
}

.work-bottom__line {
  width: 100%;
  height: 1px;

  margin-bottom: 30px;

  background: linear-gradient(
    90deg,
    rgba(8, 120, 255, 0.25),
    rgba(0, 184, 255, 0.1),
    rgba(115, 237, 49, 0.25)
  );
}

.work-bottom__content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.work-bottom__eyebrow {
  display: block;

  margin-bottom: 8px;

  color: #0878ff;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.work-bottom__content p {
  max-width: 620px;

  margin: 0;

  color: #4f6177;

  font-size: 16px;

  line-height: 1.6;
}

.work-bottom__button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;

  padding: 0 20px;

  border-radius: 12px;

  color: #ffffff;

  background: linear-gradient(135deg, #0878ff, #005ee8);

  box-shadow: 0 15px 35px rgba(8, 120, 255, 0.2);

  font-size: 10px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease;
}

.work-bottom__button:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 45px rgba(8, 120, 255, 0.28);
}

.work-bottom__button svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 300ms ease;
}

.work-bottom__button:hover svg {
  transform: translateX(4px);
}

/* ================================================================
   SCROLL REVEAL
================================================================ */

.work-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   LAPTOP
================================================================ */

@media (max-width: 1100px) {
  .work-section {
    padding: 115px 0 90px;
  }

  .work-card__media {
    height: 290px;
  }

  .work-card--featured .work-card__media,
  .work-card--wide .work-card__media {
    height: 390px;
  }
}

/* ================================================================
   TABLET
================================================================ */

@media (max-width: 850px) {
  .work-section .container {
    width: calc(100% - 36px);
  }

  .work-header {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 48px;
  }

  .work-header__side {
    max-width: 600px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card,
  .work-card--featured,
  .work-card--wide,
  .work-grid.is-filtered .work-card {
    grid-column: span 1;
  }

  .work-card__media,
  .work-card--featured .work-card__media,
  .work-card--wide .work-card__media {
    height: 320px;
  }

  .work-card__content,
  .work-card--featured .work-card__content,
  .work-card--wide .work-card__content {
    grid-template-columns: 1fr;

    gap: 13px;
  }

  .work-card--featured .work-card__content h3,
  .work-card--wide .work-card__content h3 {
    font-size: 28px;
  }
}

/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 620px) {
  .work-section {
    padding: 85px 0 60px;
  }

  .work-section .container {
    width: calc(100% - 28px);
  }

  .work-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .work-header__side p {
    font-size: 13px;
  }

  /* Toolbar */

  .work-toolbar {
    align-items: flex-start;
    flex-direction: column;

    gap: 13px;

    padding: 10px;

    border-radius: 14px;
  }

  .work-filters {
    width: 100%;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .work-filters::-webkit-scrollbar {
    display: none;
  }

  .work-filter {
    flex-shrink: 0;

    min-height: 40px;

    padding: 0 13px;
  }

  .work-toolbar__status {
    padding: 0 7px 4px;
  }

  /* Grid */

  .work-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .work-card,
  .work-card--featured,
  .work-card--wide,
  .work-grid.is-filtered .work-card {
    grid-column: 1;
  }

  .work-card {
    border-radius: 18px;
  }

  .work-card__media,
  .work-card--featured .work-card__media,
  .work-card--wide .work-card__media {
    height: 300px;
  }

  .work-card__content {
    padding: 20px;
  }

  .work-card__content h3,
  .work-card--featured .work-card__content h3,
  .work-card--wide .work-card__content h3 {
    font-size: 25px;
  }

  /* Always show action on touch devices */

  .work-card__action {
    width: 44px;
    height: 44px;

    opacity: 1;

    transform: none;
  }

  /* Bottom CTA */

  .work-bottom {
    margin-top: 50px;
  }

  .work-bottom__content {
    align-items: flex-start;
    flex-direction: column;

    gap: 24px;
  }

  .work-bottom__content p {
    font-size: 14px;
  }
}

/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .work-section .container {
    width: calc(100% - 20px);
  }

  .work-card__media,
  .work-card--featured .work-card__media,
  .work-card--wide .work-card__media {
    height: 260px;
  }
}

/* ================================================================
   REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .work-reveal,
  .work-card {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .work-card__media img,
  .work-card__action,
  .work-bottom__button {
    transition: none;
  }
}

/* ================================================================
   ================================================================
   AEVORIX — ABOUT US SECTION
   COMPLETE REPLACEMENT CSS
   ================================================================
   ================================================================ */

/* ================================================================
   01. SECTION WRAPPER
================================================================ */

.about-aevorix {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 110px;

  overflow: hidden;

  color: #eef6ff;

  background:
    radial-gradient(
      circle at 72% 40%,
      rgba(8, 120, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(145deg, #020817 0%, #041225 52%, #020b18 100%);
}

.about-aevorix .container {
  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   02. DECORATIVE BACKGROUND
================================================================ */

.about-aevorix__grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(75, 160, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 160, 255, 0.045) 1px, transparent 1px);

  background-size: 72px 72px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.about-aevorix__glow {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.about-aevorix__glow--blue {
  width: 700px;
  height: 700px;

  left: -500px;
  top: 15%;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.16), transparent 70%);
}

.about-aevorix__glow--green {
  width: 550px;
  height: 550px;

  right: -400px;
  bottom: 0;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.08),
    transparent 70%
  );
}

/* ================================================================
   03. SECTION HEADER
================================================================ */

.about-header {
  margin-bottom: 70px;
}

.about-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  color: #56aaff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.about-kicker__line {
  width: 30px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 100px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

.about-header__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(300px, 0.6fr);

  align-items: end;

  gap: 80px;
}

.about-title {
  max-width: 950px;

  margin: 0;

  color: #f5f9ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(50px, 5.2vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.about-title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #1887ff, #27c4ff 48%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.about-header__intro p {
  margin: 0;

  color: #a6b8cb;

  font-size: 15px;

  line-height: 1.8;
}

.about-header__location {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #91a7bd;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.about-location-dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 12px rgba(115, 237, 49, 0.7);
}

/* ================================================================
   04. MAIN ABOUT PANEL
================================================================ */

.about-panel {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.82fr)
    minmax(550px, 1.18fr);

  overflow: hidden;

  border: 1px solid rgba(91, 169, 255, 0.14);

  border-radius: 28px;

  background: rgba(7, 22, 43, 0.72);

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ================================================================
   05. LEFT SIDE — COMPANY STORY
================================================================ */

.about-story {
  display: flex;
  flex-direction: column;

  padding: 36px;

  border-right: 1px solid rgba(91, 169, 255, 0.12);

  background: linear-gradient(
    160deg,
    rgba(11, 35, 67, 0.72),
    rgba(3, 14, 30, 0.62)
  );
}

.about-story__index {
  margin-bottom: 50px;

  color: #7893ae;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.about-story__year {
  display: inline-flex;

  margin-bottom: 16px;

  color: #73ed31;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.about-story__content h3 {
  margin: 0 0 25px;

  color: #f5f9ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(32px, 3vw, 46px);

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -0.045em;
}

.about-story__content h3 span {
  color: #48a8ff;
}

/* Main story paragraphs */

.about-story__content p {
  margin: 0 0 22px;

  color: #a9bad0;

  font-size: 15px;

  line-height: 1.85;
}

/* Company philosophy quote */

.about-story__content blockquote {
  position: relative;

  margin: 30px 0 0;

  padding: 7px 0 7px 22px;

  border-left: 2px solid #0878ff;

  color: #d0ddeb;

  font-size: 15px;

  line-height: 1.75;
}

/* ================================================================
   06. CORE FOCUS
================================================================ */

.about-focus {
  margin-top: auto;

  padding-top: 45px;
}

/* CORE FOCUS title */

.about-focus__label {
  display: block;

  margin-bottom: 16px;

  color: #7f9bb7;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.about-focus__items {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

/* Games / Applications / Web Platforms / AI ML / Digital Growth */

.about-focus__items span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 9px 16px;

  border: 1px solid rgba(83, 162, 255, 0.28);

  border-radius: 100px;

  color: #c2d4e7;

  background: rgba(15, 48, 84, 0.38);

  font-size: 11px;
  font-weight: 500;

  line-height: 1;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}

.about-focus__items span:hover {
  color: #ffffff;

  border-color: rgba(8, 120, 255, 0.65);

  background: rgba(8, 120, 255, 0.16);

  transform: translateY(-2px);
}

/* ================================================================
   07. RIGHT SIDE — EVOLUTION SYSTEM
================================================================ */

.about-evolution {
  min-width: 0;

  padding: 36px;
}

.about-evolution__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 25px;

  padding-bottom: 25px;

  border-bottom: 1px solid rgba(91, 169, 255, 0.1);
}

.about-evolution__eyebrow {
  display: block;

  margin-bottom: 8px;

  color: #56aaff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.about-evolution__top h3 {
  margin: 0;

  color: #edf6ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 28px;
  font-weight: 600;

  letter-spacing: -0.035em;
}

.about-evolution__status {
  padding: 7px 11px;

  border: 1px solid rgba(115, 237, 49, 0.25);

  border-radius: 100px;

  color: #73ed31;

  background: rgba(115, 237, 49, 0.06);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

/* ================================================================
   08. EVOLUTION VISUAL AREA
================================================================ */

.about-evolution__visual {
  position: relative;

  width: 100%;
  height: 440px;

  overflow: hidden;
}

.about-evolution__visual::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(72, 153, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 153, 245, 0.045) 1px, transparent 1px);

  background-size: 42px 42px;

  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 78%);

  mask-image: radial-gradient(circle at center, #000, transparent 78%);

  pointer-events: none;
}

/* ================================================================
   09. EVOLUTION SVG PATH
================================================================ */

.about-evolution__svg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.about-evolution__path {
  fill: none;

  stroke-width: 2;

  stroke-linecap: round;
}

.about-evolution__path--ghost {
  stroke: rgba(78, 158, 248, 0.12);

  stroke-width: 6;
}

.about-evolution__path--active {
  stroke: url(#aboutPathGradient);

  stroke-dasharray: 10 12;

  animation: aboutPathFlow 10s linear infinite;
}

@keyframes aboutPathFlow {
  to {
    stroke-dashoffset: -220;
  }
}

/* ================================================================
   10. EVOLUTION STAGES
================================================================ */

.about-stage {
  position: absolute;

  z-index: 3;
}

.about-stage--1 {
  left: 3%;
  bottom: 9%;
}

.about-stage--2 {
  left: 27%;
  bottom: 31%;
}

.about-stage--3 {
  left: 52%;
  top: 30%;
}

.about-stage--4 {
  right: 3%;
  top: 5%;
}

/* Stage node */

.about-stage__dot {
  position: absolute;

  width: 12px;
  height: 12px;

  left: 0;
  top: 50%;

  border: 3px solid #071a31;

  border-radius: 50%;

  background: #40a7ff;

  box-shadow:
    0 0 0 5px rgba(8, 120, 255, 0.12),
    0 0 18px rgba(8, 120, 255, 0.5);

  transform: translateY(-50%);
}

.about-stage--4 .about-stage__dot {
  background: #73ed31;

  box-shadow:
    0 0 0 5px rgba(115, 237, 49, 0.1),
    0 0 18px rgba(115, 237, 49, 0.45);
}

/* Stage card */

.about-stage__card {
  min-width: 160px;

  margin-left: 22px;

  padding: 14px 16px;

  border: 1px solid rgba(74, 157, 250, 0.18);

  border-radius: 12px;

  background: rgba(5, 20, 39, 0.9);

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* 2014 / EXPANSION / EVOLUTION / TODAY */

.about-stage__card small {
  display: block;

  margin-bottom: 7px;

  color: #58adff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

/* Main stage title */

.about-stage__card strong {
  display: block;

  color: #eaf4ff;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.3;
}

/* Stage description */

.about-stage__card span {
  display: block;

  margin-top: 6px;

  color: #91a8bf;

  font-size: 10px;

  line-height: 1.5;
}

/* ================================================================
   11. MOVING DATA SIGNAL
================================================================ */

.about-data-signal {
  position: absolute;

  z-index: 4;

  width: 8px;
  height: 8px;

  left: 8%;
  bottom: 16%;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 18px rgba(115, 237, 49, 0.9);

  animation: aboutSignalMove 7s ease-in-out infinite alternate;
}

@keyframes aboutSignalMove {
  0% {
    left: 8%;
    bottom: 16%;
  }

  32% {
    left: 31%;
    bottom: 38%;
  }

  65% {
    left: 57%;
    bottom: 60%;
  }

  100% {
    left: 89%;
    bottom: 82%;
  }
}

/* ================================================================
   12. OUR DIRECTION / VISION
================================================================ */

.about-vision {
  display: grid;

  grid-template-columns: 150px 1fr;

  gap: 28px;

  padding-top: 28px;

  border-top: 1px solid rgba(91, 169, 255, 0.1);
}

.about-vision__label {
  color: #56aaff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.about-vision p {
  margin: 0;

  color: #afc0d2;

  font-size: 14px;

  line-height: 1.75;
}

/* ================================================================
   13. BOTTOM FACT STRIP
================================================================ */

.about-facts {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 24px;

  overflow: hidden;

  border: 1px solid rgba(91, 169, 255, 0.13);

  border-radius: 20px;

  background: rgba(6, 20, 39, 0.72);
}

.about-fact {
  min-height: 140px;

  display: flex;
  align-items: center;

  gap: 20px;

  padding: 26px 24px;

  border-right: 1px solid rgba(91, 169, 255, 0.1);
}

.about-fact:last-child {
  border-right: 0;
}

/* 2014 and 20+ */

.about-fact__number,
.about-fact__symbol {
  flex-shrink: 0;

  color: #f2f8ff;

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 34px;
  font-weight: 600;

  letter-spacing: -0.05em;
}

.about-fact__number span {
  color: #73ed31;
}

.about-fact__symbol {
  color: #47a7ff;

  font-size: 38px;
}

/* Text wrapper */

.about-fact div {
  display: flex;
  flex-direction: column;

  gap: 7px;
}

/* Bottom fact heading */

.about-fact strong {
  color: #e5effa;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.35;
}

/*
   Bottom description:
   Building and evolving since
   Across technology...
   Working across markets...
   Our home...
*/

.about-fact div span {
  color: #95a9bf;

  font-size: 12px;
  font-weight: 400;

  line-height: 1.55;
}

/* ================================================================
   14. SCROLL REVEAL
================================================================ */

.about-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   15. LAPTOP
================================================================ */

@media (max-width: 1150px) {
  .about-panel {
    grid-template-columns:
      minmax(330px, 0.85fr)
      minmax(500px, 1.15fr);
  }

  .about-stage__card {
    min-width: 140px;
  }

  .about-fact {
    padding: 22px 18px;
  }

  .about-fact__number,
  .about-fact__symbol {
    font-size: 30px;
  }

  .about-fact strong {
    font-size: 12px;
  }

  .about-fact div span {
    font-size: 11px;
  }
}

/* ================================================================
   16. TABLET
================================================================ */

@media (max-width: 950px) {
  .about-aevorix {
    padding: 115px 0 90px;
  }

  .about-header__layout {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .about-header__intro {
    max-width: 650px;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-story {
    border-right: 0;

    border-bottom: 1px solid rgba(91, 169, 255, 0.12);
  }

  .about-story__index {
    margin-bottom: 30px;
  }

  .about-focus {
    margin-top: 35px;

    padding-top: 0;
  }

  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-fact {
    min-height: 125px;
  }

  .about-fact:nth-child(2) {
    border-right: 0;
  }

  .about-fact:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(91, 169, 255, 0.1);
  }

  .about-fact strong {
    font-size: 13px;
  }

  .about-fact div span {
    font-size: 12px;
  }
}

/* ================================================================
   17. SMALL TABLET
================================================================ */

@media (max-width: 720px) {
  .about-aevorix .container {
    width: calc(100% - 36px);
  }

  .about-evolution {
    padding: 28px 20px;
  }

  .about-evolution__visual {
    height: 500px;
  }

  .about-stage__card {
    min-width: 125px;

    padding: 12px;
  }

  .about-stage--1 {
    left: 1%;
  }

  .about-stage--2 {
    left: 18%;
  }

  .about-stage--3 {
    left: 42%;
  }

  .about-stage--4 {
    right: 0;
  }
}

/* ================================================================
   18. MOBILE
================================================================ */

@media (max-width: 620px) {
  .about-aevorix {
    padding: 85px 0 60px;
  }

  .about-aevorix .container {
    width: calc(100% - 28px);
  }

  /* Header */

  .about-header {
    margin-bottom: 48px;
  }

  .about-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .about-header__intro p {
    font-size: 14px;

    line-height: 1.75;
  }

  .about-header__location {
    font-size: 9px;

    line-height: 1.5;
  }

  /* Main panel */

  .about-panel {
    border-radius: 20px;
  }

  /* Story */

  .about-story {
    padding: 25px 20px;
  }

  .about-story__content h3 {
    font-size: 34px;
  }

  .about-story__content p {
    font-size: 14px;

    line-height: 1.8;
  }

  .about-story__content blockquote {
    font-size: 14px;

    line-height: 1.7;
  }

  /* Core Focus */

  .about-focus__label {
    font-size: 10px;
  }

  .about-focus__items {
    gap: 8px;
  }

  .about-focus__items span {
    min-height: 38px;

    padding: 8px 13px;

    font-size: 11px;
  }

  /* Evolution */

  .about-evolution {
    padding: 25px 18px;
  }

  .about-evolution__top h3 {
    font-size: 22px;
  }

  .about-evolution__eyebrow {
    font-size: 9px;
  }

  /*
       Desktop evolution graph becomes
       vertical timeline on mobile.
    */

  .about-evolution__visual {
    height: auto;

    display: flex;
    flex-direction: column;

    gap: 16px;

    padding: 30px 0;
  }

  .about-evolution__svg,
  .about-data-signal {
    display: none;
  }

  .about-stage {
    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    display: flex;
    align-items: center;

    padding-left: 18px;
  }

  .about-stage::before {
    content: "";

    position: absolute;

    width: 1px;

    left: 5px;
    top: 50%;
    bottom: -28px;

    background: linear-gradient(#0878ff, rgba(8, 120, 255, 0.15));
  }

  .about-stage:last-child::before {
    display: none;
  }

  .about-stage__dot {
    left: 0;
    top: 50%;
  }

  .about-stage__card {
    width: 100%;

    margin-left: 10px;

    padding: 15px;
  }

  .about-stage__card small {
    font-size: 9px;
  }

  .about-stage__card strong {
    font-size: 13px;
  }

  .about-stage__card span {
    font-size: 10px;
  }

  /* Vision */

  .about-vision {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .about-vision__label {
    font-size: 10px;
  }

  .about-vision p {
    font-size: 13px;

    line-height: 1.7;
  }

  /* Facts */

  .about-facts {
    grid-template-columns: 1fr;

    border-radius: 18px;
  }

  .about-fact {
    min-height: 110px;

    border-right: 0;

    border-bottom: 1px solid rgba(91, 169, 255, 0.1);
  }

  .about-fact:nth-child(2) {
    border-right: 0;
  }

  .about-fact:last-child {
    border-bottom: 0;
  }

  .about-fact strong {
    font-size: 13px;
  }

  .about-fact div span {
    font-size: 11px;

    line-height: 1.55;
  }
}

/* ================================================================
   19. SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .about-aevorix .container {
    width: calc(100% - 20px);
  }

  .about-story,
  .about-evolution {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-focus__items span {
    padding-left: 11px;
    padding-right: 11px;

    font-size: 10px;
  }

  .about-fact {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ================================================================
   20. REDUCED MOTION ACCESSIBILITY
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .about-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .about-evolution__path--active,
  .about-data-signal {
    animation: none;
  }

  .about-focus__items span {
    transition: none;
  }
}
/* ================================================================
   ================================================================
   AEVORIX — WHY CHOOSE US
   ================================================================
   ================================================================ */

/* ================================================================
   01. SECTION
================================================================ */

.why-aevorix {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 120px;

  overflow: hidden;

  color: #eef6ff;

  background:
    radial-gradient(
      circle at 15% 40%,
      rgba(8, 120, 255, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(115, 237, 49, 0.05),
      transparent 25%
    ),
    linear-gradient(145deg, #020814 0%, #03101f 55%, #020915 100%);
}

.why-aevorix__container {
  position: relative;

  z-index: 2;

  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   02. BACKGROUND
================================================================ */

.why-aevorix__grid {
  position: absolute;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(73, 155, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 155, 245, 0.035) 1px, transparent 1px);

  background-size: 72px 72px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.why-aevorix__glow {
  position: absolute;

  width: 700px;
  height: 700px;

  right: -500px;
  top: 15%;

  z-index: -1;

  border-radius: 50%;

  pointer-events: none;

  background: radial-gradient(circle, rgba(0, 145, 255, 0.12), transparent 70%);
}

/* ================================================================
   03. HEADER
================================================================ */

.why-header {
  margin-bottom: 85px;
}

.why-header__meta {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: #56aaff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.why-header__line {
  width: 30px;
  height: 2px;

  background: linear-gradient(90deg, #0878ff, #73ed31);

  border-radius: 100px;
}

.why-header__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(320px, 0.6fr);

  align-items: end;

  gap: 80px;
}

.why-header__title {
  max-width: 900px;

  margin: 0;

  color: #f4f8ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(52px, 5.4vw, 84px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.why-header__title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #1688ff, #38baff 50%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.why-header__description p {
  margin: 0;

  color: #9eb2c7;

  font-size: 15px;

  line-height: 1.8;
}

.why-header__signal {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #8099b2;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.why-header__signal-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 14px rgba(115, 237, 49, 0.7);
}

/* ================================================================
   04. MAIN LAYOUT
================================================================ */

.why-layout {
  display: grid;

  grid-template-columns:
    minmax(330px, 0.72fr)
    minmax(550px, 1.28fr);

  gap: 70px;

  align-items: start;
}

/* ================================================================
   05. LEFT INTRO
================================================================ */

.why-intro {
  min-width: 0;
}

.why-intro__sticky {
  position: sticky;

  top: 120px;
}

.why-intro__eyebrow {
  display: block;

  margin-bottom: 16px;

  color: #73ed31;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.why-intro h3 {
  max-width: 480px;

  margin: 0;

  color: #edf5ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(36px, 3.5vw, 55px);

  font-weight: 600;

  line-height: 1.04;

  letter-spacing: -0.045em;
}

.why-intro h3 span {
  display: block;

  color: #48a8ff;
}

.why-intro > .why-intro__sticky > p {
  max-width: 470px;

  margin: 25px 0 0;

  color: #98adc2;

  font-size: 15px;

  line-height: 1.8;
}

/* ================================================================
   06. MINI DELIVERY SYSTEM
================================================================ */

.why-intro__system {
  max-width: 470px;

  margin-top: 40px;

  overflow: hidden;

  border: 1px solid rgba(74, 158, 250, 0.18);

  border-radius: 20px;

  background: linear-gradient(
    145deg,
    rgba(10, 34, 63, 0.7),
    rgba(4, 17, 34, 0.8)
  );

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.why-system__top,
.why-system__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 14px 18px;

  color: #718ca7;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.why-system__top {
  border-bottom: 1px solid rgba(74, 158, 250, 0.1);
}

.why-system__footer {
  border-top: 1px solid rgba(74, 158, 250, 0.1);
}

.why-system__live {
  color: #73ed31;
}

/* ================================================================
   SYSTEM VISUAL
================================================================ */

.why-system__visual {
  position: relative;

  height: 280px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background-image:
    linear-gradient(rgba(71, 152, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 152, 245, 0.045) 1px, transparent 1px);

  background-size: 35px 35px;
}

.why-system__core {
  position: relative;

  z-index: 5;

  width: 74px;
  height: 74px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(65, 165, 255, 0.5);

  border-radius: 22px;

  background: linear-gradient(145deg, #0878ff, #0aa7ff);

  box-shadow: 0 0 40px rgba(8, 120, 255, 0.28);

  transform: rotate(45deg);
}

.why-system__core span {
  color: #ffffff;

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 30px;
  font-weight: 700;

  transform: rotate(-45deg);
}

/* Orbits */

.why-system__orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border: 1px solid rgba(66, 158, 255, 0.18);

  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.why-system__orbit--1 {
  width: 165px;
  height: 165px;

  animation: whyOrbitSpin 12s linear infinite;
}

.why-system__orbit--2 {
  width: 245px;
  height: 245px;

  border-style: dashed;

  animation: whyOrbitSpinReverse 18s linear infinite;
}

.why-system__node {
  position: absolute;

  width: 10px;
  height: 10px;

  left: 50%;
  top: -5px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 14px rgba(115, 237, 49, 0.8);
}

@keyframes whyOrbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes whyOrbitSpinReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* System labels */

.why-system__labels span {
  position: absolute;

  color: #7794b1;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.why-system__labels span:nth-child(1) {
  left: 8%;
  top: 16%;
}

.why-system__labels span:nth-child(2) {
  right: 8%;
  top: 18%;
}

.why-system__labels span:nth-child(3) {
  left: 10%;
  bottom: 15%;
}

.why-system__labels span:nth-child(4) {
  right: 7%;
  bottom: 16%;
}

/* ================================================================
   07. ADVANTAGE LIST
================================================================ */

.why-advantages {
  display: flex;
  flex-direction: column;
}

/* ================================================================
   08. ADVANTAGE ITEM
================================================================ */

.why-item {
  position: relative;

  display: grid;

  grid-template-columns:
    80px
    minmax(0, 1fr);

  gap: 25px;

  min-height: 250px;

  padding: 38px 30px;

  overflow: hidden;

  border-top: 1px solid rgba(76, 158, 247, 0.15);

  transition:
    background 400ms ease,
    border-color 400ms ease;
}

.why-item:last-child {
  border-bottom: 1px solid rgba(76, 158, 247, 0.15);
}

.why-item:hover {
  background: linear-gradient(
    90deg,
    rgba(8, 120, 255, 0.07),
    rgba(115, 237, 49, 0.025)
  );

  border-color: rgba(70, 164, 255, 0.32);
}

/* Scan effect */

.why-item__scan {
  position: absolute;

  width: 1px;
  height: 100%;

  left: -10%;

  top: 0;

  opacity: 0;

  pointer-events: none;

  background: linear-gradient(to bottom, transparent, #1e96ff, transparent);

  box-shadow: 0 0 30px rgba(30, 150, 255, 0.5);
}

.why-item:hover .why-item__scan {
  opacity: 1;

  animation: whyScanMove 1.1s ease forwards;
}

@keyframes whyScanMove {
  from {
    left: -10%;
  }

  to {
    left: 110%;
  }
}

/* Number */

.why-item__number {
  color: rgba(99, 164, 226, 0.28);

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 42px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.06em;

  transition:
    color 350ms ease,
    text-shadow 350ms ease;
}

.why-item:hover .why-item__number {
  color: #168cff;

  text-shadow: 0 0 25px rgba(8, 120, 255, 0.3);
}

/* Item Content */

.why-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 25px;
}

.why-item__top h3 {
  margin: 0;

  color: #edf5ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(25px, 2.3vw, 35px);

  font-weight: 600;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

.why-item__icon {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(74, 160, 255, 0.2);

  border-radius: 50%;

  color: #49a9ff;

  background: rgba(8, 120, 255, 0.06);

  font-size: 18px;

  transition:
    color 350ms ease,
    border-color 350ms ease,
    background 350ms ease,
    transform 350ms ease;
}

.why-item:hover .why-item__icon {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.3);

  background: rgba(115, 237, 49, 0.06);

  transform: rotate(8deg) scale(1.05);
}

.why-item__content p {
  max-width: 680px;

  margin: 18px 0 0;

  color: #97abc0;

  font-size: 15px;

  line-height: 1.8;
}

/* Tags */

.why-item__tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 24px;
}

.why-item__tags span {
  padding: 7px 11px;

  border: 1px solid rgba(73, 157, 247, 0.16);

  border-radius: 100px;

  color: #8da6bf;

  background: rgba(12, 42, 73, 0.3);

  font-size: 10px;
  font-weight: 600;

  transition:
    color 300ms ease,
    border-color 300ms ease;
}

.why-item:hover .why-item__tags span {
  color: #b9cee2;

  border-color: rgba(73, 157, 247, 0.28);
}

/* ================================================================
   09. BOTTOM CTA STRIP
================================================================ */

.why-bottom {
  display: grid;

  grid-template-columns:
    auto
    minmax(300px, 1fr)
    auto;

  align-items: center;

  gap: 50px;

  margin-top: 80px;

  padding: 28px 32px;

  border: 1px solid rgba(74, 159, 250, 0.18);

  border-radius: 18px;

  background: linear-gradient(
    100deg,
    rgba(8, 120, 255, 0.08),
    rgba(5, 24, 45, 0.75),
    rgba(115, 237, 49, 0.035)
  );
}

.why-bottom__status {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #819bb4;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.why-bottom__dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 12px rgba(115, 237, 49, 0.7);
}

.why-bottom p {
  margin: 0;

  color: #94a9be;

  font-size: 14px;

  line-height: 1.7;
}

.why-bottom p strong {
  color: #dbe8f5;

  font-weight: 500;
}

.why-bottom__link {
  display: inline-flex;
  align-items: center;

  gap: 14px;

  color: #eef7ff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  white-space: nowrap;
}

.why-bottom__arrow {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #04101f;

  background: #73ed31;

  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.why-bottom__link:hover .why-bottom__arrow {
  transform: translate(3px, -3px);

  box-shadow: 0 0 22px rgba(115, 237, 49, 0.3);
}

/* ================================================================
   10. REVEAL ANIMATION
================================================================ */

.why-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   11. LAPTOP
================================================================ */

@media (max-width: 1150px) {
  .why-layout {
    grid-template-columns:
      minmax(300px, 0.7fr)
      minmax(500px, 1.3fr);

    gap: 45px;
  }

  .why-item {
    grid-template-columns:
      65px
      minmax(0, 1fr);
  }

  .why-bottom {
    gap: 30px;
  }
}

/* ================================================================
   12. TABLET
================================================================ */

@media (max-width: 950px) {
  .why-aevorix {
    padding: 110px 0 90px;
  }

  .why-header__layout {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .why-header__description {
    max-width: 650px;
  }

  .why-layout {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .why-intro__sticky {
    position: relative;

    top: auto;
  }

  .why-intro__system {
    max-width: 600px;
  }

  .why-bottom {
    grid-template-columns: 1fr auto;
  }

  .why-bottom__status {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   13. MOBILE
================================================================ */

@media (max-width: 620px) {
  .why-aevorix {
    padding: 85px 0 65px;
  }

  .why-aevorix__container {
    width: calc(100% - 28px);
  }

  .why-header {
    margin-bottom: 60px;
  }

  .why-header__title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .why-header__description p {
    font-size: 14px;
  }

  .why-layout {
    gap: 55px;
  }

  .why-intro h3 {
    font-size: 38px;
  }

  .why-intro > .why-intro__sticky > p {
    font-size: 14px;
  }

  .why-system__visual {
    height: 250px;
  }

  /* Advantage items */

  .why-item {
    grid-template-columns: 1fr;

    gap: 18px;

    min-height: auto;

    padding: 30px 8px 32px;
  }

  .why-item__number {
    font-size: 32px;
  }

  .why-item__top h3 {
    font-size: 27px;
  }

  .why-item__content p {
    font-size: 14px;

    line-height: 1.75;
  }

  .why-item__tags span {
    font-size: 10px;
  }

  /* Bottom */

  .why-bottom {
    grid-template-columns: 1fr;

    gap: 22px;

    margin-top: 55px;

    padding: 24px 20px;
  }

  .why-bottom__status {
    grid-column: auto;
  }

  .why-bottom__link {
    justify-content: space-between;
  }
}

/* ================================================================
   14. SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .why-aevorix__container {
    width: calc(100% - 20px);
  }

  .why-system__labels span {
    font-size: 7px;
  }

  .why-item__top h3 {
    font-size: 24px;
  }
}

/* ================================================================
   15. REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .why-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .why-system__orbit--1,
  .why-system__orbit--2 {
    animation: none;
  }

  .why-item:hover .why-item__scan {
    animation: none;
  }
}
/* ================================================================
   ================================================================
   AEVORIX TECH — CONTACT SECTION
   COMPLETE CSS
   ================================================================
   ================================================================ */

/* ================================================================
   01. SECTION
================================================================ */

.contact-aevorix {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 110px;

  overflow: hidden;

  color: #eef6ff;

  background:
    radial-gradient(circle at 10% 50%, rgba(8, 120, 255, 0.1), transparent 30%),
    radial-gradient(
      circle at 90% 30%,
      rgba(115, 237, 49, 0.045),
      transparent 25%
    ),
    linear-gradient(145deg, #020713 0%, #03101f 52%, #020915 100%);
}

.contact-container {
  position: relative;

  z-index: 2;

  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   02. BACKGROUND DECORATION
================================================================ */

.contact-bg-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(74, 157, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 157, 247, 0.035) 1px, transparent 1px);

  background-size: 72px 72px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.contact-glow {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.contact-glow--blue {
  width: 700px;
  height: 700px;

  left: -500px;
  top: 20%;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.15), transparent 70%);
}

.contact-glow--green {
  width: 500px;
  height: 500px;

  right: -350px;
  bottom: -100px;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.07),
    transparent 70%
  );
}

/* ================================================================
   03. HEADER
================================================================ */

.contact-header {
  margin-bottom: 80px;
}

.contact-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: #56aaff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.contact-kicker__line {
  width: 30px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 100px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

.contact-header__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(320px, 0.6fr);

  align-items: end;

  gap: 80px;
}

.contact-title {
  max-width: 900px;

  margin: 0;

  color: #f4f8ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(54px, 5.5vw, 86px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.contact-title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #1688ff, #36baff 50%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.contact-header__side p {
  margin: 0;

  color: #9eb2c7;

  font-size: 15px;

  line-height: 1.8;
}

.contact-availability {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #829bb4;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.contact-availability__dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 14px rgba(115, 237, 49, 0.75);

  animation: contactAvailabilityPulse 2.2s ease-in-out infinite;
}

@keyframes contactAvailabilityPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(115, 237, 49, 0.3),
      0 0 12px rgba(115, 237, 49, 0.6);
  }

  50% {
    box-shadow:
      0 0 0 7px rgba(115, 237, 49, 0),
      0 0 18px rgba(115, 237, 49, 0.8);
  }
}

/* ================================================================
   04. MAIN GRID
================================================================ */

.contact-main {
  display: grid;

  grid-template-columns:
    minmax(400px, 0.9fr)
    minmax(500px, 1.1fr);

  gap: 24px;

  align-items: stretch;
}

/* ================================================================
   05. SHARED PANEL STYLE
================================================================ */

.contact-connect,
.contact-location {
  border: 1px solid rgba(77, 161, 250, 0.15);

  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(9, 31, 59, 0.72),
    rgba(4, 16, 32, 0.78)
  );

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ================================================================
   06. LEFT CONTACT PANEL
================================================================ */

.contact-connect {
  display: flex;
  flex-direction: column;

  padding: 38px;
}

.contact-label {
  display: block;

  margin-bottom: 14px;

  color: #56aaff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.contact-connect__intro h3 {
  max-width: 600px;

  margin: 0;

  color: #edf5ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(34px, 3vw, 48px);

  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.045em;
}

.contact-connect__intro h3 span {
  color: #49a9ff;
}

.contact-connect__intro p {
  max-width: 600px;

  margin: 24px 0 0;

  color: #9aafc4;

  font-size: 15px;

  line-height: 1.8;
}

/* ================================================================
   07. CONTACT CHANNELS
================================================================ */

.contact-channels {
  display: flex;
  flex-direction: column;

  margin-top: 45px;
}

.contact-channel {
  position: relative;

  display: grid;

  grid-template-columns:
    54px
    minmax(0, 1fr)
    42px;

  align-items: center;

  gap: 18px;

  padding: 22px 4px;

  overflow: hidden;

  border-top: 1px solid rgba(78, 159, 247, 0.13);

  color: inherit;

  text-decoration: none;

  transition:
    padding-left 350ms ease,
    background 350ms ease;
}

.contact-channel:last-child {
  border-bottom: 1px solid rgba(78, 159, 247, 0.13);
}

.contact-channel:hover {
  padding-left: 12px;

  background: linear-gradient(90deg, rgba(8, 120, 255, 0.07), transparent);
}

/* Icon */

.contact-channel__icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(69, 163, 255, 0.22);

  border-radius: 14px;

  color: #49a9ff;

  background: rgba(8, 120, 255, 0.07);

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
}

.contact-channel:hover .contact-channel__icon {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.3);

  background: rgba(115, 237, 49, 0.06);
}

.contact-channel__icon svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Content */

.contact-channel__content {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.contact-channel__label {
  margin-bottom: 5px;

  color: #6f8ba7;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.contact-channel__content strong {
  color: #e8f2fc;

  font-size: 16px;
  font-weight: 600;

  line-height: 1.4;

  overflow-wrap: anywhere;
}

.contact-channel__note {
  margin-top: 5px;

  color: #839bb3;

  font-size: 11px;

  line-height: 1.5;
}

/* Arrow */

.contact-channel__arrow {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(72, 161, 250, 0.18);

  border-radius: 50%;

  color: #56aaff;

  font-size: 15px;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}

.contact-channel:hover .contact-channel__arrow {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.3);

  transform: translate(3px, -3px);
}

/* ================================================================
   08. LOCATION PANEL
================================================================ */

.contact-location {
  padding: 28px;
}

.contact-location__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 25px;

  padding: 8px 8px 25px;
}

.contact-location__header h3 {
  margin: 0;

  color: #edf5ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 38px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.045em;
}

.contact-location__header h3 span {
  color: #49a9ff;
}

.contact-location__signal {
  display: flex;
  align-items: center;

  gap: 8px;

  padding: 7px 10px;

  border: 1px solid rgba(115, 237, 49, 0.2);

  border-radius: 100px;

  background: rgba(115, 237, 49, 0.04);
}

.contact-location__signal span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 10px rgba(115, 237, 49, 0.6);
}

.contact-location__signal small {
  color: #73ed31;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

/* ================================================================
   09. MAP
================================================================ */

.contact-map {
  position: relative;

  width: 100%;
  height: 420px;

  overflow: hidden;

  border: 1px solid rgba(75, 159, 248, 0.15);

  border-radius: 18px;

  background: #071426;
}

.contact-map iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(0.8) invert(0.88) hue-rotate(175deg) saturate(0.9)
    contrast(1.05);

  opacity: 0.78;

  transition:
    filter 500ms ease,
    opacity 500ms ease,
    transform 700ms ease;
}

.contact-map:hover iframe {
  filter: grayscale(0.35) invert(0.88) hue-rotate(175deg) saturate(1.15)
    contrast(1.05);

  opacity: 0.9;

  transform: scale(1.015);
}

/* Map Marker */

.contact-map__marker {
  position: absolute;

  left: 50%;
  top: 50%;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 11px 14px;

  border: 1px solid rgba(72, 164, 255, 0.3);

  border-radius: 12px;

  background: rgba(3, 15, 31, 0.88);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.contact-map__pulse {
  position: relative;

  width: 10px;
  height: 10px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 14px rgba(115, 237, 49, 0.8);
}

.contact-map__pulse::before {
  content: "";

  position: absolute;
  inset: -7px;

  border: 1px solid rgba(115, 237, 49, 0.35);

  border-radius: 50%;

  animation: contactMapPulse 2s ease-out infinite;
}

@keyframes contactMapPulse {
  from {
    opacity: 1;

    transform: scale(0.7);
  }

  to {
    opacity: 0;

    transform: scale(1.5);
  }
}

.contact-map__marker div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.contact-map__marker strong {
  color: #eef7ff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.06em;
}

.contact-map__marker small {
  color: #7f9ab5;

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.1em;
}

/* ================================================================
   10. ADDRESS
================================================================ */

.contact-address {
  display: grid;

  grid-template-columns:
    50px
    minmax(0, 1fr)
    46px;

  align-items: center;

  gap: 18px;

  margin-top: 20px;

  padding: 22px;

  border: 1px solid rgba(76, 159, 248, 0.13);

  border-radius: 16px;

  background: rgba(8, 27, 51, 0.5);
}

.contact-address__index {
  color: rgba(85, 165, 245, 0.35);

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 27px;
  font-weight: 600;
}

.contact-address__content span {
  display: block;

  margin-bottom: 7px;

  color: #56aaff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.contact-address__content address {
  margin: 0;

  color: #b5c6d7;

  font-size: 13px;
  font-style: normal;

  line-height: 1.65;
}

.contact-address__direction {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #05101e;

  background: #73ed31;

  text-decoration: none;

  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.contact-address__direction:hover {
  transform: translate(3px, -3px);

  box-shadow: 0 0 22px rgba(115, 237, 49, 0.28);
}

/* ================================================================
   11. BOTTOM CTA
================================================================ */

.contact-bottom {
  display: grid;

  grid-template-columns:
    minmax(220px, 0.55fr)
    minmax(320px, 1fr)
    auto;

  align-items: center;

  gap: 45px;

  margin-top: 24px;

  padding: 30px 32px;

  border: 1px solid rgba(76, 159, 248, 0.16);

  border-radius: 20px;

  background: linear-gradient(
    100deg,
    rgba(8, 120, 255, 0.08),
    rgba(5, 22, 42, 0.8),
    rgba(115, 237, 49, 0.035)
  );
}

.contact-bottom__eyebrow {
  display: block;

  margin-bottom: 6px;

  color: #56aaff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.contact-bottom__left h3 {
  margin: 0;

  color: #eaf4ff;

  font-size: 22px;
  font-weight: 600;
}

.contact-bottom > p {
  margin: 0;

  color: #91a7bc;

  font-size: 14px;

  line-height: 1.7;
}

.contact-bottom > p strong {
  color: #d4e2ef;

  font-weight: 500;
}

/* CTA */

.contact-bottom__cta {
  display: inline-flex;
  align-items: center;

  gap: 15px;

  color: #edf7ff;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;
}

.contact-bottom__cta-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #04101f;

  background: #73ed31;

  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.contact-bottom__cta:hover .contact-bottom__cta-icon {
  transform: translate(3px, -3px);

  box-shadow: 0 0 22px rgba(115, 237, 49, 0.3);
}
/* ================================================================
   CONTACT — SOCIAL NETWORKS
================================================================ */

.contact-socials {
  margin-top: 30px;
}

.contact-socials__header {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 16px;
}

.contact-socials__header > span:first-child {
  flex-shrink: 0;

  color: #6f8ca8;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.contact-socials__line {
  width: 100%;
  height: 1px;

  background: linear-gradient(90deg, rgba(75, 160, 250, 0.2), transparent);
}

.contact-socials__links {
  display: flex;
  align-items: center;

  gap: 10px;
}

.contact-social-link {
  position: relative;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border: 1px solid rgba(72, 161, 250, 0.18);

  border-radius: 50%;

  color: #84a6c7;

  background: rgba(8, 120, 255, 0.045);

  text-decoration: none;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.contact-social-link::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0;

  border-radius: inherit;

  background: linear-gradient(
    145deg,
    rgba(8, 120, 255, 0.2),
    rgba(115, 237, 49, 0.1)
  );

  transition: opacity 300ms ease;
}

.contact-social-link svg {
  position: relative;

  z-index: 2;

  width: 19px;
  height: 19px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social-link .social-svg-fill {
  fill: currentColor;
  stroke: none;
}

.contact-social-link:hover {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.35);

  transform: translateY(-4px);

  box-shadow: 0 10px 30px rgba(8, 120, 255, 0.12);
}

.contact-social-link:hover::before {
  opacity: 1;
}

/* Mobile */

@media (max-width: 620px) {
  .contact-socials {
    margin-top: 25px;
  }

  .contact-social-link {
    width: 42px;
    height: 42px;
  }
}
/* ================================================================
   12. SCROLL REVEAL
================================================================ */

.contact-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   13. LAPTOP
================================================================ */

@media (max-width: 1150px) {
  .contact-main {
    grid-template-columns:
      minmax(360px, 0.9fr)
      minmax(460px, 1.1fr);
  }

  .contact-connect {
    padding: 30px;
  }

  .contact-location {
    padding: 22px;
  }

  .contact-bottom {
    gap: 28px;
  }
}

/* ================================================================
   14. TABLET
================================================================ */

@media (max-width: 950px) {
  .contact-aevorix {
    padding: 110px 0 90px;
  }

  .contact-header__layout {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .contact-header__side {
    max-width: 650px;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 380px;
  }

  .contact-bottom {
    grid-template-columns: 1fr auto;
  }

  .contact-bottom__left {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   15. MOBILE
================================================================ */

@media (max-width: 620px) {
  .contact-aevorix {
    padding: 85px 0 65px;
  }

  .contact-container {
    width: calc(100% - 28px);
  }

  /* Header */

  .contact-header {
    margin-bottom: 55px;
  }

  .contact-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-header__side p {
    font-size: 14px;
  }

  .contact-availability {
    font-size: 9px;

    line-height: 1.5;
  }

  /* Panels */

  .contact-connect,
  .contact-location {
    border-radius: 20px;
  }

  .contact-connect {
    padding: 25px 20px;
  }

  .contact-connect__intro h3 {
    font-size: 34px;
  }

  .contact-connect__intro p {
    font-size: 14px;
  }

  /* Contact Channels */

  .contact-channel {
    grid-template-columns:
      46px
      minmax(0, 1fr)
      34px;

    gap: 12px;

    padding: 19px 0;
  }

  .contact-channel__icon {
    width: 42px;
    height: 42px;

    border-radius: 12px;
  }

  .contact-channel__content strong {
    font-size: 14px;
  }

  .contact-channel__note {
    font-size: 10px;
  }

  .contact-channel__arrow {
    width: 32px;
    height: 32px;
  }

  /* Location */

  .contact-location {
    padding: 18px;
  }

  .contact-location__header {
    padding: 6px 4px 20px;
  }

  .contact-location__header h3 {
    font-size: 32px;
  }

  .contact-map {
    height: 330px;
  }

  .contact-map__marker {
    padding: 9px 11px;
  }

  /* Address */

  .contact-address {
    grid-template-columns:
      1fr
      42px;

    gap: 15px;

    padding: 18px;
  }

  .contact-address__index {
    display: none;
  }

  .contact-address__content address {
    font-size: 12px;
  }

  /* Bottom CTA */

  .contact-bottom {
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 24px 20px;
  }

  .contact-bottom__left {
    grid-column: auto;
  }

  .contact-bottom__cta {
    justify-content: space-between;
  }
}

/* ================================================================
   16. SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .contact-container {
    width: calc(100% - 20px);
  }

  .contact-channel {
    grid-template-columns:
      42px
      minmax(0, 1fr);
  }

  .contact-channel__arrow {
    display: none;
  }

  .contact-channel__content strong {
    font-size: 13px;
  }

  .contact-map {
    height: 290px;
  }
}

/* ================================================================
   17. REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .contact-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .contact-availability__dot,
  .contact-map__pulse::before {
    animation: none;
  }

  .contact-map iframe {
    transition: none;
  }
}
/* ================================================================
   ================================================================
   AEVORIX TECH — FOOTER
   COMPLETE CSS
   ================================================================
   ================================================================ */

/* ================================================================
   01. FOOTER WRAPPER
================================================================ */

.site-footer {
  position: relative;
  isolation: isolate;

  width: 100%;

  overflow: hidden;

  color: #eef6ff;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(8, 120, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(115, 237, 49, 0.05),
      transparent 22%
    ),
    linear-gradient(155deg, #020713 0%, #030d1b 55%, #020711 100%);
}

.footer-container {
  position: relative;

  z-index: 2;

  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   02. BACKGROUND
================================================================ */

.footer-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(73, 155, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 155, 245, 0.035) 1px, transparent 1px);

  background-size: 72px 72px;

  -webkit-mask-image: linear-gradient(to bottom, #000, #000 70%, transparent);

  mask-image: linear-gradient(to bottom, #000, #000 70%, transparent);
}

.footer-glow {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.footer-glow--blue {
  width: 650px;
  height: 650px;

  left: -450px;
  top: 5%;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.16), transparent 70%);
}

.footer-glow--green {
  width: 500px;
  height: 500px;

  right: -350px;
  bottom: 5%;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.07),
    transparent 70%
  );
}

/* ================================================================
   03. FOOTER HERO
================================================================ */

.footer-hero {
  padding: 110px 0 85px;

  border-bottom: 1px solid rgba(76, 159, 248, 0.14);
}

.footer-hero__meta {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 25px;

  color: #56aaff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.footer-hero__line {
  width: 30px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 100px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

.footer-hero__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, 0.65fr);

  align-items: end;

  gap: 90px;
}

.footer-hero__content h2 {
  max-width: 900px;

  margin: 0;

  color: #f3f8ff;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(58px, 6.4vw, 100px);

  font-weight: 600;

  line-height: 0.92;

  letter-spacing: -0.065em;
}

.footer-hero__content h2 span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #1688ff, #39bbff 48%, #73ed31);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.footer-hero__side p {
  margin: 0;

  color: #9bafc4;

  font-size: 15px;

  line-height: 1.8;
}

/* ================================================================
   04. START PROJECT LINK
================================================================ */

.footer-project-link {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  margin-top: 28px;

  color: #edf7ff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}

.footer-project-link__icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #04101f;

  background: #73ed31;

  font-size: 17px;

  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.footer-project-link:hover .footer-project-link__icon {
  transform: translate(4px, -4px);

  box-shadow: 0 0 25px rgba(115, 237, 49, 0.3);
}

/* ================================================================
   05. MAIN FOOTER GRID
================================================================ */

.footer-main {
  display: grid;

  grid-template-columns:
    minmax(300px, 1.3fr)
    minmax(130px, 0.55fr)
    minmax(190px, 0.75fr)
    minmax(260px, 1fr);

  gap: 55px;

  padding: 75px 0 80px;

  border-bottom: 1px solid rgba(76, 159, 248, 0.13);
}

/* ================================================================
   06. BRAND
================================================================ */

.footer-brand {
  max-width: 390px;
}

.footer-brand__name {
  display: inline-flex;
  align-items: center;

  gap: 14px;

  color: inherit;

  text-decoration: none;
}

.footer-brand__mark {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(70, 166, 255, 0.35);

  border-radius: 16px;

  color: #ffffff;

  background: linear-gradient(145deg, #0878ff, #09a4ff);

  box-shadow: 0 0 30px rgba(8, 120, 255, 0.2);

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 25px;
  font-weight: 700;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;

  gap: 1px;
}

.footer-brand__text strong {
  color: #edf6ff;

  font-family: var(--font-display, "Space Grotesk", sans-serif);

  font-size: 22px;
  font-weight: 700;

  letter-spacing: 0.04em;
}

.footer-brand__text small {
  color: #73ed31;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.32em;
}

.footer-brand > p {
  margin: 25px 0 0;

  color: #8fa5ba;

  font-size: 14px;

  line-height: 1.75;
}

.footer-brand__status {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-top: 25px;

  color: #7892ab;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.11em;
}

.footer-status-dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 12px rgba(115, 237, 49, 0.7);

  animation: footerStatusPulse 2.4s ease-in-out infinite;
}

@keyframes footerStatusPulse {
  0%,
  100% {
    opacity: 1;

    box-shadow: 0 0 8px rgba(115, 237, 49, 0.5);
  }

  50% {
    opacity: 0.65;

    box-shadow: 0 0 18px rgba(115, 237, 49, 0.9);
  }
}

/* ================================================================
   07. FOOTER COLUMNS
================================================================ */

.footer-column__title {
  display: block;

  margin-bottom: 25px;

  color: #56aaff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.footer-column ul {
  display: flex;
  flex-direction: column;

  gap: 15px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.footer-column li {
  margin: 0;

  padding: 0;
}

.footer-column li a {
  position: relative;

  display: inline-block;

  color: #94a9be;

  font-size: 13px;
  font-weight: 500;

  line-height: 1.4;

  text-decoration: none;

  transition:
    color 300ms ease,
    transform 300ms ease;
}

.footer-column li a::before {
  content: "";

  position: absolute;

  width: 0;
  height: 1px;

  left: 0;
  bottom: -4px;

  background: linear-gradient(90deg, #1688ff, #73ed31);

  transition: width 300ms ease;
}

.footer-column li a:hover {
  color: #edf6ff;

  transform: translateX(3px);
}

.footer-column li a:hover::before {
  width: 100%;
}

/* ================================================================
   08. CONTACT COLUMN
================================================================ */

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact__group {
  display: flex;
  flex-direction: column;

  gap: 7px;

  margin-bottom: 22px;
}

.footer-contact__group > span {
  color: #647f9a;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.footer-contact__group a {
  width: fit-content;

  color: #c2d1df;

  font-size: 13px;

  line-height: 1.5;

  text-decoration: none;

  transition: color 300ms ease;
}

.footer-contact__group a:hover {
  color: #73ed31;
}

.footer-contact__group address {
  margin: 0;

  color: #94a9be;

  font-size: 13px;
  font-style: normal;

  line-height: 1.7;
}

/* ================================================================
   09. OPTIONAL SOCIAL LINKS
================================================================ */
/* ================================================================
   FOOTER — SOCIAL NETWORKS
================================================================ */

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 9px;

  margin-top: 8px;
}

.footer-socials a {
  position: relative;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding: 0;

  border: 1px solid rgba(74, 159, 250, 0.17);

  border-radius: 50%;

  color: #7898b7;

  background: rgba(8, 120, 255, 0.04);

  text-decoration: none;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.footer-socials a::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0;

  border-radius: inherit;

  background: linear-gradient(
    145deg,
    rgba(8, 120, 255, 0.18),
    rgba(115, 237, 49, 0.09)
  );

  transition: opacity 300ms ease;
}

.footer-socials a svg {
  position: relative;

  z-index: 2;

  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials .footer-social-fill {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.35);

  background: rgba(115, 237, 49, 0.05);

  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(8, 120, 255, 0.12);
}

.footer-socials a:hover::before {
  opacity: 1;
}
/* ================================================================
   10. LARGE WORDMARK
================================================================ */

.footer-wordmark {
  position: relative;

  padding: 55px 0 60px;

  overflow: hidden;

  border-bottom: 1px solid rgba(76, 159, 248, 0.13);
}

.footer-wordmark__line {
  width: 100%;
  height: 1px;

  margin-bottom: 25px;

  background: linear-gradient(
    90deg,
    #0878ff,
    rgba(8, 120, 255, 0.15) 35%,
    rgba(115, 237, 49, 0.15) 75%,
    #73ed31
  );
}

.footer-wordmark__text {
  color: rgba(218, 236, 255, 0.07);

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(100px, 16vw, 245px);

  font-weight: 700;

  line-height: 0.8;

  letter-spacing: -0.075em;

  white-space: nowrap;

  user-select: none;

  transition:
    color 700ms ease,
    text-shadow 700ms ease;
}

.footer-wordmark:hover .footer-wordmark__text {
  color: rgba(218, 236, 255, 0.105);

  text-shadow: 0 0 60px rgba(8, 120, 255, 0.06);
}

.footer-wordmark__sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 13px;

  margin-top: 28px;

  color: #617d98;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.footer-wordmark__sub-line {
  width: 28px;
  height: 1px;

  background: rgba(91, 169, 255, 0.25);
}

/* ================================================================
   11. FOOTER BOTTOM
================================================================ */

.footer-bottom {
  display: grid;

  grid-template-columns:
    1fr
    auto
    auto;

  align-items: center;

  gap: 45px;

  min-height: 100px;
}

.footer-bottom__copyright {
  display: flex;
  align-items: center;

  gap: 15px;

  color: #718ba5;

  font-size: 11px;
}

.footer-bottom__legal {
  display: flex;
  align-items: center;

  gap: 22px;
}

.footer-bottom__legal a {
  color: #718ba5;

  font-size: 11px;

  text-decoration: none;

  transition: color 300ms ease;
}

.footer-bottom__legal a:hover {
  color: #c7d7e6;
}

/* ================================================================
   12. BACK TO TOP
================================================================ */

.footer-back-top {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 0;

  border: 0;

  color: #91a8bf;

  background: transparent;

  font-family: inherit;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;

  cursor: pointer;
}

.footer-back-top__icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(74, 160, 250, 0.2);

  border-radius: 50%;

  color: #55aaff;

  background: rgba(8, 120, 255, 0.05);

  font-size: 15px;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}

.footer-back-top:hover .footer-back-top__icon {
  color: #05101f;

  border-color: #73ed31;

  background: #73ed31;

  transform: translateY(-4px);
}

/* ================================================================
   13. REVEAL ANIMATION
================================================================ */

.footer-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   14. LAPTOP
================================================================ */

@media (max-width: 1150px) {
  .footer-main {
    grid-template-columns:
      minmax(280px, 1.2fr)
      minmax(120px, 0.5fr)
      minmax(170px, 0.7fr)
      minmax(230px, 1fr);

    gap: 35px;
  }

  .footer-hero__layout {
    gap: 60px;
  }
}

/* ================================================================
   15. TABLET
================================================================ */

@media (max-width: 950px) {
  .footer-hero {
    padding: 90px 0 70px;
  }

  .footer-hero__layout {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .footer-hero__side {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns:
      1.3fr
      0.7fr
      1fr;

    gap: 55px 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;

    max-width: 600px;
  }

  .footer-bottom {
    grid-template-columns:
      1fr
      auto;
  }

  .footer-bottom__legal {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-back-top {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .footer-bottom {
    padding: 25px 0;
  }
}

/* ================================================================
   16. MOBILE
================================================================ */

@media (max-width: 620px) {
  .footer-container {
    width: calc(100% - 28px);
  }

  /* Hero */

  .footer-hero {
    padding: 75px 0 55px;
  }

  .footer-hero__content h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .footer-hero__side p {
    font-size: 14px;
  }

  /* Main Grid */

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 45px 25px;

    padding: 55px 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  /* Wordmark */

  .footer-wordmark {
    padding: 45px 0;
  }

  .footer-wordmark__text {
    font-size: clamp(75px, 27vw, 130px);
  }

  .footer-wordmark__sub {
    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 9px;

    font-size: 8px;
  }

  /* Bottom */

  .footer-bottom {
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 30px 0;
  }

  .footer-bottom__copyright {
    flex-direction: column;
    align-items: flex-start;

    gap: 5px;
  }

  .footer-bottom__legal {
    grid-column: auto;
    grid-row: auto;

    flex-wrap: wrap;
  }

  .footer-back-top {
    grid-column: auto;
    grid-row: auto;

    justify-content: space-between;

    width: 100%;

    padding-top: 18px;

    border-top: 1px solid rgba(76, 159, 248, 0.12);
  }
}

/* ================================================================
   17. SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  .footer-container {
    width: calc(100% - 20px);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-wordmark__text {
    font-size: 24vw;
  }

  .footer-wordmark__sub-line {
    width: 15px;
  }
}

/* ================================================================
   18. REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .footer-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .footer-status-dot {
    animation: none;
  }

  .footer-project-link__icon,
  .footer-back-top__icon {
    transition: none;
  }
}
.footer-brand__logo {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 600px) {
  .footer-brand__logo {
    width: 160px;
  }
}
.service-v2-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-v2-title-row .service-v2-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.service-v2-title-row h3 {
  margin: 0;
  min-width: 0;
}

/* ================================================================
   PROJECT 04 — 16:9 WEBSITE SCREENSHOT FIX
================================================================ */

.work-card--website .work-card__media {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #020817;
}

/* Screenshot */

.work-card--website .work-card__media > img {
  position: absolute;

  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  max-width: none;

  padding: 0;
  margin: 0;

  object-fit: cover;
  object-position: center top;

  transform: none;
}

/* Hover */

.work-card--website:hover .work-card__media > img {
  transform: scale(1.015);
}

/* ================================================================
   WORK FILTER — EQUAL CARD LAYOUT FIX
================================================================ */

/* Filtered grid */
.work-grid.is-filtered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* When portfolio is filtered, remove featured span */
.work-grid.is-filtered .work-card--featured,
.work-grid.is-filtered .work-card--wide {
  grid-column: span 1;
  grid-row: auto;
}

/* All filtered cards get same structure */
.work-grid.is-filtered .work-card {
  height: auto;
}

/* Website screenshot media */
.work-grid.is-filtered .work-card--website .work-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

/* Website screenshot */
.work-grid.is-filtered .work-card--website .work-card__media > img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transform: none;
}

/* ================================================================
   PORTFOLIO FILTERED GRID FIX
   Web / Games & Apps tabs
================================================================ */

.work-grid.is-filtered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

/* ---------------------------------------------------------------
   Reset special card spans in filtered mode
---------------------------------------------------------------- */

.work-grid.is-filtered .work-card,
.work-grid.is-filtered .work-card--featured,
.work-grid.is-filtered .work-card--wide,
.work-grid.is-filtered .work-card--standard {
  grid-column: span 1;
  grid-row: auto;

  width: 100%;
  min-width: 0;
}

/* ---------------------------------------------------------------
   Equal media ratio
---------------------------------------------------------------- */

.work-grid.is-filtered .work-card__media {
  width: 100%;
  height: auto;
  min-height: 0;

  aspect-ratio: 16 / 9;
}

/* ---------------------------------------------------------------
   Normal portfolio artwork
---------------------------------------------------------------- */

.work-grid.is-filtered
  .work-card:not(.work-card--website)
  .work-card__media
  > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ---------------------------------------------------------------
   Website screenshot
---------------------------------------------------------------- */

.work-grid.is-filtered .work-card--website .work-card__media > img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  padding: 0;
  margin: 0;

  object-fit: cover;
  object-position: center top;

  transform: none;
}

/* Disable screenshot zoom */
.work-grid.is-filtered .work-card--website:hover .work-card__media > img {
  transform: none;
}

/* ---------------------------------------------------------------
   Content area
---------------------------------------------------------------- */

.work-grid.is-filtered .work-card__content {
  min-height: 210px;
}

/* ================================================================
   TABLET
================================================================ */

@media (max-width: 1100px) {
  .work-grid.is-filtered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 700px) {
  .work-grid.is-filtered {
    grid-template-columns: 1fr;
  }

  .work-grid.is-filtered .work-card__content {
    min-height: 0;
  }
}

/* ================================================================
   ================================================================
   AEVORIX PORTFOLIO SHOWCASE
   UNIQUE NAMESPACE: axpf-
   ================================================================
   ================================================================ */

/* ================================================================
   SECTION ROOT
================================================================ */

#axpf-showcase.axpf-section {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 140px 0 110px;

  overflow: hidden;

  color: #020817;

  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f4faff 100%);
}

#axpf-showcase .axpf-container {
  width: min(1380px, calc(100% - 48px));

  margin-inline: auto;
}

/* ================================================================
   DECORATIVE BACKGROUND
================================================================ */

#axpf-showcase .axpf-bg-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(8, 120, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 255, 0.03) 1px, transparent 1px);

  background-size: 80px 80px;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

#axpf-showcase .axpf-bg-glow {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

#axpf-showcase .axpf-bg-glow--blue {
  width: 680px;
  height: 680px;

  left: -470px;
  top: 10%;

  background: radial-gradient(circle, rgba(8, 120, 255, 0.09), transparent 70%);
}

#axpf-showcase .axpf-bg-glow--green {
  width: 520px;
  height: 520px;

  right: -360px;
  bottom: 4%;

  background: radial-gradient(
    circle,
    rgba(115, 237, 49, 0.08),
    transparent 70%
  );
}

/* ================================================================
   HEADER
================================================================ */

#axpf-showcase .axpf-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 60px;
}

#axpf-showcase .axpf-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: #0878ff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

#axpf-showcase .axpf-kicker__line {
  width: 30px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 20px;

  background: linear-gradient(90deg, #0878ff, #73ed31);
}

#axpf-showcase .axpf-title {
  max-width: 980px;

  margin: 0;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: clamp(50px, 5.2vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

#axpf-showcase .axpf-title span {
  display: block;

  color: transparent;

  background: linear-gradient(100deg, #0878ff 0%, #00b8ff 48%, #73ed31 100%);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

#axpf-showcase .axpf-header__side {
  padding-bottom: 5px;
}

#axpf-showcase .axpf-header__side p {
  margin: 0;

  color: #65758a;

  font-size: 14px;

  line-height: 1.8;
}

#axpf-showcase .axpf-header__cta {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #031126;

  font-size: 10px;
  font-weight: 700;

  text-decoration: none;

  transition: color 250ms ease;
}

#axpf-showcase .axpf-header__cta:hover {
  color: #0878ff;
}

#axpf-showcase .axpf-header__cta svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

#axpf-showcase .axpf-header__cta:hover svg {
  transform: translateX(5px);
}

/* ================================================================
   FILTER TOOLBAR
================================================================ */

#axpf-showcase .axpf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 28px;

  padding: 12px 14px;

  border: 1px solid rgba(8, 120, 255, 0.11);

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.82);

  box-shadow: 0 15px 45px rgba(25, 70, 120, 0.05);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#axpf-showcase .axpf-filter-group {
  display: flex;
  align-items: center;

  gap: 6px;
}

#axpf-showcase .axpf-filter-btn {
  min-height: 42px;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 0 16px;

  border: 0;
  border-radius: 10px;

  color: #718095;

  background: transparent;

  cursor: pointer;

  font-family: inherit;
  font-size: 10px;
  font-weight: 700;

  transition:
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

#axpf-showcase .axpf-filter-btn:hover {
  color: #020817;

  background: rgba(8, 120, 255, 0.05);
}

#axpf-showcase .axpf-filter-btn.is-active {
  color: #ffffff;

  background: linear-gradient(135deg, #0878ff, #005ee8);

  box-shadow: 0 10px 25px rgba(8, 120, 255, 0.2);
}

#axpf-showcase .axpf-filter-btn__number {
  font-size: 7px;

  opacity: 0.65;

  letter-spacing: 0.1em;
}

#axpf-showcase .axpf-toolbar__status {
  display: flex;
  align-items: center;

  gap: 9px;

  padding-right: 8px;

  color: #8998a9;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

#axpf-showcase .axpf-toolbar__status strong {
  color: #0878ff;
}

#axpf-showcase .axpf-status-dot {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #73ed31;

  box-shadow: 0 0 10px rgba(115, 237, 49, 0.7);

  animation: axpfStatusPulse 2.2s ease-in-out infinite;
}

@keyframes axpfStatusPulse {
  50% {
    box-shadow: 0 0 18px rgba(115, 237, 49, 0.95);
  }
}

/* ================================================================
   PORTFOLIO GRID
================================================================ */

#axpf-showcase .axpf-grid {
  display: grid;

  grid-template-columns: repeat(12, minmax(0, 1fr));

  gap: 22px;
}

/* Default standard card */

#axpf-showcase .axpf-card {
  grid-column: span 4;

  min-width: 0;
}

/* Featured card */

#axpf-showcase .axpf-card--featured {
  grid-column: span 8;
}

/* Large website card */

#axpf-showcase .axpf-card--wide {
  grid-column: span 8;
}

/* ================================================================
   FILTERED GRID RULES
================================================================ */

/*
   Games & Apps:
   6 visible projects → 3 cards per row
*/

#axpf-showcase .axpf-grid.is-filtered .axpf-card:not(.is-hidden) {
  grid-column: span 4;
}

/*
   Web:
   exactly 2 visible cards → 50 / 50 layout
*/

#axpf-showcase .axpf-grid[data-axpf-visible="2"] .axpf-card:not(.is-hidden) {
  grid-column: span 6;
}

/* ================================================================
   CARD BASE
================================================================ */

#axpf-showcase .axpf-card {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(3, 17, 38, 0.08);

  border-radius: 22px;

  background: #ffffff;

  box-shadow: 0 18px 50px rgba(20, 60, 100, 0.07);

  opacity: 1;

  transform: translateY(0) scale(1);

  transition:
    opacity 350ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms ease,
    border-color 350ms ease;
}

#axpf-showcase .axpf-card:hover {
  transform: translateY(-7px);

  border-color: rgba(8, 120, 255, 0.24);

  box-shadow: 0 28px 70px rgba(20, 70, 125, 0.13);
}

/* ================================================================
   FILTER ANIMATION STATES
================================================================ */

#axpf-showcase .axpf-card.is-filter-leaving {
  opacity: 0;

  transform: translateY(12px) scale(0.965);

  pointer-events: none;
}

#axpf-showcase .axpf-card.is-hidden {
  display: none;
}

/* ================================================================
   IMAGE AREA
================================================================ */

#axpf-showcase .axpf-card__media {
  position: relative;

  width: 100%;
  height: 330px;

  overflow: hidden;

  background: linear-gradient(145deg, #e9f3fc, #dcebf8);
}

/* Large image areas */

#axpf-showcase .axpf-card--featured .axpf-card__media,
#axpf-showcase .axpf-card--wide .axpf-card__media {
  height: 440px;
}

/* Actual WebP image */

#axpf-showcase .axpf-card__media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1);

  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms ease;
}

#axpf-showcase .axpf-card:hover .axpf-card__media img {
  transform: scale(1.045);
}

/* ================================================================
   IMAGE OVERLAY
================================================================ */

#axpf-showcase .axpf-card__shade {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, 0.3) 0%,
    transparent 34%,
    transparent 63%,
    rgba(2, 8, 23, 0.35) 100%
  );
}

/* ================================================================
   IMAGE META TAGS
================================================================ */

#axpf-showcase .axpf-card__meta {
  position: absolute;

  z-index: 3;

  top: 18px;
  left: 18px;
  right: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

#axpf-showcase .axpf-card__meta span {
  min-height: 27px;

  display: inline-flex;
  align-items: center;

  padding: 0 10px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 100px;

  color: #ffffff;

  background: rgba(2, 8, 23, 0.3);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

/* ================================================================
   PROJECT OPEN BUTTON
================================================================ */

#axpf-showcase .axpf-card__open {
  position: absolute;

  z-index: 4;

  right: 18px;
  bottom: 18px;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  color: #031126;

  background: #ffffff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);

  cursor: pointer;

  opacity: 0;

  transform: translateY(10px) scale(0.9);

  transition:
    opacity 350ms ease,
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms ease,
    background 300ms ease;
}

#axpf-showcase .axpf-card:hover .axpf-card__open,
#axpf-showcase .axpf-card:focus-within .axpf-card__open {
  opacity: 1;

  transform: translateY(0) scale(1);
}

#axpf-showcase .axpf-card__open:hover {
  color: #ffffff;

  background: #0878ff;
}

#axpf-showcase .axpf-card__open svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================================================================
   CARD BODY
================================================================ */

#axpf-showcase .axpf-card__body {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(160px, 0.65fr);

  align-items: end;

  gap: 25px;

  padding: 24px 24px 26px;
}

/* Standard cards use stacked content */

#axpf-showcase .axpf-card--standard .axpf-card__body {
  grid-template-columns: 1fr;

  gap: 13px;
}

#axpf-showcase .axpf-card__eyebrow {
  display: block;

  margin-bottom: 8px;

  color: #0878ff;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

#axpf-showcase .axpf-card__body h3 {
  margin: 0;

  color: #020817;

  font-family: var(--font-display, "Space Grotesk", "Sora", sans-serif);

  font-size: 28px;
  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -0.04em;
}

#axpf-showcase .axpf-card--featured .axpf-card__body h3,
#axpf-showcase .axpf-card--wide .axpf-card__body h3 {
  font-size: 34px;
}

#axpf-showcase .axpf-card__body p {
  margin: 0;

  color: #718095;

  font-size: 10px;

  line-height: 1.7;
}

/* ================================================================
   FILTERED CARD BODY NORMALIZATION
================================================================ */

#axpf-showcase .axpf-grid.is-filtered .axpf-card__body {
  grid-template-columns: 1fr;

  gap: 13px;
}

#axpf-showcase .axpf-grid.is-filtered .axpf-card__body h3 {
  font-size: 28px;
}

/* ================================================================
   PORTFOLIO FOOTER
================================================================ */

#axpf-showcase .axpf-footer {
  margin-top: 70px;
}

#axpf-showcase .axpf-footer__line {
  width: 100%;
  height: 1px;

  margin-bottom: 30px;

  background: linear-gradient(
    90deg,
    rgba(8, 120, 255, 0.25),
    rgba(0, 184, 255, 0.1),
    rgba(115, 237, 49, 0.25)
  );
}

#axpf-showcase .axpf-footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

#axpf-showcase .axpf-footer__copy span {
  display: block;

  margin-bottom: 8px;

  color: #0878ff;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

#axpf-showcase .axpf-footer__copy p {
  max-width: 650px;

  margin: 0;

  color: #4f6177;

  font-size: 16px;

  line-height: 1.6;
}

#axpf-showcase .axpf-footer__button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;

  padding: 0 20px;

  border-radius: 12px;

  color: #ffffff;

  background: linear-gradient(135deg, #0878ff, #005ee8);

  box-shadow: 0 15px 35px rgba(8, 120, 255, 0.2);

  font-size: 10px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease;
}

#axpf-showcase .axpf-footer__button:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 45px rgba(8, 120, 255, 0.28);
}

#axpf-showcase .axpf-footer__button svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 300ms ease;
}

#axpf-showcase .axpf-footer__button:hover svg {
  transform: translateX(4px);
}

/* ================================================================
   SCROLL REVEAL
================================================================ */

#axpf-showcase .axpf-reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

#axpf-showcase .axpf-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ================================================================
   LAPTOP
================================================================ */

@media (max-width: 1100px) {
  #axpf-showcase.axpf-section {
    padding: 115px 0 90px;
  }

  #axpf-showcase .axpf-card__media {
    height: 290px;
  }

  #axpf-showcase .axpf-card--featured .axpf-card__media,
  #axpf-showcase .axpf-card--wide .axpf-card__media {
    height: 390px;
  }
}

/* ================================================================
   TABLET
================================================================ */

@media (max-width: 850px) {
  #axpf-showcase .axpf-container {
    width: calc(100% - 36px);
  }

  #axpf-showcase .axpf-header {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 48px;
  }

  #axpf-showcase .axpf-header__side {
    max-width: 600px;
  }

  /* Two-column tablet grid */

  #axpf-showcase .axpf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #axpf-showcase .axpf-card,
  #axpf-showcase .axpf-card--featured,
  #axpf-showcase .axpf-card--wide,
  #axpf-showcase .axpf-grid.is-filtered .axpf-card:not(.is-hidden),
  #axpf-showcase .axpf-grid[data-axpf-visible="2"] .axpf-card:not(.is-hidden) {
    grid-column: span 1;
  }

  #axpf-showcase .axpf-card__media,
  #axpf-showcase .axpf-card--featured .axpf-card__media,
  #axpf-showcase .axpf-card--wide .axpf-card__media {
    height: 320px;
  }

  #axpf-showcase .axpf-card__body,
  #axpf-showcase .axpf-card--featured .axpf-card__body,
  #axpf-showcase .axpf-card--wide .axpf-card__body {
    grid-template-columns: 1fr;

    gap: 13px;
  }

  #axpf-showcase .axpf-card--featured .axpf-card__body h3,
  #axpf-showcase .axpf-card--wide .axpf-card__body h3 {
    font-size: 28px;
  }
}

/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 620px) {
  #axpf-showcase.axpf-section {
    padding: 85px 0 60px;
  }

  #axpf-showcase .axpf-container {
    width: calc(100% - 28px);
  }

  #axpf-showcase .axpf-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  #axpf-showcase .axpf-header__side p {
    font-size: 13px;
  }

  /* ------------------------------------------------------------
       Mobile Toolbar
    ------------------------------------------------------------- */

  #axpf-showcase .axpf-toolbar {
    align-items: flex-start;
    flex-direction: column;

    gap: 13px;

    padding: 10px;

    border-radius: 14px;
  }

  #axpf-showcase .axpf-filter-group {
    width: 100%;

    overflow-x: auto;

    scrollbar-width: none;
  }

  #axpf-showcase .axpf-filter-group::-webkit-scrollbar {
    display: none;
  }

  #axpf-showcase .axpf-filter-btn {
    flex-shrink: 0;

    min-height: 40px;

    padding: 0 13px;
  }

  #axpf-showcase .axpf-toolbar__status {
    padding: 0 7px 4px;
  }

  /* ------------------------------------------------------------
       Single-column Mobile Grid
    ------------------------------------------------------------- */

  #axpf-showcase .axpf-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  #axpf-showcase .axpf-card,
  #axpf-showcase .axpf-card--featured,
  #axpf-showcase .axpf-card--wide,
  #axpf-showcase .axpf-grid.is-filtered .axpf-card:not(.is-hidden),
  #axpf-showcase .axpf-grid[data-axpf-visible="2"] .axpf-card:not(.is-hidden) {
    grid-column: 1;
  }

  #axpf-showcase .axpf-card {
    border-radius: 18px;
  }

  #axpf-showcase .axpf-card__media,
  #axpf-showcase .axpf-card--featured .axpf-card__media,
  #axpf-showcase .axpf-card--wide .axpf-card__media {
    height: 300px;
  }

  #axpf-showcase .axpf-card__body {
    padding: 20px;
  }

  #axpf-showcase .axpf-card__body h3,
  #axpf-showcase .axpf-card--featured .axpf-card__body h3,
  #axpf-showcase .axpf-card--wide .axpf-card__body h3 {
    font-size: 25px;
  }

  /* Action always visible on touch */

  #axpf-showcase .axpf-card__open {
    width: 44px;
    height: 44px;

    opacity: 1;

    transform: none;
  }

  /* Footer */

  #axpf-showcase .axpf-footer {
    margin-top: 50px;
  }

  #axpf-showcase .axpf-footer__content {
    align-items: flex-start;
    flex-direction: column;

    gap: 24px;
  }

  #axpf-showcase .axpf-footer__copy p {
    font-size: 14px;
  }
}

/* ================================================================
   VERY SMALL MOBILE
================================================================ */

@media (max-width: 390px) {
  #axpf-showcase .axpf-container {
    width: calc(100% - 20px);
  }

  #axpf-showcase .axpf-card__media,
  #axpf-showcase .axpf-card--featured .axpf-card__media,
  #axpf-showcase .axpf-card--wide .axpf-card__media {
    height: 260px;
  }

  #axpf-showcase .axpf-card__meta {
    top: 13px;
    left: 13px;
    right: 13px;
  }

  #axpf-showcase .axpf-card__open {
    right: 13px;
    bottom: 13px;
  }
}

/* ================================================================
   REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  #axpf-showcase .axpf-reveal,
  #axpf-showcase .axpf-card {
    opacity: 1;

    transform: none;

    transition: none;
  }

  #axpf-showcase .axpf-card__media img,
  #axpf-showcase .axpf-card__open,
  #axpf-showcase .axpf-footer__button,
  #axpf-showcase .axpf-status-dot {
    animation: none;

    transition: none;
  }
}

/* =========================================================
   PORTFOLIO VIDEO MODAL
========================================================= */

.axpf-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.axpf-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* BACKDROP */

.axpf-video-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(2, 10, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* DIALOG */

.axpf-video-modal__dialog {
  position: relative;
  z-index: 2;

  width: min(1100px, 100%);

  background: #031126;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;

  padding: 12px;

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);

  transform: scale(0.94) translateY(20px);

  transition: transform 0.35s ease;
}

.axpf-video-modal.is-open .axpf-video-modal__dialog {
  transform: scale(1) translateY(0);
}

/* VIDEO */

.axpf-video-modal__frame {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: 16px;

  background: #000;
}

.axpf-video-modal__frame iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

/* CLOSE BUTTON */

.axpf-video-modal__close {
  position: absolute;

  top: -18px;
  right: -18px;

  z-index: 5;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  background: #ffffff;
  color: #031126;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.axpf-video-modal__close:hover {
  transform: rotate(90deg);
  background: #7df33b;
}

/* MOBILE */

@media (max-width: 768px) {
  .axpf-video-modal {
    padding: 14px;
  }

  .axpf-video-modal__dialog {
    padding: 6px;
    border-radius: 16px;
  }

  .axpf-video-modal__frame {
    border-radius: 11px;
  }

  .axpf-video-modal__close {
    top: -15px;
    right: -5px;

    width: 42px;
    height: 42px;

    font-size: 24px;
  }
}

/* ================================================================
   GLOBAL SECTION SPACING FIX
================================================================ */

/* Desktop: 70px → 60px */
.services-v2,
.build-process,
.tech-ecosystem,
.axpf-section,
.about-aevorix,
.why-aevorix,
.contact-aevorix {
  padding-top: 60px;
}

@media (max-width: 1100px) {
  .services-v2,
  .build-process,
  .tech-ecosystem,
  .axpf-section,
  .about-aevorix,
  .why-aevorix,
  .contact-aevorix {
    padding-top: 55px;
  }
}

@media (max-width: 820px) {
  .services-v2,
  .build-process,
  .tech-ecosystem,
  .axpf-section,
  .about-aevorix,
  .why-aevorix,
  .contact-aevorix {
    padding-top: 50px;
  }
}

@media (max-width: 620px) {
  .services-v2,
  .build-process,
  .tech-ecosystem,
  .axpf-section,
  .about-aevorix,
  .why-aevorix,
  .contact-aevorix {
    padding-top: 45px;
  }
}
/* WORK SECTION TOP SPACE FIX */
#axpf-showcase.axpf-section {
  padding-top: 35px;
  scroll-margin-top: 92px;
}

@media (max-width: 1100px) {
  #axpf-showcase.axpf-section {
    padding-top: 30px;
  }
}

@media (max-width: 620px) {
  #axpf-showcase.axpf-section {
    padding-top: 25px;
  }
}

.services-v2,
.build-process,
.tech-ecosystem,
#axpf-showcase,
.about-aevorix,
.why-aevorix,
.contact-aevorix {
  scroll-margin-top: 92px;
}
/* =========================================================
   OFFICE LOCATION ICON — COMPLETE CSS
========================================================= */

.contact-address {
  position: relative;
}

/* LOCATION ICON BUTTON */

.contact-address__action {
  position: absolute;

  top: 50%;
  right: 32px;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin: 0;
  padding: 0;

  transform: translateY(-50%);

  border: 1px solid rgba(36, 168, 255, 0.38);
  border-radius: 15px;

  background: rgba(0, 132, 255, 0.035);

  color: #20a8ff;

  text-decoration: none;
  cursor: pointer;

  z-index: 5;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

/* LOCATION SVG */

.contact-address__action svg {
  width: 21px;
  height: 21px;

  display: block;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;

  transition:
    transform 300ms ease,
    filter 300ms ease;
}

/* =========================================================
   HOVER — GREEN EFFECT
========================================================= */

.contact-address__action:hover {
  color: #66ff35;

  border-color: rgba(102, 255, 53, 0.65);

  background: rgba(102, 255, 53, 0.06);

  box-shadow:
    0 0 0 1px rgba(102, 255, 53, 0.04),
    0 0 22px rgba(102, 255, 53, 0.1);

  transform: translateY(-50%) translateY(-2px);
}

/* ICON HOVER */

.contact-address__action:hover svg {
  transform: scale(1.08);

  filter: drop-shadow(0 0 5px rgba(102, 255, 53, 0.35));
}

/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.contact-address__action:focus-visible {
  outline: 2px solid #66ff35;
  outline-offset: 4px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 820px) {
  .contact-address__action {
    right: 24px;

    width: 46px;
    height: 46px;

    border-radius: 14px;
  }

  .contact-address__action svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {
  .contact-address {
    padding-right: 78px;
  }

  .contact-address__action {
    right: 18px;

    width: 44px;
    height: 44px;

    border-radius: 13px;
  }

  .contact-address__action svg {
    width: 19px;
    height: 19px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .contact-address__action,
  .contact-address__action svg {
    transition: none;
  }

  .contact-address__action:hover {
    transform: translateY(-50%);
  }

  .contact-address__action:hover svg {
    transform: none;
  }
}

/* =========================================================
   EMAIL CTA ICON — CONTACT BOTTOM + FOOTER HERO
========================================================= */

/* icon boxes */
.contact-bottom__cta-icon,
.footer-project-link__icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(36, 168, 255, 0.38);
  border-radius: 15px;

  background: rgba(0, 132, 255, 0.04);
  color: #20a8ff;

  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

/* SVG */
.contact-bottom__cta-icon svg,
.footer-project-link__icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 300ms ease;
}

/* CONTACT BOTTOM HOVER */
.contact-bottom__cta:hover .contact-bottom__cta-icon {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.6);

  background: rgba(115, 237, 49, 0.06);

  box-shadow:
    0 0 0 1px rgba(115, 237, 49, 0.04),
    0 0 22px rgba(115, 237, 49, 0.14);

  transform: translateY(-2px);
}

.contact-bottom__cta:hover .contact-bottom__cta-icon svg {
  transform: scale(1.08);
}

/* FOOTER START PROJECT HOVER */
.footer-project-link:hover .footer-project-link__icon {
  color: #73ed31;

  border-color: rgba(115, 237, 49, 0.6);

  background: rgba(115, 237, 49, 0.06);

  box-shadow:
    0 0 0 1px rgba(115, 237, 49, 0.04),
    0 0 22px rgba(115, 237, 49, 0.14);

  transform: translateY(-2px);
}

.footer-project-link:hover .footer-project-link__icon svg {
  transform: scale(1.08);
}
/* HERO — reduce top empty space */
@media (min-width: 1025px) {
  .hero {
    min-height: 900px;
  }

  .hero-container {
    align-items: start;
    padding-top: 20px;
    padding-bottom: 32px;
  }
}

.footer-main {
  padding-bottom: 25px;
}

.footer-wordmark {
  padding-top: 15px;
}

/* Only Games & Apps filtered layout */

#axpf-showcase .axpf-grid.is-filtered .axpf-card--bottom-left:not(.is-hidden) {
  grid-column: 3 / span 4;
}

#axpf-showcase .axpf-grid.is-filtered .axpf-card--bottom-right:not(.is-hidden) {
  grid-column: 7 / span 4;
}
