*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --fluor: #bfff00;
  --fluor-dim: rgba(191, 255, 0, 0.1);
  --black: #080808;
  --mid: #111;
  --card: #141414;
  --border: rgba(255, 255, 255, 0.07);
  --white: #ffffff;
  --grey: #666;
  --light-grey: #999;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(191, 255, 0, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(191, 255, 0, 0.7));
  }
}
.au {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.au1 {
  animation-delay: 0.08s;
}
.au2 {
  animation-delay: 0.2s;
}
.au3 {
  animation-delay: 0.34s;
}
.au4 {
  animation-delay: 0.48s;
}
.au5 {
  animation-delay: 0.62s;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.logo-icon {
  animation: glow 4s ease-in-out infinite;
}
.logo-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-name-wrap {
  position: relative;
  display: inline-block;
}
.logo-name-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--fluor) 0%, transparent 100%);
  opacity: 0.4;
}
.logo-name {
  font-family: "Source Serif 4", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
}
.logo-name .v {
  color: var(--fluor);
}
.logo-sub {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  font-family: "DM Sans", sans-serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: white;
}
.nav-links .footer-legal-static {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-grey);
  cursor: default;
}
.nav-cta {
  background: var(--fluor) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  border-radius: 8px;
}
.nav-cta:hover {
  opacity: 0.85;
}
.nav-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 18px;
  border-radius: 8px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.nav-secondary:hover {
  border-color: var(--fluor);
  color: var(--fluor) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 255, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 255, 0, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 25%, transparent 70%);
}
.hero-A {
  position: absolute;
  top: -100px;
  right: -40px;
  font-family: "Source Serif 4", serif;
  font-weight: 900;
  font-size: 560px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.012);
  pointer-events: none;
  user-select: none;
}
.hero-orb {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(191, 255, 0, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(20px, 10vw, 120px);
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fluor);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-tag::before {
  content: "●";
  font-size: 6px;
}
.hero-headline {
  font-family: "Source Serif 4", serif;
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-headline .f {
  color: var(--fluor);
}

/* ── CUBO 3D ── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-shift {
  perspective: 1400px;
  transform: translateX(-32px);
  position: relative;
  display: inline-block;
}
.hero-cube-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  background: radial-gradient(circle, rgba(191, 255, 0, 0.35), transparent 60%);
  filter: blur(40px);
  animation: cube-glow 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  transform-origin: center center;
}
.hero-cube-wrap {
  position: relative;
  transform-style: preserve-3d;
}
.hero-cube {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  transform-style: preserve-3d;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.hero-cube.is-grabbing {
  cursor: grabbing;
}
.cube-face {
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(191, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 60px rgba(191, 255, 0, 0.04);
}
.cube-face svg {
  width: 130px;
  height: auto;
}
.cube-face polygon {
  fill: var(--fluor);
}
.cube-face polygon:nth-child(2) {
  opacity: 0.75;
}
.cube-face .word {
  font-family: "Source Serif 4", serif;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.75);
}
.cube-face .word .v {
  color: var(--fluor);
}
.cube-front {
  transform: translateZ(120px);
}
.cube-back {
  transform: rotateY(180deg) translateZ(120px);
}
.cube-right {
  transform: rotateY(90deg) translateZ(120px);
}
.cube-left {
  transform: rotateY(-90deg) translateZ(120px);
}
.cube-top {
  transform: rotateX(90deg) translateZ(120px);
}
.cube-bottom {
  transform: rotateX(-90deg) translateZ(120px);
}
@keyframes cube-spin {
  0% {
    transform: rotateY(0deg) rotateX(-12deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(-12deg);
  }
}
@keyframes cube-glow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* ── LANG TOGGLE ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}
.lang-toggle .lang-opt {
  background: transparent;
  border: none;
  color: var(--light-grey);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 4px;
  transition: color 0.2s;
  font-weight: 600;
  text-decoration: none;
}
.lang-toggle .lang-opt:hover {
  color: white;
}
.lang-toggle .lang-opt.active {
  color: var(--fluor);
}
.lang-toggle .lang-sep {
  color: var(--grey);
  font-size: 10px;
}
.underlined {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.underlined::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -5px;
  right: -6px;
  height: 16px;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M0,7 C15,4 30,9 50,6 C70,3 90,8 115,5 C140,2 160,8 185,5 C210,2 235,8 260,5 C278,3 292,7 300,6 L300,14 C285,17 265,12 245,15 C220,18 195,12 170,15 C145,18 120,12 95,15 C70,18 45,12 25,15 C12,17 4,14 0,14 Z' fill='%23BFFF00' opacity='0.28'/%3E%3Cpath d='M2,9 C20,6 42,12 65,9 C90,6 110,12 138,9 C164,6 188,12 215,9 C240,6 268,11 298,9' stroke='%23BFFF00' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--light-grey);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 40px;
}
.hero-sub strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  text-decoration: none;
  display: inline-block;
  transition:
    opacity 0.2s,
    transform 0.2s;
  border-radius: 8px;
}
.btn-p {
  background: var(--fluor);
  color: var(--black);
}
.btn-p:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-g {
  color: white;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  text-decoration: none;
}
.btn-g:hover {
  gap: 14px;
}
.btn-g::after {
  content: "→";
  color: var(--fluor);
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 32px;
  writing-mode: vertical-lr;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--grey), transparent);
}

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

/* ── MODULES DIAGRAM ── */
.modules-diagram {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  height: 100%;
  justify-content: space-between;
}
.module {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.module:hover {
  border-color: rgba(191, 255, 0, 0.25);
  transform: translateY(-2px);
}
.module-core {
  background: linear-gradient(180deg, rgba(191, 255, 0, 0.07), transparent 70%);
  border-color: rgba(191, 255, 0, 0.3);
  padding: 26px 24px;
  flex: 1;
}
.module-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  background: var(--fluor-dim);
  border: 1px solid rgba(191, 255, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.module-icon svg {
  width: 22px;
  height: 22px;
}
.module-core .module-icon {
  width: 54px;
  height: 54px;
}
.module-core .module-icon svg {
  width: 26px;
  height: 26px;
}
.module-tag {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fluor);
  margin-bottom: 6px;
}
.module h4 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.module-core h4 {
  font-size: 20px;
}
.module p {
  font-size: 12.5px;
  color: var(--light-grey);
  line-height: 1.6;
  font-weight: 300;
  max-width: 340px;
  margin: 0 auto;
}
.modules-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modules-connector {
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modules-connector::before {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(rgba(191, 255, 0, 0.5), rgba(191, 255, 0, 0.15));
}
.modules-connector::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(191, 255, 0, 0.4);
}
.core-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fluor);
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--fluor);
  border-radius: 50%;
  animation: dot-pulse 1.6s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}
.mini-sparkline {
  width: 100%;
  max-width: 180px;
  height: 28px;
  display: block;
  margin: 12px auto 0;
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 36px 44px;
  border-right: 1px solid var(--border);
}
.stat:first-child {
  padding-left: 64px;
}
.stat:last-child {
  border-right: none;
}
.stat-n {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-n span {
  color: var(--fluor);
}
.stat-l {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 1.5;
}

/* ── SECTION ── */
section {
  padding: 112px 64px;
}
.stag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fluor);
  margin-bottom: 18px;
}
.sh {
  font-family: "Source Serif 4", serif;
  font-weight: 900;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.sh .f {
  color: var(--fluor);
}
.sh .underlined::after {
  height: 16px;
  opacity: 1;
}
.sb {
  font-size: 15px;
  line-height: 1.9;
  color: var(--light-grey);
  font-weight: 300;
  max-width: 560px;
}

/* ── 3 A's ── */
.aas {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.aas-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.aas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.a-card {
  background: var(--card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.a-card:hover {
  background: #1b1b1b;
}
.a-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fluor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.a-card:hover::before {
  transform: scaleX(1);
}
.a-letter {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 80px;
  color: var(--fluor);
  line-height: 1;
  margin-bottom: 4px;
}
.a-bg {
  position: absolute;
  top: -24px;
  right: -8px;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 160px;
  color: rgba(191, 255, 0, 0.04);
  pointer-events: none;
}
.a-word {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 18px;
}
.a-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--light-grey);
  font-weight: 300;
}

/* ── PRODUCT ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 48px;
}
.feat-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.feat-tab {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s;
}
.feat-tab:hover {
  border-color: rgba(191, 255, 0, 0.3);
  color: white;
}
.feat-tab.active {
  background: var(--fluor);
  color: var(--black);
  border-color: var(--fluor);
}
.feat-panel {
  display: none;
  flex-direction: column;
  gap: 0;
}
.feat-panel.active {
  display: flex;
}
.feat-panels-stack {
  display: grid;
  grid-template-columns: 1fr;
}
.feat-panels-stack > .feat-panel {
  grid-area: 1 / 1;
  display: flex;
}
.feat-panels-stack > .feat-panel:not(.active) {
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.feat-panels-stack > .feat-panel.active {
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feat {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
}
.feat:first-child {
  border-top: 1px solid var(--border);
}
.feat-ico {
  width: 32px;
  height: 32px;
  background: var(--fluor-dim);
  border: 1px solid rgba(191, 255, 0, 0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-ico svg {
  width: 14px;
  height: 14px;
}
.feat h4 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 5px;
}
.feat p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--light-grey);
  font-weight: 300;
}
.feat-highlight {
  background: rgba(191, 255, 0, 0.04);
  border: 1px solid rgba(191, 255, 0, 0.15);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.feat-highlight svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.feat-highlight p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.feat-highlight strong {
  color: var(--fluor);
  font-weight: 600;
}

/* ── ROLES ── */
.roles {
  background: var(--mid);
  border-top: 1px solid var(--border);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.role-card {
  background: var(--card);
  padding: 44px 36px;
  transition: background 0.3s;
  cursor: default;
}
.role-card:hover {
  background: #1a1a1a;
}
.role-icon {
  width: 48px;
  height: 48px;
  background: var(--fluor-dim);
  border: 1px solid rgba(191, 255, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.role-icon svg {
  width: 24px;
  height: 24px;
}
.role-tag {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fluor);
  margin-bottom: 10px;
}
.role-card h3 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.role-card ul {
  list-style: none;
}
.role-card ul li {
  font-size: 13px;
  color: var(--light-grey);
  font-weight: 300;
  line-height: 1.9;
  padding-left: 14px;
  position: relative;
}
.role-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--fluor);
  font-size: 10px;
}

/* ── CLIENTS ── */
.clients-section {
  background: var(--mid);
  border-top: 1px solid var(--border);
  text-align: center;
}
.clients-section .stag,
.clients-section .sh {
  display: block;
  text-align: center;
}
.clients-section .sh {
  margin-left: auto;
  margin-right: auto;
}
.client-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 8px;
  list-style: none;
}
.client-logo-item {
  margin: 0;
  padding: 0;
}
.client-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.client-logo-wrap:hover {
  transform: translateY(-2px);
}
.client-logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(560px, 94vw);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition:
    filter 0.4s ease,
    opacity 0.4s ease;
}
.client-logo-wrap:hover .client-logo-img,
.client-logo-link:hover .client-logo-img {
  filter: grayscale(0);
  opacity: 1;
}
.client-logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.client-logo-link:focus-visible {
  outline: 2px solid rgba(191, 255, 0, 0.45);
  outline-offset: 6px;
  border-radius: 2px;
}

/* ── STEPS ── */
.steps-section {
  background: var(--black);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.step {
  background: var(--card);
  padding: 40px 32px;
}
.step-n {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fluor);
  letter-spacing: 1px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-n::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(191, 255, 0, 0.18);
}
.step h3 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.step p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--light-grey);
  font-weight: 300;
}

/* ── CTA ── */
.cta {
  padding: 140px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    rgba(191, 255, 0, 0.055) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta .sh {
  font-size: clamp(38px, 4.8vw, 68px);
  margin-bottom: 22px;
}
.cta .sb {
  margin: 0 auto 44px;
}
.email-wrap {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}
.email-wrap input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  padding: 15px 18px;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 8px 0 0 8px;
}
.email-wrap input:focus {
  border-color: rgba(191, 255, 0, 0.38);
}
.email-wrap input::placeholder {
  color: var(--grey);
}
.email-wrap button {
  background: var(--fluor);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  border-radius: 0 8px 8px 0;
}
.email-wrap button:hover {
  opacity: 0.88;
}

/* ── CONTACT HERO ── */
.page-h {
  font-family: "Source Serif 4", serif;
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 580px;
}
.page-h .f {
  color: var(--fluor);
}
.page-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--light-grey);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 0;
}
.nowrap-unit {
  white-space: nowrap;
}

.contact-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 168px 64px 40px;
  overflow: hidden;
  box-sizing: border-box;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 255, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 255, 0, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 25%, transparent 70%);
  pointer-events: none;
}
.contact-hero-A {
  position: absolute;
  top: -100px;
  right: -40px;
  font-family: "Source Serif 4", serif;
  font-weight: 900;
  font-size: 560px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.012);
  pointer-events: none;
  user-select: none;
}
.contact-hero-orb {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(191, 255, 0, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.info-tag {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fluor);
  margin-bottom: 10px;
}
.contact-mail-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 440px;
}
.contact-mail-link {
  font-family: "DM Mono", monospace;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--fluor);
  text-decoration: none;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.contact-mail-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.92;
}

/* Contact form (static markup + CF7 wrapper) */
.contact-form,
.contact-form .wpcf7-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .wpcf7 {
  margin: 0;
}
.contact-form .wpcf7-form {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label,
.contact-form label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}
.field input,
.field textarea,
.field select,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea,
.contact-form select {
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(191, 255, 0, 0.5);
}
.field textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.submit,
.contact-form .wpcf7-submit {
  background: var(--fluor);
  color: var(--black);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 15px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 6px;
  text-transform: uppercase;
  width: auto;
}
.submit:hover,
.contact-form .wpcf7-submit:hover {
  opacity: 0.88;
}
.submit:disabled,
.contact-form .wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: wait;
}
.form-msg {
  font-size: 13px;
  line-height: 1.6;
  padding: 14px 16px;
  border-radius: 8px;
  margin-top: 4px;
  display: none;
}
.form-msg.show {
  display: block;
  animation: fadeUp 0.4s ease both;
}
.form-msg.ok {
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.3);
  color: var(--fluor);
}
.form-msg.err {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
}
.contact-form .wpcf7-response-output {
  font-size: 13px;
  line-height: 1.6;
  padding: 14px 16px;
  border-radius: 8px;
  margin: 8px 0 0;
  border-width: 1px;
}
.contact-form .wpcf7 form-sent .wpcf7-response-output {
  background: rgba(191, 255, 0, 0.08);
  border-color: rgba(191, 255, 0, 0.3);
  color: var(--fluor);
}
.contact-form .wpcf7 form-invalid .wpcf7-response-output,
.contact-form .wpcf7 form-failed .wpcf7-response-output,
.contact-form .wpcf7.aborted .wpcf7-response-output {
  background: rgba(255, 80, 80, 0.08);
  border-color: rgba(255, 80, 80, 0.3);
  color: #ff8080;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ff8080;
  margin-top: 4px;
}
.contact-form .wpcf7-spinner {
  margin-left: 8px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 72px 64px 28px;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid .nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-brand p {
  font-size: 12.5px;
  color: var(--light-grey);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
  font-weight: 300;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 10.5px;
  color: var(--grey);
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .legal-info {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 22px 28px;
  display: none;
  align-items: center;
  gap: 28px;
  z-index: 1000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: fadeUp 0.5s ease both;
}
#cookie-banner.show {
  display: flex;
}
.cookie-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.65;
  color: #4a4a4a;
  font-weight: 400;
}
.cookie-text strong {
  color: #0a0a0a;
  font-weight: 700;
}
.cookie-text a {
  color: #5a7400;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  padding: 12px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #0a0a0a;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s;
}
.cookie-btn:hover {
  border-color: rgba(0, 0, 0, 0.3);
}
.cookie-btn.primary {
  background: var(--fluor);
  color: #0a0a0a;
  border-color: var(--fluor);
  font-weight: 700;
}
.cookie-btn.primary:hover {
  opacity: 0.88;
}

/* ── NAV TOGGLE (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 18px 32px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 60px;
    gap: 56px;
    text-align: left;
  }
  .hero-visual {
    justify-content: center;
  }
  .hero-visual-shift {
    transform: none;
  }
  .hero-headline {
    max-width: none;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .aas-head {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .aas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-grid .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    padding: 150px 24px 32px;
    justify-content: flex-start;
    min-height: auto;
  }
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-hero-A {
    font-size: min(72vw, 380px);
    top: -60px;
    right: -20px;
  }
  .contact-hero-orb {
    width: 420px;
    height: 420px;
    right: 0;
  }
}

@media (max-width: 720px) {
  nav {
    padding: 14px 20px;
  }
  .nav-toggle {
    display: flex;
  }
  #nav .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  #nav .nav-links.open {
    display: flex;
  }
  #nav .nav-links a {
    font-size: 14px;
    padding: 10px 0;
    width: 100%;
  }
  #nav .nav-links .nav-secondary,
  #nav .nav-links .nav-cta {
    width: auto;
    margin-top: 8px;
  }
  .logo-name {
    font-size: 22px;
  }
  .logo-sub {
    font-size: 7px;
  }
  .logo-sep {
    height: 26px;
  }

  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-headline {
    font-size: clamp(34px, 9vw, 52px) !important;
    letter-spacing: -1.5px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }
  .hero-actions .btn,
  .hero-actions .btn-g {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .scroll-cue {
    display: none;
  }
  .hero-cube {
    width: 180px;
    height: 180px;
  }
  .cube-face {
    width: 180px;
    height: 180px;
  }
  .cube-face svg {
    width: 100px;
  }
  .cube-face .word {
    font-size: 42px;
  }
  .cube-front {
    transform: translateZ(90px);
  }
  .cube-back {
    transform: rotateY(180deg) translateZ(90px);
  }
  .cube-right {
    transform: rotateY(90deg) translateZ(90px);
  }
  .cube-left {
    transform: rotateY(-90deg) translateZ(90px);
  }
  .cube-top {
    transform: rotateX(90deg) translateZ(90px);
  }
  .cube-bottom {
    transform: rotateX(-90deg) translateZ(90px);
  }

  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 28px 24px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .stat:first-child {
    padding-left: 24px !important;
  }
  .stat:last-child {
    border-bottom: none;
  }

  section {
    padding: 80px 24px;
  }
  .aas-grid {
    grid-template-columns: 1fr !important;
  }
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 48px;
  }
  .feat-tabs {
    gap: 6px;
  }
  .modules-row {
    grid-template-columns: 1fr;
  }
  .module-core {
    padding: 32px 24px;
  }
  .steps {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .client-logo-row {
    margin-top: 44px;
    gap: 20px;
  }
  .client-logo-img {
    height: 56px;
    max-width: min(420px, 94vw);
  }

  .cta {
    padding: 80px 24px;
  }
  .email-wrap {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  .email-wrap input {
    border-right: 1px solid var(--border);
    border-radius: 8px;
  }
  .email-wrap button {
    border-radius: 8px;
  }

  .contact-hero {
    padding: 140px 20px 28px;
    justify-content: flex-start;
  }
  .contact-form,
  .contact-form .wpcf7-form {
    padding: 28px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 48px 24px 24px;
  }
  .footer-grid {
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 20px;
  }

  #cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 34px !important;
  }
  .sh {
    font-size: 30px !important;
  }
  .feat-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .feat-tab {
    text-align: center;
  }
}
