/* =====================================================
   ADWEST â€” DESIGN SYSTEM
   Brand: #03BFFF (cyan) Â· #0419E2 (blue)
   ===================================================== */

:root {
  /* Brand */
  --brand-1:   #03BFFF;
  --brand-2:   #0419E2;
  --brand-grad: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  --brand-soft: rgba(3,191,255,.10);
  --brand-border: rgba(3,191,255,.25);

  /* Layout */
  --max-w: 1200px;

  /* Dark palette */
  --bg:       #070A12;
  --bg2:      #080c1a;
  --surface:  #0B1222;
  --surface2: #0E1730;

  /* Text */
  --ink:    rgba(255,255,255,.92);
  --muted:  rgba(234,240,255,.62);
  --text:   #EAF0FF;

  /* Lines / UI */
  --line:   rgba(255,255,255,.10);
  --border: rgba(3,191,255,.14);
  --soft:   rgba(255,255,255,.04);

  /* Shadows */
  --shadow:  0 26px 80px rgba(0,0,0,.55);
  --shadow2: 0 12px 40px rgba(0,0,0,.40);
  --r: 22px;

  /* Shorthands used throughout */
  --c1: var(--brand-1);
  --c2: var(--brand-2);
  --a:  var(--brand-1);
  --b:  var(--brand-2);
  --c:  rgba(3,191,255,.75);

  /* Grad aliases */
  --g1: var(--brand-1);
  --g2: var(--brand-2);
  --g3: rgba(3,191,255,.65);
  --adwest-grad: var(--brand-grad);
}

/* â”€â”€ RESET â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
a    { color: inherit; text-decoration: none; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* â”€â”€ CONTAINER (consistent across ALL sections) â”€â”€ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* â”€â”€ UTILITIES â”€â”€ */
.muted { color: var(--muted); }
.tiny  { font-size: .85rem; }

.gradient {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.revealUp {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1),
              transform .9s cubic-bezier(.22,1,.36,1);
}
.revealUp.active { opacity: 1; transform: translateY(0); }

.revealLR {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
}
.revealRL {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
}
.revealLR.in, .revealRL.in { opacity: 1; transform: translateX(0); }

.reveal { opacity: 0; transform: translateY(16px); transition: all .7s ease; }
.reveal.show { opacity: 1; transform: none; }

.delay1 { transition-delay: .15s; }
.delay2 { transition-delay: .30s; }
.delay3 { transition-delay: .45s; }
.delay4 { transition-delay: .60s; }
.delay5 { transition-delay: .75s; }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  width: 100%;
  top: 0;
  z-index: 80;
}
@media (max-width: 900px) {
  .header {
    padding-left: 10px;
    padding-right: 10px;
}
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .04em; }
a.logo img { max-width: 240px; }

.nav { display: flex; gap: 22px; align-items: center; }
.nav a { font-weight: 700; color: rgba(255,255,255,.62); transition: .2s; }
.nav a:hover {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__cta { display: flex; gap: 10px; align-items: center; }

.menu {
  display: none;
  width: 46px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.menu span {
  display: block; width: 18px; height: 2px;
  background: var(--ink);
  margin: 6px auto;
  border-radius: 999px;
}

.drawer { display: none; border-top: 1px solid var(--line); }
.drawer.isOpen { display: block; }
.drawer__inner {
  padding: 14px 0 16px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.drawer a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--ink);
  font-weight: 800;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .3s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--brand-grad);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #fff; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform .25s; }
.btn-primary:hover svg { transform: translate(2px,-2px); }

.btn--grad {
  border: 1px solid rgba(3,191,255,.22);
  background: var(--brand-grad) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(4,25,226,.30) !important;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.45);
  font-size: .76rem; font-weight: 500;
  border: none; background: transparent; cursor: pointer;
  transition: color .2s; text-decoration: none;
}
.btn-ghost:hover { color: #fff; }

/* =====================================================
   HERO (dom-section)
   ===================================================== */
.dom-section {
  padding: 20px;
  width: 100%;
  min-height: 100vh;
}
.dom-card {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #080c18;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 1px rgba(3,191,255,.04),
    0 32px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* internal blobs */
.dom-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-1 {
  width: 700px; height: 700px; top: -250px; left: -150px;
  background: radial-gradient(circle, rgba(4,25,226,.7) 0%, rgba(3,60,200,.2) 55%, transparent 75%);
  animation: b1 10s ease-in-out infinite alternate;
}
.blob-2 {
  width: 450px; height: 450px; top: -100px; left: 150px;
  background: radial-gradient(circle, rgba(3,191,255,.4) 0%, transparent 65%);
  animation: b2 12s ease-in-out infinite alternate;
}
.blob-3 {
  width: 550px; height: 550px; bottom: -250px; right: 5%;
  background: radial-gradient(circle, rgba(4,25,226,.5) 0%, transparent 70%);
  animation: b3 14s ease-in-out infinite alternate;
}
.blob-4 {
  width: 300px; height: 300px; top: 20%; right: 28%;
  background: radial-gradient(circle, rgba(3,191,255,.15) 0%, transparent 70%);
  animation: b2 8s ease-in-out infinite alternate-reverse;
}
@keyframes b1 { from{transform:translate(0,0);}      to{transform:translate(50px,40px) scale(1.1);} }
@keyframes b2 { from{transform:translate(0,0);}      to{transform:translate(-35px,25px) scale(1.12);} }
@keyframes b3 { from{transform:translate(0,0);}      to{transform:translate(-40px,-30px) scale(1.08);} }

.dom-scan {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,.06) 3px, rgba(0,0,0,.06) 4px);
}
.dom-noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px; opacity: .04;
}
.dom-vig {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 40%, rgba(0,0,0,.65) 100%);
}

.dom-content {
  position: relative; z-index: 10;
  padding: 68px 68px 72px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.dom-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .5s ease .1s forwards;
}
.e-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-1); flex-shrink: 0;
  box-shadow: 0 0 8px var(--brand-1);
  animation: ePulse 2s ease-in-out infinite;
}
@keyframes ePulse {
  0%,100% { box-shadow: 0 0 8px var(--brand-1); transform: scale(1); }
  50%      { box-shadow: 0 0 20px var(--brand-1), 0 0 40px rgba(3,191,255,.3); transform: scale(1.35); }
}
.e-text {
  font-size: .62rem; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}

.dom-h { line-height: .88; letter-spacing: -1px; color: #fff; font-weight: 800; }
.dom-w { display: block; overflow: hidden; }
.dom-w > span {
  display: block; transform: translateY(110%);
  animation: wSlide .75s cubic-bezier(.16,1,.3,1) forwards;
}
.dom-w:nth-child(1) > span { animation-delay: .2s;  font-size: clamp(3rem, 7vw, 8rem); }
.dom-w:nth-child(2) > span { animation-delay: .33s; font-size: clamp(3rem, 7vw, 8rem);}
@keyframes wSlide { to { transform: translateY(0); } }

.glitch { position: relative; display: inline-block; color: #fff; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%;
}
.glitch::before {
  color: var(--brand-1);
  clip-path: polygon(0 0,100% 0,100% 38%,0 38%);
  animation: gT 2.5s infinite;
}
.glitch::after {
  color: var(--brand-2);
  clip-path: polygon(0 62%,100% 62%,100% 100%,0 100%);
  animation: gB 2.5s infinite;
}
@keyframes gT {
  0%,88%,100% { transform: translateX(0); opacity: 0; }
  89% { transform: translateX(-5px) skewX(-3deg); opacity: .9; }
  91% { transform: translateX(4px); opacity: .7; }
  93% { transform: translateX(-2px); opacity: .5; }
  95% { transform: translateX(0); opacity: 0; }
}
@keyframes gB {
  0%,88%,100% { transform: translateX(0); opacity: 0; }
  89% { transform: translateX(5px) skewX(3deg); opacity: .8; }
  91% { transform: translateX(-4px); opacity: .6; }
  93% { transform: translateX(2px); opacity: .4; }
  95% { transform: translateX(0); opacity: 0; }
}

.dom-sub {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 16px; overflow: hidden;
}
.dom-sub > span {
  display: block; transform: translateY(100%);
  animation: wSlide .75s cubic-bezier(.16,1,.3,1) .5s forwards;
}
.sub-it {
  font-style: italic; font-size: clamp(.7rem,1.3vw,.9rem); font-weight: 300;
  color: rgba(255,255,255,.28); letter-spacing: 4px; text-transform: uppercase;
}
.sub-gen {
  font-size: clamp(2rem,4.2vw,4.8rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.22);
  letter-spacing: 1px; line-height: 1;
}

.dom-ctas {
  display: flex; align-items: center; gap: 28px;
  margin-top: 44px;
  opacity: 0; animation: fadeUp .6s ease .85s forwards;
}

/* right stat cards */
.dom-right {
  display: flex; flex-direction: column; gap: 11px;
  opacity: 0; animation: fadeUp .6s ease .72s forwards;
}
.scard {
  background: rgba(6,10,22,.7);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; padding: 20px 22px;
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.scard::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(3,191,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.scard:hover { border-color: rgba(3,191,255,.28); transform: translateY(-2px); }
.sv { font-size: 2.4rem; color: #fff; line-height: 1; letter-spacing: 1px; }
.sv em { font-style: normal; color: var(--brand-1); }
.sl { font-size: .6rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 5px; }
.slive { display: inline-flex; align-items: center; gap: 6px; font-size: .57rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-1); margin-top: 9px; }
.slive-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-1); animation: ePulse 1.5s ease-in-out infinite; }

/* floating cube */
.dom-cube {
  position: absolute; right: 10px; top: 72%;
  transform: translateY(-50%);
  width: 200px; height: 200px; z-index: 20;
  pointer-events: none;
  animation: cubeFloat 4s ease-in-out infinite;
}
.dom-cube img {
  width: 100%; height: 100%; object-fit: contain;
  animation: cubeSpin 12s linear infinite;
  filter: drop-shadow(0 0 30px rgba(3,191,255,.35)) drop-shadow(0 0 60px rgba(4,25,226,.3));
}
@keyframes cubeFloat {
  0%,100% { transform: translateY(-50%) translateY(0px); }
  50%      { transform: translateY(-50%) translateY(-18px); }
}
@keyframes cubeSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* hero marquee */
.dom-mq {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden; height: 72px;
  display: flex; align-items: center;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.mq-track {
  display: flex; align-items: center; gap: 54px;
  width: max-content;
  animation: mq 26s linear infinite;
  will-change: transform;
}
.mq-item { display: flex; align-items: center; height: 72px; }
.mq-item img {
  height: 40px; width: auto; object-fit: contain;
  opacity: .82; filter: grayscale(100%) brightness(1.25);
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}
.mq-item img:hover { opacity: 1; filter: grayscale(0%) brightness(1.05); transform: translateY(-1px) scale(1.05); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dom-mq:hover .mq-track { animation-play-state: paused; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .dom-content { grid-template-columns: 1fr; padding: 52px 40px 60px; gap: 44px; min-height: unset; }
  .dom-right { flex-direction: row; flex-wrap: wrap; }
  .scard { flex: 1; min-width: 160px; }
}
@media (max-width: 600px) {
  .dom-section { padding: 40px 16px; }
  .dom-content { padding: 40px 28px 48px; gap: 36px; }
  .dom-w:nth-child(1) > span { font-size: clamp(3.5rem,16vw,6rem); }
  .dom-w:nth-child(2) > span {/* font-size: clamp(4rem,18vw,7rem) !IMPORTANT; */}
  .sub-gen { font-size: clamp(1.8rem,9vw,3rem); }
  .dom-right { flex-direction: column; }
}

/* =====================================================
   ABOUT / NEURAL SECTION
   ===================================================== */
.nc {
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
#neuralCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .45;
}

.nc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; margin-bottom: 80px;
  position: relative; z-index: 10;
}
.nc-tag { display: flex; align-items: center; gap: 12px; }
.nc-tag-bracket { font-size: .75rem; color: var(--brand-1); opacity: .5; }
.nc-tag-label { font-size: 1rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.nc-header-line { flex: 1; height: 1px; margin: 0 40px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.nc-header-id { font-size: 1rem; color: rgba(3,191,255,.3); letter-spacing: 2px; }

.nc-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px; position: relative; z-index: 10;
}

/* Left */
.nc-left {
  padding: 0 64px 0 80px;
  border-right: 1px solid var(--border);
  transform: translateX(-60px); opacity: 0;
  transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s ease;
}
.nc-left.in { transform: translateX(0); opacity: 1; }

.nc-oversize {
  font-size: clamp(2rem,5.5vw,5rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 36px;
}
.nc-oversize .ghost   {/* color: transparent; *//* -webkit-text-stroke: 1px rgba(255,255,255,.15); */display: block;}
.nc-oversize .lit    { color: var(--brand-1); display: block; }

.nc-type-wrap {
  font-size: 1rem; font-weight: 300;
  color: var(--muted); line-height: 1.9; max-width: 440px;
  margin-bottom: 44px; min-height: 80px;
}
.nc-type-wrap .cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--brand-1); margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink .8s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.nc-terminal { display: flex; flex-direction: column; gap: 10px; margin-bottom: 48px; }
.nc-terminal-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: var(--muted);
  opacity: 0; transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
}
.nc-terminal-item.in { opacity: 1; transform: translateX(0); }
.nc-terminal-item:hover { color: rgba(255,255,255,.85); }
.nc-terminal-item:hover .t-prompt { color: var(--brand-1); }
.t-prompt { color: rgba(3,191,255,.5); transition: color .2s; }
.t-check {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1px solid rgba(3,191,255,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-check svg { opacity: .6; }

.nc-cta-row { display: flex; align-items: center; gap: 20px; opacity: 0; transition: opacity .6s ease 1s; }
.nc-cta-row.in { opacity: 1; }

/* Right */
.nc-right {
  padding: 0 80px 0 64px;
  transform: translateX(60px); opacity: 0;
  transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s ease;
}
.nc-right.in { transform: translateX(0); opacity: 1; }

/* Rings */
.nc-rings { position: relative; width: 280px; height: 280px; margin: 0 auto 52px; }
.ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ring-track { fill: none; stroke: rgba(255,255,255,.04); }
.ring-fill {
  fill: none; stroke-linecap: round;
  stroke-dasharray: 0 1000;
  transition: stroke-dasharray 1.6s cubic-bezier(.4,0,.2,1);
}
.ring-1 { stroke: var(--brand-1); }
.ring-2 { stroke: var(--brand-2); opacity: .85; }
.ring-3 { stroke: rgba(255,255,255,.4); }
.ring-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); text-align: center;
}
.ring-center-num { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -1px; }
.ring-center-num em { font-style: normal; color: var(--brand-1); }
.ring-center-label { font-size: .52rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 4px; }

/* Flip cards */
.nc-flip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flip-card {height: 150px;perspective: 800px;cursor: pointer;}
.flip-inner {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.flip-card:hover .flip-inner, .flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0; border-radius: 12px; padding: 18px 20px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.flip-front {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.flip-front::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand-grad); opacity: 0; transition: opacity .3s;
}
.flip-card:hover .flip-front::before { opacity: 1; }
.flip-back {
  background: linear-gradient(135deg, var(--brand-2), #021899);
  border: 1px solid rgba(3,191,255,.2);
  transform: rotateY(180deg);
  justify-content: center; align-items: flex-start;
}
.flip-num { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -1px; }
.flip-num em { font-style: normal; color: var(--brand-1); }
.flip-label { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.flip-back-num { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.flip-back-desc { font-size: .8rem; color: #fff; line-height: 1.6; margin-top: 8px; }
.flip-glint { position: absolute; top: 14px; right: 16px; font-size: .55rem; color: rgba(3,191,255,.35); }

/* History strip */
.nc-history { position: relative; z-index: 10; padding: 80px 80px 0; }
.section-eyebrow {
  font-size: .6rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(3,191,255,.45); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(3,191,255,.2), transparent); }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.history-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease, border-color .25s;
}
.history-card.in { opacity: 1; transform: translateY(0); }
.history-card:hover { border-color: rgba(3,191,255,.3); }
.history-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.history-card:hover::after { transform: scaleX(1); }
.history-year { font-size: 2rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(3,191,255,.3); letter-spacing: -1px; line-height: 1; margin-bottom: 16px; }
.history-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.history-desc { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.75; }

@media (max-width: 992px) {
  .nc-split { grid-template-columns: 1fr; }
  .nc-left  { border-right: none; padding: 0 24px; }
  .nc-right { padding: 24px 24px 0; }
  .nc-header { padding: 0 24px; }
  .nc-history { padding: 60px 24px 0; }
  .history-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES (What We Do)
   ===================================================== */
.whatWeDo { padding: 110px 0; }

.wwdHead { text-align: center; margin-bottom: 36px; }
.wwdTop {
  font-size: 1.05rem; color: var(--muted);
  letter-spacing: .02em; margin-bottom: 10px;
}
.wwdTitle {
  font-size: clamp(2.2rem,4vw,4.2rem);
  letter-spacing: -.03em; margin: 0;
  font-weight: 800; color: var(--ink);
}

.wwdWrap { position: relative; --wwd-progress: 0; }

.wwdList {
  position: relative; display: flex; flex-direction: column; gap: 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0; margin-top: 70px;
}

/* center rail */
.wwdRail {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 2px; height: 100%;
  pointer-events: none; z-index: 0;
}
.wwdRailTrack {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-radius: 999px;
}
.wwdRailFill {
  position: absolute; left: 0; top: 0; width: 100%;
  height: calc(var(--wwd-progress) * 100%);
  background: var(--brand-grad);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(3,191,255,.35), 0 0 30px rgba(4,25,226,.25);
}
.wwdRailDot {
  position: absolute; left: 50%; top: calc(var(--wwd-progress) * 100%);
  transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--brand-1) 35%, var(--brand-2) 70%, transparent 100%);
  box-shadow: 0 0 18px rgba(3,191,255,.55), 0 0 38px rgba(4,25,226,.45);
}

.wwdRow {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 38px; align-items: start;
  padding: 54px 0;
  position: relative; z-index: 1;
}
.wwdRow--right { grid-template-columns: .8fr 1.2fr; padding-left: 60px; }
.wwdRow--left  { padding-right: 60px; }

.wwdBig {display: flex;align-items: flex-end;gap: 18px;}
.wwdBig--right { justify-content: flex-end; text-align: right; }
.wwdBig h3 {
  margin: 0; font-size: clamp(2rem,5vw,4rem);
  line-height: 1; letter-spacing: -.04em;
  font-weight: 1000; color: var(--ink);
}
.wwdIcon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  color: var(--brand-1);
  font-size: 22px;
  flex: 0 0 auto;
  transform: translateY(10px);
  transition: all .25s ease;
}
.wwdRow:hover .wwdIcon {
  background: var(--brand-grad);
  color: #fff; transform: translateY(6px) scale(1.05);
  box-shadow: 0 12px 28px rgba(4,25,226,.35);
}
.wwdText {
  font-size: 1.15rem; line-height: 1.75; color: var(--muted);
}
.wwdRow--right .wwdText { justify-self: end; text-align: left; }

/*@media (max-width: 980px) {
  .wwdRow, .wwdRow--right { grid-template-columns: 1fr; padding: 40px 0; }
  .wwdRow--left, .wwdRow--right { padding-left: 34px; padding-right: 0; }
  .wwdRow--right .wwdText { justify-self: start; text-align: left; }
  .wwdBig--right { justify-content: flex-start; text-align: left; }
  .wwdRail { left: 14px; transform: none; }
}
*/
/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section { padding: 120px 0; text-align: center; }
.video-title {
  color: var(--ink); font-weight: 900;
  font-size: clamp(2rem,3vw,3rem); margin-bottom: 50px;
}
.video-wrap {
  position: relative; max-width: 950px; height: 520px;
  margin: auto; border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.video-thumb { width: 100%; display: block; transition: .4s; height: 100%; object-fit: cover; }
.video-wrap:hover .video-thumb { filter: brightness(.6); }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 90px; height: 90px; border-radius: 50%;
  border: none; font-size: 2rem; color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 20px 60px rgba(4,25,226,.5);
  cursor: pointer; transition: .3s;
}
.video-play:hover { transform: translate(-50%,-50%) scale(1.1); }
.video-frame { display: none; }
.video-frame iframe { width: 100%; height: 520px; border: none; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.section {
  width: 100%;
  max-width: var(--max-w);
  padding: 100px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

/* Deep blue nebula behind carousel â€” makes right side glow from within */
.section::before {
  content: '';
  position: absolute;
  right: -6%; top: 50%;
  transform: translateY(-50%);
  width: 62%; height: 90%;
  background:
    radial-gradient(ellipse 65% 55% at 65% 38%, rgba(4,25,226,.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 35% 65%, rgba(3,191,255,.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 75% 70%, rgba(4,25,226,.14) 0%, transparent 55%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.heading-col { position: relative; z-index: 1; }

.label {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brand-1); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
  opacity: .8;
}
.label::before { content: ''; width: 28px; height: 1px; background: var(--brand-1); }

.heading-col h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12; font-weight: 800; margin-bottom: 16px;
  color: var(--ink);
}
.heading-col h2 em { font-style: normal; color: var(--brand-1); font-weight: 800; }

.desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.38);
  margin-bottom: 40px;
}

/* Progress nav */
.progress-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.prog-item {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; opacity: .22; transition: opacity .35s; padding: 3px 0;
}
.prog-item:hover  { opacity: .55; }
.prog-item.active { opacity: 1; }

.prog-line {
  width: 32px; height: 1.5px;
  background: rgba(255,255,255,.10);
  border-radius: 2px; overflow: hidden;
  position: relative; flex-shrink: 0;
  transition: width .35s;
}
.prog-item.active .prog-line { width: 44px; }

.prog-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%; background: var(--brand-1); border-radius: 2px;
}
.prog-item.active .prog-fill { animation: fillBar 5s linear forwards; }
@keyframes fillBar { from { width: 0%; } to { width: 100%; } }

.prog-name {
  font-size: 14px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.38);
  transition: color .35s;
}
.prog-item.active .prog-name { color: rgba(255,255,255,.88); }

/* Arrow buttons */
.nav-arrows { display: flex; gap: 10px; margin-top: 4px; }
.arrow-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.35);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 15px; user-select: none;
  transition: border-color .25s, color .25s, background .25s, transform .15s;
}
.arrow-btn:hover {
  border-color: rgba(3,191,255,.4);
  color: var(--brand-1);
  background: rgba(3,191,255,.06);
}
.arrow-btn:active { transform: scale(.9); }

/* â”€â”€ Carousel: fully transparent window â”€â”€ */
.carousel-col {
  position: relative;
  height: 520px;
  overflow: hidden;
  z-index: 1;
}

/* Long soft fades â€” cards dissolve cleanly into starfield */
.carousel-col::before,
.carousel-col::after {
  content: '';
  position: absolute;
  left: -8%; right: -8%;
  z-index: 3; pointer-events: none;
}
.carousel-col::before {
  top: 0; height: 220px;
 /* background: linear-gradient(
    to bottom,
    var(--bg)              0%,
    var(--bg)              12%,
    rgba(7,10,18,.70)      45%,
    transparent            100%
  );*/
}
.carousel-col::after {
  bottom: 0; height: 220px;
 /* background: linear-gradient(
    to top,
    var(--bg)              0%,
    var(--bg)              12%,
    rgba(7,10,18,.70)      45%,
    transparent            100%
  );*/
}

.carousel-track {
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .6s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}

/* â”€â”€ Cards: ghost-glass, no solid fill â”€â”€ */
.card {
  background: rgba(3,8,22,.18);
  border: 1px solid rgba(255,255,255,.028);
  border-radius: 20px;
  padding: 46px 26px 24px;
  position: relative; flex-shrink: 0; cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    opacity    .6s ease,
    transform  .6s ease,
    border-color .6s ease,
    box-shadow .6s ease,
    background .6s ease;
  opacity: .18;
  transform: scale(.92);
}

.card.active {
  opacity: 1;
  transform: scale(1);
  background: rgba(5,12,35,.42);
  border-color: rgba(3,191,255,.14);
  box-shadow:
    0 2px 60px rgba(4,25,226,.14),
    inset 0 1px 0 rgba(3,191,255,.06);
}

/* Top shimmer line on active card */
.card.active::after {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3,191,255,.30), transparent);
}


.tag {
  position: absolute; top: 16px; left: 26px;
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(3,191,255,.65);
  background: rgba(3,191,255,.05);
  padding: 3px 9px; border-radius: 20px;
  border: 1px solid rgba(3,191,255,.10);
}

.quote-mark {
  position: absolute; top: 12px; right: 22px;
  font-size: 64px; line-height: 1;
  color: var(--brand-1); opacity: .055; pointer-events: none;
}

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star  { color: var(--brand-1); font-size: 12px; opacity: .85; }

.quote-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
  font-style: italic;
}

.author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(3,191,255,.55), rgba(4,25,226,.85));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; color: rgba(255,255,255,.9);
  flex-shrink: 0;
  border: 1px solid rgba(3,191,255,.20);
  letter-spacing: .03em;
}

.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name {font-size: 14px;font-weight: 600;color: rgba(255,255,255,.80);}
.author-role {font-size: 12px;color: rgba(255,255,255,.35);}

@media (max-width: 768px) {
  .section { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px 80px; }
  .section::before { display: none; }
  .carousel-col { height: 420px; }
  .heading-col h2 { font-size: 1.9rem; }
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section { padding: clamp(100px,7vw,160px) 0; position: relative; }

.contact-wrap {
  position: relative; border-radius: 32px;
  padding: clamp(18px,2.2vw,28px);
  border: 1px solid var(--line);
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(3,191,255,.15), transparent 55%),
    radial-gradient(900px 520px at 90% 0%,  rgba(4,25,226,.15),  transparent 55%),
    var(--surface);
  box-shadow: 0 40px 140px rgba(0,0,0,.55);
  overflow: hidden;
}
.contact-wrap::after {
  content: ''; position: absolute; inset: -35%;
  background: linear-gradient(to right, rgba(3,191,255,.04) 1px, transparent 1px),
              linear-gradient(to bottom, rgba(3,191,255,.04) 1px, transparent 1px);
  background-size: 88px 88px;
  transform: rotate(-6deg); opacity: .18; pointer-events: none;
}
.contact-wrap > * { position: relative; z-index: 2; }

.contact-title {
  font-weight: 950; letter-spacing: -.05em; line-height: 1.04;
  font-size: clamp(2.2rem,4vw,3.3rem); margin: 8px 0 10px; color: var(--ink);
}
.contact-title .grad { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.contact-sub { color: var(--muted); font-weight: 650; max-width: 64ch; line-height: 1.55; margin-bottom: 16px; }

.eyebrow-2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--muted);
  letter-spacing: .02em; text-transform: uppercase; font-size: .85rem; margin-bottom: 10px;
}
.eyebrow-2 .ring {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--brand-1); display: inline-block;
}

.contact-points {
  list-style: none; padding: 0; margin: 14px 0 18px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--muted); font-weight: 750;
}
.contact-points i { margin-right: 10px; color: var(--brand-1); }

.contact-chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.contact-chips .chip {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--ink); font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-chips .chip:hover {
  transform: translateY(-2px);
  border-color: rgba(3,191,255,.3);
  box-shadow: 0 26px 90px rgba(3,191,255,.10);
}
.chip-ic {
  width: 40px; height: 40px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1rem; color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 16px 60px rgba(4,25,226,.2);
}

.contact-form {
  position: relative; border-radius: 26px;
  padding: clamp(18px,2vw,24px);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 120px rgba(0,0,0,.3);
  overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(3,191,255,.08), transparent 55%);
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.contact-form:hover::before { opacity: 1; }

.f-label { display: block; margin-bottom: 8px; color: var(--muted); font-weight: 850; }
.f-input {
  width: 100%; padding: 14px 16px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--ink); font-weight: 700; outline: none;
  font-family: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.f-input::placeholder { color: rgba(255,255,255,.25); font-weight: 500; }
.f-input:focus {
  border-color: rgba(3,191,255,.4);
  box-shadow: 0 0 0 4px rgba(3,191,255,.12);
}
.f-textarea { resize: vertical; min-height: 130px; }

.contact-submit {
  width: 100%; padding: 16px 18px; border-radius: 999px;
  border: none; font-weight: 950; color: #fff;
  background: var(--brand-grad);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  box-shadow: 0 22px 90px rgba(4,25,226,.3);
  position: relative; overflow: hidden;
  font-family: inherit;
}
.contact-submit:hover { transform: translateY(-2px); filter: brightness(1.05); }
.contact-submit::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 120%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.3), transparent);
  transition: .5s;
}
.contact-submit:hover::after { left: 120%; }
.contact-mini { margin-top: 10px; color: var(--muted); font-weight: 650; font-size: .92rem; }

@media (max-width: 992px) {
  .contact-wrap { padding: 18px; }
  .contact-title { font-size: clamp(2rem,8vw,2.6rem); }
}

/* =====================================================
   FOOTER
   ===================================================== */
.adwest-footer {
  background: var(--bg);
  color: rgba(255,255,255,.85);
  padding: 0 0 34px;
  position: relative;
  overflow: hidden;
}
.adwest-footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(3,191,255,.07), transparent 70%);
  pointer-events: none;
}
.adwest-footer .container { position: relative; z-index: 2; }

.adwest-footer__brand {
  font-weight: 1000; letter-spacing: -.06em; line-height: .88;
  font-size: clamp(80px,12vw,220px); margin: 0 0 40px;
  background: var(--brand-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}

.adwest-footer__top {
  display: grid;
  grid-template-columns: 200px 200px 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.adwest-footer__col a {
  display: block; color: rgba(255,255,255,.9);
  font-weight: 700; font-size: 18px; padding: 8px 0; transition: .2s;
}
.adwest-footer__col a:hover { color: #fff; transform: translateX(2px); }
.adwest-footer__contact { color: rgba(255,255,255,.75); font-weight: 650; line-height: 1.8; font-size: 18px; }
.adwest-footer__contact a { color: rgba(255,255,255,.86); }
.adwest-footer__right p { margin: 0 0 22px; color: rgba(255,255,255,.75); font-weight: 650; max-width: 42ch; line-height: 1.7; font-size: 18px; }

.adwest-footer__social { display: flex; gap: 12px; }
.soc {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 18px;
  transition: .25s;
  text-align: center;
}
.soc:hover { transform: translateY(-2px); border-color: rgba(3,191,255,.4); box-shadow: 0 18px 60px rgba(4,25,226,.2); }

.adwest-footer__divider { height: 1px; background: rgba(255,255,255,.14); margin: 36px 0 26px; }
.adwest-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.adwest-footer__legal { display: flex; gap: 34px; flex-wrap: wrap; }
.adwest-footer__legal a { color: rgba(255,255,255,.74); font-weight: 700; font-size: 16px; transition: .2s; }
.adwest-footer__legal a:hover { color: #fff; }
.adwest-footer__copy { color: rgba(255,255,255,.70); font-weight: 650; white-space: nowrap; font-size: 16px; }

@media (max-width: 992px) { .adwest-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .adwest-footer__top { grid-template-columns: 1fr; gap: 22px; } }

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
* { cursor: none !important; }

#gc-dot {
  position: fixed; width: 7px; height: 7px;
  background: var(--brand-1); border-radius: 50%;
  pointer-events: none; z-index: 999999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
  box-shadow: 0 0 10px var(--brand-1), 0 0 22px rgba(3,191,255,.5);
}
#gc-glow {
  position: fixed; width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle at center, rgba(3,191,255,.10) 0%, rgba(3,191,255,.06) 20%, rgba(4,25,226,.06) 45%, rgba(4,25,226,.02) 65%, transparent 75%);
  filter: blur(2px); will-change: transform; mix-blend-mode: screen;
}
#gc-ring {
  position: fixed; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(3,191,255,.45);
  pointer-events: none; z-index: 999998;
  transform: translate(-50%,-50%); will-change: transform;
  box-shadow: 0 0 8px rgba(3,191,255,.2), inset 0 0 8px rgba(3,191,255,.06);
  transition: width .2s, height .2s, border-color .2s, opacity .3s;
}
#gc-ring.hovered { width: 52px; height: 52px; border-color: rgba(3,191,255,.7); }

.gc-ambient { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; mix-blend-mode: screen; }
#gc-amb1 {
  width: 700px; height: 700px; top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(4,25,226,.18) 0%, transparent 70%);
  animation: ambDrift1 18s ease-in-out infinite alternate;
}
#gc-amb2 {
  width: 600px; height: 600px; bottom: -180px; right: -180px;
  background: radial-gradient(circle, rgba(3,191,255,.12) 0%, transparent 70%);
  animation: ambDrift2 22s ease-in-out infinite alternate;
}
#gc-amb3 {
  width: 400px; height: 400px; top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(4,25,226,.08) 0%, transparent 70%);
  animation: ambPulse 8s ease-in-out infinite;
}
@keyframes ambDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,40px) scale(1.15); } }
@keyframes ambDrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px,-30px) scale(1.1); } }
@keyframes ambPulse  { 0%,100% { opacity:.5; transform:translate(-50%,-50%) scale(1); } 50% { opacity:1; transform:translate(-50%,-50%) scale(1.2); } }

/* =====================================================
   HEADER â€” RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .nav    { display: none; }
  .menu   { display: inline-block; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
h2.wwdTitle span {color: var(--brand-1);}

h2.video-title span {
    color: var(--brand-1);
}

.wwdTitle ghost  {/* color: transparent; *//* -webkit-text-stroke: 1px rgba(255,255,255,.15); */}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PARTNERS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.partners {
  padding: 20px 80px;
  position: relative;
  overflow: hidden;
  max-width: var(--max-w);
  margin: auto;
}

/* ambient glow behind */
.partners::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(3,191,255,0.035) 0%, transparent 70%);
  pointer-events: none;
}

/* â”€â”€ TOP LABEL DIVIDER â”€â”€ */
.partners-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s, transform .5s;
}
.partners-header.in { opacity:1; transform:translateY(0); }
.ph-line { flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent); }
.ph-dot  { width:4px;height:4px;border-radius:50%;background:rgba(3,191,255,.4);flex-shrink:0; }
.ph-label {
  font-family:'JetBrains Mono',monospace;
  font-size:.58rem;letter-spacing:5px;
  text-transform:uppercase;color:rgba(255,255,255,.22);
  white-space:nowrap;
}

/* â”€â”€ GROUP â”€â”€ */
.logo-group {
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.logo-group.in { opacity:1; transform:translateY(0); }

.group-eyebrow {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  /*color: rgba(3,191,255,.35);*/
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .3);
}
.group-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(3,191,255,.12), transparent);
}

/* â”€â”€ LOGO GRID â”€â”€ */
.logo-grid {
  display: grid;
  gap: 10px;
}
.logo-grid.cols-5 {grid-template-columns: repeat(6, 1fr);}
.logo-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* â”€â”€ LOGO CARD â”€â”€ */
.logo-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  cursor: default;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.logo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3,191,255,.3), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.logo-card:hover {
  background: rgba(3,191,255,.05);
  border-color: rgba(3,191,255,.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(3,191,255,.07);
}
.logo-card:hover::after { opacity: 1; }

/* â”€â”€ IMAGE FILTERS â”€â”€ */
.logo-card img {
  width: auto;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: filter .3s, opacity .3s;
}
.logo-card.twitter img{
   height: 55px;
}

/* White-bg JPGs/PNGs */
.logo-card.t-invert img {
  filter: invert(1) brightness(1) grayscale(100);
  /* opacity: .5; */
}
.logo-card.t-invert:hover img {
  filter: brightness(1);
  opacity: 1;
}

/* Colourful images â€” desaturate on rest */
.logo-card.t-color img {
  filter: grayscale(1) brightness(.55);
  opacity: 1;
}
.logo-card.t-color:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Already transparent / SVG */
.logo-card.t-white img {
  filter: brightness(0) invert(1);
  opacity: .3;
}
.logo-card.t-white:hover img {
  opacity: .8;
}


/* RESPONSIVE */
@media(max-width:1024px){
  .partners{padding:80px 40px;}
  .logo-grid.cols-5{grid-template-columns:repeat(4,1fr);}
}
@media(max-width:768px){
  .logo-grid.cols-5,.logo-grid.cols-4{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:480px){
  .partners{padding:60px 20px;}
  .logo-grid.cols-5,.logo-grid.cols-4{grid-template-columns:repeat(2,1fr);}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI PLATFORMS ROW
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ai-platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 0;
  /*border-bottom: 1px solid rgba(3,191,255,.12);*/
  margin-bottom: 40px;
}
.ai-platforms-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.ai-platforms-logos { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ai-plat-card {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(3,191,255,.25);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
  transition: background .2s, border-color .2s, transform .2s;
  background: #fff;
}
.ai-plat-card img {
    width: 120px;
    height: 65px;
    object-fit: contain;
}
.ai-plat-card:hover {
  background: #fff;
  border-color: rgba(3,191,255,.6);
  transform: translateY(-7px);
  transition: 0.3s ease-in;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   3D CSS CUBE WITH ORBIT RING
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dom-cube {
  position: absolute;
  right: 20px;
  top: 64%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  z-index: 20;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cube-orbit {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cubeFloat 4s ease-in-out infinite;
}
.cube-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(3,191,255,.35);
  box-shadow: 0 0 30px rgba(3,191,255,.25), inset 0 0 30px rgba(3,191,255,.08);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { box-shadow: 0 0 20px rgba(3,191,255,.2), inset 0 0 20px rgba(3,191,255,.05); border-color: rgba(3,191,255,.35); }
  50%      { box-shadow: 0 0 45px rgba(3,191,255,.55), inset 0 0 35px rgba(3,191,255,.15); border-color: rgba(3,191,255,.7); }
}
@keyframes cubeFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
.cube-3d {
  width: 70px;
  height: 70px;
  transform-style: preserve-3d;
  animation: cube3dSpin 9s linear infinite;
}
@keyframes cube3dSpin {
  0%   { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(480deg); }
}
.cube-face {
  position: absolute; width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(3,191,255,.22), rgba(4,25,226,.35));
  border: 1.5px solid rgba(3,191,255,.6);
  backdrop-filter: blur(4px);
}
.cube-front  { transform: translateZ(36px); }
.cube-back   { transform: rotateY(180deg) translateZ(36px); }
.cube-left   { transform: rotateY(-90deg) translateZ(36px); }
.cube-right  { transform: rotateY(90deg)  translateZ(36px); }
.cube-top    { transform: rotateX(90deg)  translateZ(36px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(36px); }
.cube-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #03BFFF;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(3,191,255,.8);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-section {
  padding: 100px 0; background: transparent; position: relative; z-index: 2;
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-title {
  font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff;
  margin: 12px 0 0; letter-spacing: -.02em;
}
.faq-title span { color: #03BFFF; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(3,191,255,.2);
  border-radius: 14px; overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq-item.open { border-color: rgba(3,191,255,.55); background: rgba(3,191,255,.06); }
.faq-q {
  width: 100%; background: none; border: none; outline: none;
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; font-weight: 800; color: #fff; text-align: left;
  cursor: pointer; gap: 16px;
}
.faq-q:hover { color: #03BFFF; }
.faq-icon { color: #03BFFF; font-size: 1rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 26px;
  color: rgba(255,255,255,.75); font-size: .97rem; line-height: 1.7; font-weight: 500;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 22px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER .net LABEL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer-dotnet {
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 800; letter-spacing: .05em;
  background: var(--brand-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  margin-top: -10px; line-height: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VIBRANT COLOR BOOSTS â€” faded text fix
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Boost any ghost/faded text elements */
ghost {color: #fff;}
.sub-it { color: rgba(255,255,255,.85) !important; font-weight: 600; }
.e-text { color: rgba(255,255,255,.9) !important; }
.nc-type-wrap { color: #03BFFF !important; }
.history-desc { color: rgba(255,255,255,.88) !important; }
.wwdText { color: rgba(255,255,255,.85) !important; font-size: 1.02rem; }
.flip-back-desc { color: rgba(255,255,255,.9) !important; }
.video-subtitle { color: rgba(255,255,255,.82) !important; }
.desc { color: rgba(255,255,255,.82) !important; }
.quote-text { color: rgba(255,255,255,.88) !important; }
/* Vibrant section eyebrows */
.section-eyebrow {
  color: #03BFFF !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
}
/* DIGITAL DOMINATION heading pop */
.dom-h span { text-shadow: 0 0 14px rgba(3,191,255,.6); }
/* History cards â€” brighter headings */
.history-year {
  color: #fff !important;
  font-weight: 900 !important;
}
/* Flip cards â€” more vibrant */
.flip-front { background: linear-gradient(145deg, rgba(3,191,255,.2), rgba(4,25,226,.45)) !important; }
.flip-num { color: #fff !important; text-shadow: 0 0 20px rgba(3,191,255,.7); }
.flip-label { color: rgba(255,255,255,.95) !important; font-weight: 700; }
/* What We Do headings */
.wwdBig h3 {color: #fff !important;/* font-size: clamp(1.4rem,2.2vw,1.9rem) !important; */}
.wwdIcon {color: #03BFFF !important;font-size: 1.8rem;}
/* Partners section eyebrow */
.group-eyebrow { color: #fff !important; font-weight: 800 !important; font-size: 1rem !important; }

/* =====================================================
   ADWEST v3 UPDATES
   ===================================================== */

/* â”€â”€ METALLIC SILVER "invisible" line â”€â”€ */
.dom-sub-silver {
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 0.75rem;
  letter-spacing: .01em;
  background: linear-gradient(135deg, #c0c0c0 0%, #f8f8f8 30%, #a8a8a8 50%, #ffffff 65%, #909090 80%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(200,200,255,.35));
  animation: silverShimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}
@keyframes silverShimmer {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* â”€â”€ AI SPACE SCENE (right side hero) â”€â”€ */
.ai-space-scene {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44%;
  z-index: 8;
  pointer-events: none;
  overflow: hidden;
}
#aiSpaceCanvas {
  width: 100%; height: 100%;
  display: block;
}

/* â”€â”€ LAVA-LAMP style blobs for DIGITAL DOMINATION â”€â”€ */
/* Override existing blobs with more vibrant throbbing lava-lamp colors */
.blob-1 {
  background: radial-gradient(circle, rgba(255,60,120,.65) 0%, rgba(200,20,80,.2) 50%, transparent 75%) !important;
  animation: lavaBob1 9s ease-in-out infinite alternate !important;
}
.blob-2 {
  background: radial-gradient(circle, rgba(3,191,255,.55) 0%, rgba(80,0,220,.2) 55%, transparent 70%) !important;
  animation: lavaBob2 11s ease-in-out infinite alternate !important;
}
.blob-3 {
  background: radial-gradient(circle, rgba(120,0,255,.5) 0%, rgba(4,25,226,.2) 60%, transparent 75%) !important;
  animation: lavaBob3 13s ease-in-out infinite alternate !important;
}
.blob-4 {
  width: 400px !important; height: 400px !important;
  background: radial-gradient(circle, rgba(255,140,0,.35) 0%, rgba(255,60,0,.1) 50%, transparent 70%) !important;
  animation: lavaBob4 7s ease-in-out infinite alternate-reverse !important;
}
@keyframes lavaBob1 {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(60px,50px) scale(1.15); }
  66%  { transform: translate(20px,80px) scale(.9); }
  100% { transform: translate(80px,20px) scale(1.2); }
}
@keyframes lavaBob2 {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(-50px,30px) scale(1.18); }
  70%  { transform: translate(-20px,-40px) scale(.85); }
  100% { transform: translate(-70px,60px) scale(1.1); }
}
@keyframes lavaBob3 {
  0%   { transform: translate(0,0) scale(1); }
  30%  { transform: translate(-30px,-50px) scale(1.1); }
  70%  { transform: translate(40px,-20px) scale(.92); }
  100% { transform: translate(-50px,-40px) scale(1.15); }
}
@keyframes lavaBob4 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-35px) scale(1.25); }
  100% { transform: translate(-30px,50px) scale(.8); }
}


/* â”€â”€ PARTNER TEXT CARDS (for missing logo images) â”€â”€ */
.partner-text-card {
  color: rgba(255,255,255,.85) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: .04em;
  background: rgba(3,191,255,.07) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LIQUID GRADIENT CANVAS â€” full hero background
   Matches adsgency.ai style liquid lava motion
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.liquid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  border-radius: 24px;
}

/* Make the vignette stronger so text stays readable */
.dom-vig {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 30% 50%, transparent 20%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(0,0,0,.5), transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(0,0,0,.5), transparent 60%);
}

/* Dom content sits above canvas */
.dom-content { position: relative; z-index: 10; }
.ai-space-scene { z-index: 8; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GALAXY CANVAS â€” full-card 3D orrery
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.galaxy-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  z-index: 4;
  display: block;
  pointer-events: none;
  border-radius: 24px;
}




/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI PLATFORM FLOATING LOGO ORBS â€” bottom-right of hero
   Real SVG logos inside glowing glass-morphism bubbles,
   each floating and pulsing independently
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ai-orbs-wrap {
  position: absolute;
  right: 3%;
  bottom: 8%;
  width: 340px;
  height: 280px;
  z-index: 12;
  pointer-events: none;
}

/* Base orb style */
.ai-orb {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.22);
  transition: transform .3s;
}
.ai-orb img {
  object-fit: contain;
  border-radius: 0;
  display: block;
}
.ai-orb span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

/* Claude orb â€” top right, large */
.ai-orb-claude {
  width: 90px; height: 90px;
  top: 0; right: 10px;
  background: radial-gradient(circle at 35% 35%, rgba(218,119,86,.35), rgba(218,119,86,.08));
  box-shadow: 0 0 30px rgba(218,119,86,.5), 0 0 60px rgba(218,119,86,.2), inset 0 1px 0 rgba(255,255,255,.2);
  animation: orbFloat1 5.2s ease-in-out infinite, orbPulse1 5.2s ease-in-out infinite;
}
.ai-orb-claude img { width: 44px; height: 44px; }

/* ChatGPT orb â€” bottom left, medium */
.ai-orb-chatgpt {
  width: 78px; height: 78px;
  bottom: 20px; left: 0;
  background: radial-gradient(circle at 35% 35%, rgba(116,170,156,.35), rgba(116,170,156,.08));
  box-shadow: 0 0 28px rgba(116,170,156,.55), 0 0 55px rgba(116,170,156,.2), inset 0 1px 0 rgba(255,255,255,.2);
  animation: orbFloat2 6.1s ease-in-out infinite, orbPulse2 4.8s ease-in-out infinite;
}
.ai-orb-chatgpt img { width: 38px; height: 38px; }

/* Copilot orb â€” middle, medium */
.ai-orb-copilot {
  width: 74px; height: 74px;
  top: 60px; left: 80px;
  background: radial-gradient(circle at 35% 35%, rgba(0,120,212,.4), rgba(0,120,212,.10));
  box-shadow: 0 0 28px rgba(0,120,212,.6), 0 0 55px rgba(0,120,212,.25), inset 0 1px 0 rgba(255,255,255,.2);
  animation: orbFloat3 4.8s ease-in-out infinite, orbPulse3 5.5s ease-in-out infinite;
}
.ai-orb-copilot img { width: 36px; height: 36px; }

/* Perplexity orb â€” bottom right, small */
.ai-orb-perplexity {
  width: 68px; height: 68px;
  bottom: 0; right: 40px;
  background: radial-gradient(circle at 35% 35%, rgba(167,139,250,.38), rgba(167,139,250,.10));
  box-shadow: 0 0 24px rgba(167,139,250,.6), 0 0 50px rgba(167,139,250,.22), inset 0 1px 0 rgba(255,255,255,.2);
  animation: orbFloat4 5.7s ease-in-out infinite, orbPulse4 6.2s ease-in-out infinite;
}
.ai-orb-perplexity img { width: 32px; height: 32px; }

/* Float animations â€” each unique rhythm */
@keyframes orbFloat1 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-16px) rotate(2deg); }
  66%      { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  40%      { transform: translateY(-20px) rotate(-2deg); }
  70%      { transform: translateY(-10px) rotate(1.5deg); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(2.5deg); }
}
@keyframes orbFloat4 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  45%      { transform: translateY(-14px) rotate(-2deg); }
  80%      { transform: translateY(-6px) rotate(1deg); }
}

/* Glow pulse animations */
@keyframes orbPulse1 {
  0%,100% { box-shadow: 0 0 30px rgba(218,119,86,.5), 0 0 60px rgba(218,119,86,.2); }
  50%      { box-shadow: 0 0 50px rgba(218,119,86,.85), 0 0 90px rgba(218,119,86,.4); }
}
@keyframes orbPulse2 {
  0%,100% { box-shadow: 0 0 28px rgba(116,170,156,.55), 0 0 55px rgba(116,170,156,.2); }
  50%      { box-shadow: 0 0 48px rgba(116,170,156,.9), 0 0 85px rgba(116,170,156,.4); }
}
@keyframes orbPulse3 {
  0%,100% { box-shadow: 0 0 28px rgba(0,120,212,.6), 0 0 55px rgba(0,120,212,.25); }
  50%      { box-shadow: 0 0 50px rgba(0,120,212,.95), 0 0 90px rgba(0,120,212,.45); }
}
@keyframes orbPulse4 {
  0%,100% { box-shadow: 0 0 24px rgba(167,139,250,.6), 0 0 50px rgba(167,139,250,.22); }
  50%      { box-shadow: 0 0 44px rgba(167,139,250,.95), 0 0 80px rgba(167,139,250,.42); }
}

/* Remove galaxy canvas styles if present */
.galaxy-canvas { display: none !important; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI SOLAR SYSTEM â€” tilted 3D orrery with favicon planets
   Orbits are rotateX tilted so they look like ellipses in
   3D space. Planets counter-rotate in 3D to stay face-on.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.solar-system {
  position: absolute;
  right: 10%;
  bottom: 1%;
  width: 290px;
  height: 300px;
  z-index: 12;
  pointer-events: none;
  /* 3D perspective so rotateX looks real */
  perspective: 700px;
  perspective-origin: 50% 50%;
}

/* â”€â”€ CENTRAL SUN â”€â”€ */
.solar-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  z-index: 20;
}
.sun-core {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    #ffffff 0%, #40d0ff 20%, #03BFFF 45%, #0419E2 75%, #010820 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff; letter-spacing: .06em;
  box-shadow:
    0 0 0 4px rgba(3,191,255,.55),
    0 0 28px rgba(3,191,255,1),
    0 0 65px rgba(3,191,255,.7),
    0 0 110px rgba(3,191,255,.35);
  animation: sunPulse 3s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% {
    box-shadow: 0 0 0 4px rgba(3,191,255,.55), 0 0 28px rgba(3,191,255,1),
                0 0 65px rgba(3,191,255,.7), 0 0 110px rgba(3,191,255,.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(3,191,255,.7), 0 0 45px rgba(3,191,255,1),
                0 0 100px rgba(3,191,255,.9), 0 0 160px rgba(3,191,255,.55);
  }
}
.sun-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(3,191,255,.65);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: sunRingPulse 3s ease-out infinite;
}
.sun-ring-1 { width: 76px; height: 76px; animation-delay: 0s; }
.sun-ring-2 { width: 76px; height: 76px; animation-delay: 1s; }
.sun-ring-3 { width: 76px; height: 76px; animation-delay: 2s; }
@keyframes sunRingPulse {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(3.8); opacity: 0; }
}

/* â”€â”€ ORBIT RINGS â€” tilted in 3D with rotateX â”€â”€ */
.solar-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform-style: preserve-3d;
}

/* Each orbit: different size, tilt angle, and starting rotateZ offset */
.orbit-1 {
  width: 150px;
  height: 150px;
  margin: -70px 0 0 -70px;
  border: 1px solid rgba(218,119,86,.55);
  box-shadow: 0 0 8px rgba(218,119,86,.2);
  animation: orbit1 5s linear infinite;
}
.orbit-2 {
  width: 220px; height: 220px;
  margin: -110px 0 0 -110px;
  border: 1px solid rgba(116,220,156,.45);
  box-shadow: 0 0 8px rgba(116,220,156,.2);
  animation: orbit2 9s linear infinite;
}
.orbit-3 {
  width: 300px; height: 300px;
  margin: -150px 0 0 -150px;
  border: 1px solid rgba(80,170,255,.45);
  box-shadow: 0 0 8px rgba(80,170,255,.2);
  animation: orbit3 14s linear infinite;
}
.orbit-4 {
  width: 375px;
  height: 375px;
  margin: -192px 0 0 -192px;
  border: 1px solid rgba(167,139,250,.4);
  box-shadow: 0 0 8px rgba(167,139,250,.15);
  animation: orbit4 20s linear infinite;
}

/* Tilt + spin combined. rotateX gives the 3D ellipse look.
   rotateZ is what actually spins the planet around. */
@keyframes orbit1 {
  from { transform: rotateX(70deg) rotateZ(0deg);   }
  to   { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes orbit2 {
  from { transform: rotateX(65deg) rotateZ(120deg);   }
  to   { transform: rotateX(65deg) rotateZ(480deg); }
}
@keyframes orbit3 {
  from { transform: rotateX(72deg) rotateZ(220deg);   }
  to   { transform: rotateX(72deg) rotateZ(580deg); }
}
@keyframes orbit4 {
  from { transform: rotateX(68deg) rotateZ(300deg);   }
  to   { transform: rotateX(68deg) rotateZ(660deg); }
}

/* â”€â”€ PLANETS â”€â”€ at top of ring â”€â”€ */
.solar-planet {
  position: absolute;
  top: 0; left: 50%;
  /* Cancel the parent ring's 3D transforms so icon faces viewer */
  transform-style: preserve-3d;
}

/* The img itself cancels rotateX and rotateZ with inverse transforms */
.solar-planet img {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 50%;
}

/* Each planet: cancel its orbit's rotateX, counter-spin rotateZ,
   then translateX(-50%) translateY(-50%) to center on the ring point */
.orbit-1 .solar-planet img {
  width: 24px;
  height: 24px;
  margin-left: -23px;
  margin-top: -23px;
  box-shadow: 0 0 20px rgba(218,119,86,1), 0 0 45px rgba(218,119,86,.6), 0 0 80px rgba(218,119,86,.3);
  animation: planet1counter 5s linear infinite;
}
.orbit-2 .solar-planet img {
   width: 24px;
  height: 24px;
  margin-left: -25px; margin-top: -25px;
  box-shadow: 0 0 20px rgba(255,255,255,.85), 0 0 45px rgba(116,220,156,.7), 0 0 80px rgba(116,220,156,.35);
  animation: planet2counter 9s linear infinite;
}
.orbit-3 .solar-planet img {
   width: 24px;
  height: 24px;
  margin-left: -26px; margin-top: -26px;
  box-shadow: 0 0 22px rgba(80,170,255,1), 0 0 50px rgba(80,170,255,.65), 0 0 90px rgba(80,170,255,.3);
  animation: planet3counter 14s linear infinite;
}
.orbit-4 .solar-planet img {
  width: 24px;
  height: 24px;
  margin-left: -24px; margin-top: -24px;
  box-shadow: 0 0 20px rgba(255,255,255,.8), 0 0 45px rgba(167,139,250,.7), 0 0 80px rgba(167,139,250,.3);
  animation: planet4counter 20s linear infinite;
}

/* Counter-animations: undo rotateX tilt AND counter-spin rotateZ
   so the planet icon always faces the viewer flat-on */
@keyframes planet1counter {
  from { transform: rotateZ(0deg)    rotateX(-70deg); }
  to   { transform: rotateZ(-360deg) rotateX(-70deg); }
}
@keyframes planet2counter {
  from { transform: rotateZ(-120deg) rotateX(-65deg); }
  to   { transform: rotateZ(-480deg) rotateX(-65deg); }
}
@keyframes planet3counter {
  from { transform: rotateZ(-220deg) rotateX(-72deg); }
  to   { transform: rotateZ(-580deg) rotateX(-72deg); }
}
@keyframes planet4counter {
  from { transform: rotateZ(-300deg) rotateX(-68deg); }
  to   { transform: rotateZ(-660deg) rotateX(-68deg); }
}

/* No labels */
.planet-label { display: none !important; }
.ai-orbs-wrap { display: none !important; }

@media (max-width: 900px) {
  .solar-system { transform: scale(.58); transform-origin: bottom right; }
}






/* â”€â”€â”€ CHANGES: Logo bigger â”€â”€â”€ */
a.logo img { max-width: 270px !important; }

/* â”€â”€â”€ CHANGES: Partner badges colorized (remove grayscale) â”€â”€â”€ */
.logo-card img { filter: none !important; }
.logo-card:hover img { filter: none !important; opacity: 1 !important; }
.logo-card { filter: none; }

/* â”€â”€â”€ CHANGES: Solar system orbit 5 for Gemini â”€â”€â”€ */
.orbit-5 {
  width: 450px;
  height: 450px;
  margin: -235px 0 0 -235px;
  border: 1px solid rgba(66,200,100,.4);
  box-shadow: 0 0 8px rgba(66,200,100,.15);
  animation: orbit5 28s linear infinite;
}
@keyframes orbit5 {
  from { transform: rotateX(66deg) rotateZ(60deg);   }
  to   { transform: rotateX(66deg) rotateZ(420deg); }
}
.orbit-5 .solar-planet img {
  width: 28px;
  height: 28px;
  margin-left: -26px; margin-top: -26px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(66,200,100,.9), 0 0 45px rgba(66,200,100,.6), 0 0 80px rgba(66,200,100,.3);
  animation: planet5counter 28s linear infinite;
}
@keyframes planet5counter {
  from { transform: rotateZ(-60deg)  rotateX(-66deg); }
  to   { transform: rotateZ(-420deg) rotateX(-66deg); }
}

/* â”€â”€â”€ CHANGES: wwdBig h3 font size reduced â”€â”€â”€ */
.wwdBig h3 {
  font-size: clamp(1.2rem, 3vw, 2.2rem) !important;
}


/* â”€â”€â”€ CHANGES: Footer brand - remove huge wordmark styling when using logo â”€â”€â”€ */
.adwest-footer__brand {
  font-size: 1rem !important;
  letter-spacing: normal !important;
  -webkit-text-fill-color: initial;
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: initial;
  padding: 0 !important;
  margin-bottom: 32px;
}

/* â”€â”€â”€ CHANGES: EST 1994 clearer â”€â”€â”€ */
.nc-header-id {
  color: var(--brand-1) !important;
  opacity: 1 !important;
  font-weight: 900 !important;
}
.nc-tag-label {
  color: var(--brand-1) !important;
  opacity: 1 !important;
}
.nc-tag-bracket {
  color: var(--brand-1) !important;
  opacity: 1 !important;
}






/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VIDEO PRELOADER OVERLAY
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#videoPreloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
#videoPreloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#introVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* â”€â”€ Unmute button â”€â”€ */
#unmuteBtn {
  position: absolute;
  bottom: 90px;
  left: 10%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  z-index: 10001;
  transition: background .25s, transform .15s;
  animation: pulseBorder 2s ease-in-out infinite;
}
#unmuteBtn:hover {
  background: rgba(3,191,255,.25);
  border-color: #03BFFF;
  transform: translateX(-50%) scale(1.04);
}
#unmuteBtn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
#unmuteBtn.is-unmuted {
  animation: none;
  background: rgba(3,191,255,.15);
  border-color: rgba(3,191,255,.5);
}
@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(3,191,255,0); }
  50%       { box-shadow: 0 0 0 8px rgba(3,191,255,.18); }
}

/* â”€â”€ Skip button â”€â”€ */
#skipBtn {
  position: absolute;
  top: 28px;
  right: 32px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  z-index: 10001;
  transition: background .2s, color .2s;
}
#skipBtn:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GEO-AI EXPLAINER SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.geo-explainer-section {
  padding: 100px 0 80px;
  /*background: var(--bg2);*/
  position: relative;
  overflow: hidden;
}
/*.geo-explainer-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(3,191,255,.06), transparent 70%);
  pointer-events: none;
}*/
.geo-header { text-align: center; margin-bottom: 64px; }
.geo-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -.03em;
  color: #fff; margin: 12px 0 16px;
}
.geo-title span {
  background: var(--brand-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.geo-subtitle {
  color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto;
}

/* Journey */
.geo-journey {
  max-width: 820px; margin: 0 auto 70px;
  display: flex; flex-direction: column; gap: 0;
}
.geo-arrow {
  text-align: center; color: rgba(3,191,255,.5);
  font-size: 1.4rem; padding: 10px 0;
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* Step card */
.geo-step {
  display: flex; gap: 28px; align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(3,191,255,.12);
  border-radius: 20px; padding: 32px 36px;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.geo-step:hover {
  border-color: rgba(3,191,255,.35);
  box-shadow: 0 0 40px rgba(3,191,255,.08);
}
.geo-step--highlight {
  background: linear-gradient(135deg, rgba(3,191,255,.07), rgba(4,25,226,.07));
  border-color: rgba(3,191,255,.3);
  box-shadow: 0 0 50px rgba(3,191,255,.1);
}
.geo-step-icon {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(3,191,255,.15), rgba(4,25,226,.15));
  border: 1px solid rgba(3,191,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #03BFFF;
}
.geo-step-body { flex: 1; }
.geo-step-num {
  font-size: .72rem; font-weight: 800; letter-spacing: 3px;
  color: rgba(3,191,255,.6); margin-bottom: 8px;
}
.geo-step-body h3 {
  font-size: 1.25rem; font-weight: 800; color: #fff;
  margin: 0 0 10px; letter-spacing: -.01em;
}
.geo-step-body p {
  color: var(--muted); font-size: .97rem; line-height: 1.7; margin: 0 0 18px;
}

/* Chat bubbles */
.geo-step-visual { display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 18px; border-radius: 14px;
  font-size: .9rem; line-height: 1.5;
  max-width: 420px;
}
.user-bubble {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  align-self: flex-start;
}
.ai-bubble {
  background: rgba(3,191,255,.08);
  border: 1px solid rgba(3,191,255,.2);
  color: rgba(255,255,255,.85);
  align-self: flex-start;
}
.ai-bubble--result {
  max-width: 100%;
  border-color: rgba(3,191,255,.4);
  background: rgba(3,191,255,.1);
}
.chat-bubble i { margin-top: 2px; flex-shrink: 0; }

/* Trust pills */
.geo-trust-signals {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(3,191,255,.08);
  border: 1px solid rgba(3,191,255,.22);
  color: rgba(255,255,255,.8);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 100px;
}
.trust-pill i { color: #03BFFF; font-size: .8rem; }

/* Stats row */
.geo-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.geo-stat {
  text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(3,191,255,.12);
  border-radius: 18px; padding: 32px 20px;
  transition: border-color .3s, transform .3s;
}
.geo-stat:hover { border-color: rgba(3,191,255,.35); transform: translateY(-4px); }
.geo-stat-num {
  font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em;
  background: var(--brand-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.geo-stat-num span { font-size: 1.8rem; }
.geo-stat-label { color: var(--muted); font-size: .85rem; line-height: 1.5; }

@media(max-width:768px){
  .geo-stats-row { grid-template-columns: repeat(2,1fr); }
  .geo-step { flex-direction: column; padding: 24px; }
}
@media(max-width:480px){
  .geo-stats-row { grid-template-columns: 1fr 1fr; }
}



/* =====================================================
   ADWEST â€” ADDITIONS (March 2026 revision)
   ===================================================== */


/* --- Unmute button (small, near logo) --- */
.logo-unmute-btn {
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  background: rgba(3,191,255,.12);
  border: 1px solid rgba(3,191,255,.35);
  border-radius: 20px;
  color: rgba(3,191,255,.9);
  cursor: pointer;
  padding: 4px 10px 4px 8px;
  font-size: 10px;
  font-family: inherit;
  letter-spacing: .06em;
  font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.logo-unmute-btn:hover {
  background: rgba(3,191,255,.22);
  border-color: rgba(3,191,255,.65);
  color: #03BFFF;
}
.header__inner { flex-wrap: wrap; gap: 6px; }

/* --- Partners black & white --- */
.logo-bw img {
  filter: grayscale(100%) brightness(.9) contrast(1.1) !important;
  transition: filter .3s;
}
.logo-bw:hover img {
  filter: grayscale(100%) brightness(1.1) contrast(1.15) !important;
}

/* --- OUR SPECIALISTS box --- */
.specialists{
  padding:100px 0 10px 0 ;
}
.specialists-box {
  background: linear-gradient(135deg, rgba(3,191,255,.06), rgba(4,25,226,.07));
  border: 1px solid rgba(3,191,255,.22);
  border-radius: 20px;
  padding: 40px 44px 36px;
  margin: 0 0 52px;
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.specialist-card {
  background: rgba(3,191,255,.06);
  border: 1px solid rgba(3,191,255,.18);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color .25s, background .25s, transform .25s;
}
.specialist-card:hover {
  border-color: rgba(3,191,255,.45);
  background: rgba(3,191,255,.11);
  transform: translateY(-3px);
}
.specialist-team {
  font-size: .95rem;
  font-weight: 800;
  color: #03BFFF;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.specialist-desc {
  font-size: .85rem;
  color: rgba(234,240,255,.72);
  line-height: 1.55;
}

/* --- 4-column flip-card grid --- */
.nc-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 900px) {
  .nc-flip-grid {
    /* grid-template-columns: repeat(4, 1fr); */
  }
}

/* --- Header logo group wrapper --- */
.logo-group-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.logo-group-wrap .logo-unmute-btn {
  margin-left: 4px;
}


/* =====================================================
   VIDEO LOGO â€” header & footer
   ===================================================== */
/*.logo-video {*/
/*  height: 64px;*/
/*  width: auto;*/
/*  max-width: 200px;*/
/*  object-fit: contain;*/
/*  border-radius: 6px;*/
/*  display: block;*/
  /* subtle glow matching brand */
/*  filter: drop-shadow(0 0 10px rgba(3,191,255,.35));*/
/*  transition: filter .3s;*/
/*}*/
/*.logo-video:hover { filter: drop-shadow(0 0 18px rgba(3,191,255,.65)); }*/

/* footer-logo-video — see revision block below */

/* =====================================================
   CLIENTS CAROUSEL â€” enhanced centre pop-out
   ===================================================== */

/* =====================================================
   COVERFLOW SPOTLIGHT CAROUSEL  (replaces old clients slider)
   ===================================================== */

.cf-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* faint spotlight glow behind stage */
.cf-section::before {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:700px; height:400px;
  background: radial-gradient(ellipse, rgba(3,191,255,.10) 0%, transparent 70%);
  pointer-events:none;
}

.cf-header { text-align:center; margin-bottom:56px; }
.clients-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -.03em; color: #fff; margin: 0;
}
.clients-title span {
  background: var(--brand-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* â”€â”€ Stage â”€â”€ */
.cf-stage-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  position: relative;
}

.cf-stage {
  /* fixed viewport â€” cards overflow visually but are clipped at edge */
  width: max-content;
  max-width: 1300px;
  height: 280px;
  position: relative;
  perspective: 1100px;
  /* allow cards to visually overflow */
  overflow: visible;
}

/* â”€â”€ Each card â”€â”€ */
.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(3,191,255,.18);
  background: #0b1222;
  /* GPU composite */
  will-change: transform, opacity;
  transition: transform .55s cubic-bezier(.4,0,.2,1),
              opacity  .55s cubic-bezier(.4,0,.2,1),
              box-shadow .55s cubic-bezier(.4,0,.2,1),
              border-color .55s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.cf-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  pointer-events: none;
  user-select: none;
}

/* â”€â”€ Active / centre card â”€â”€ */
.cf-card.cf-active {
  transform: translate(-50%,-50%) translateZ(0px) rotateY(0deg) scale(1) !important;
  opacity: 1 !important;
  z-index: 10;
  box-shadow:
    0 0 0 2px rgba(3,191,255,.55),
    0 30px 80px rgba(3,191,255,.30),
    0 10px 30px rgba(0,0,0,.60) !important;
  border-color: rgba(3,191,255,.70) !important;
}

/* â”€â”€ Side cards (JS sets inline style for offsetX + rotateY + scale) â”€â”€ */
/* These are set programmatically; CSS just provides the transition base */

/* â”€â”€ Arrows â”€â”€ */
.cf-btn {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(3,191,255,.10);
  border: 1.5px solid rgba(3,191,255,.35);
  color: #03BFFF;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 20;
  transition: background .2s, border-color .2s, transform .2s;
  margin: 0 16px;
}
.cf-btn svg { width: 22px; height: 22px; }
.cf-btn:hover {
  background: rgba(3,191,255,.22);
  border-color: rgba(3,191,255,.7);
  transform: scale(1.1);
}

/* â”€â”€ Dots â”€â”€ */
.cf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.cf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(3,191,255,.25);
  border: 1px solid rgba(3,191,255,.40);
  cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
}
.cf-dot.cf-dot--active {
  background: #03BFFF;
  width: 24px;
  border-radius: 4px;
  transform: none;
  box-shadow: 0 0 10px rgba(3,191,255,.55);
}

/* â”€â”€ Responsive card sizing â”€â”€ */
@media (max-width: 900px) {
  .cf-stage { height: 230px; }
  .cf-card  { width: 280px; height: 190px; }
}
@media (max-width: 540px) {
  .cf-stage { height: 210px; }
  .cf-card  { width: 88vw; max-width: 320px; height: 200px; }
  .cf-btn   { width: 40px; height: 40px; margin: 0 6px; }
}

/* =====================================================
   INLINE-TO-CLASS MIGRATION  (all formerly inline styles)
   ===================================================== */

/* â”€â”€ Utility: hidden icon (replaces display:none on SVGs) â”€â”€ */
.icon-hidden { display: none; }

/* â”€â”€ Utility: brand colours â”€â”€ */
.txt-brand        { color: #03BFFF; }
.txt-brand--bold  { color: #03BFFF; font-weight: 800; }
.txt-orange       { color: #FF6B00; }

/* â”€â”€ Header: logo video anchor â”€â”€ */
.logo.logo--video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  justify-content: center;
}

/* â”€â”€ Header: logo video element (overrides / completes .logo-video) â”€â”€ */
.logo-video {
  height: 150px;
  width: auto;
  max-width: max-content;
  object-fit: contain;
  /*border-radius: 6px;*/
  /* display: block; */
  /*filter: drop-shadow(0 0 10px rgba(3,191,255,.35));*/
  transition: filter .3s;
}
/*.logo-video:hover { filter: drop-shadow(0 0 18px rgba(3,191,255,.65)); }*/

/* â”€â”€ Header: unmute button self-alignment â”€â”€ */
.logo--video .logo-unmute-btn {align-self: center;}

/* â”€â”€ Unmute label (SOUND text in both header & footer buttons) â”€â”€ */
.unmute-label {
  font-size: 9px;
  letter-spacing: .07em;
  font-family: inherit;
}
.footer-unmute-btn .unmute-label { font-size: 10px; }

/* â”€â”€ Hero: AI GENERATION orange text â”€â”€ */
.sub-gen--orange { color: #FF6B00; }

/* â”€â”€ Hero: "If AI can't find..." paragraph â”€â”€ */
.dom-sub-hero {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .02em;
}

/* â”€â”€ GEO-AI landscape text box â”€â”€ */
.geo-landscape-box {
  background: linear-gradient(135deg, rgba(3,191,255,.07), rgba(4,25,226,.07));
  border: 1px solid rgba(3,191,255,.18);
  border-radius: 18px;
  padding: 36px 40px;
  margin: 0 auto;
  max-width: 1100px;
}
.geo-landscape-text {
  color: rgba(234,240,255,.88);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0;
}

/* â”€â”€ Gemini icon in AI platforms row â”€â”€ */
.ai-plat-img { filter: brightness(1); }

/* â”€â”€ About section: tag label active state â”€â”€ */
.nc-tag-label--active {
  color: #03BFFF;
  opacity: 1;
}

/* â”€â”€ About section: EST::1994 header id â”€â”€ */
.nc-header-id--active {
  color: #03BFFF;
  opacity: 1;
  font-weight: 900;
  font-size: 1.1rem;
}

/* â”€â”€ SVG ring orbit dots â”€â”€ */
.svg-dot--1 { filter: drop-shadow(0 0 6px #03BFFF); }
.svg-dot--2 { filter: drop-shadow(0 0 5px #0419E2); }
.svg-dot--3 { filter: drop-shadow(0 0 4px #fff); }

/* â”€â”€ Flip card: BUILT FOR SCALE num variant â”€â”€ */
.flip-num--scale {
  /* font-size: 1rem; */
  /* line-height: 1.2; */
}

/* â”€â”€ Flip card: SCALE back-num smaller variant â”€â”€ */
.flip-back-num--sm {/* font-size: .95rem; */}

/* â”€â”€ Section eyebrow: centred variants â”€â”€ */
.section-eyebrow--centered {
  text-align: center;
}
.section-eyebrow--specialists { margin-bottom: 16px; }
.section-eyebrow--clients     { margin-bottom: 10px; }

/* â”€â”€ GEO section: CTA wrapper â”€â”€ */
.geo-cta-wrap {
  text-align: center;
  margin-top: 52px;
}

/* â”€â”€ Coverflow: hidden data block â”€â”€ */
.cf-data-hidden { display: none; }

/* â”€â”€ Contact wrap: entrance delay â”€â”€ */
.contact-wrap--delayed { transition-delay: 250ms; }

/* â”€â”€ Footer brand: centred column layout â”€â”€ */
.footer-brand--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* â”€â”€ Footer logo video (overrides / completes .footer-logo-video) â”€â”€ */
/* footer-logo-video — see revision block below */

/* â”€â”€ Starfield canvas â”€â”€ */
.starfield-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* =====================================================
   JS-DRIVEN CLASS REPLACEMENTS
   (replaces all remaining style.display / style.opacity
    manipulations that were previously done inline by JS)
   ===================================================== */

/* Video play button â€” hide/show states */
.is-hidden  { display: none !important; }
.is-visible { display: block !important; }

/* Logo-group stagger delay â€” driven by CSS custom property set via JS */
.logo-group {
  transition-delay: var(--delay, 0ms);
}

/* AI card image hover (was img.style.opacity in JS) */
.logo-card.ai img          { opacity: .32; transition: opacity .25s; }
.logo-card.ai.ai-card--hover img { opacity: .85; }

/* Coverflow â€” hidden cards (replaces style.cssText block) */
.cf-card--hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  transition: none !important;
}

/* â”€â”€ Cursor click ripple (was style.cssText + injected <style> in JS) â”€â”€ */
@keyframes gcRipple {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(9); opacity: 0;  }
}
.gc-ripple {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(3,191,255,.7);
  transform: translate(-50%,-50%) scale(1);
  pointer-events: none;
  z-index: 999997;
  animation: gcRipple .6s ease-out forwards;
}

/* =====================================================
   REVISION — March 2026
   ===================================================== */

/* ── Clients card sizing (from removed inline <style>) ── */
.cf-card        { width: 400px; height: 280px; }
.cf-card img    { object-position: top left; }
.clients-title  { font-size: clamp(2rem,4vw,3rem); font-weight: 900; letter-spacing: -.03em; color: #fff; margin: 0; }
.clients-title span { background: var(--brand-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Header: gradient background so logo blends in ── */
/*.header--gradient {
  background: linear-gradient(180deg, rgba(4,6,20,.98) 0%, rgba(7,10,26,.92) 100%);
  border-bottom: 1px solid rgba(3,191,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 80;
}
*/
/* ── Header logo video — larger, blend-mode removes the light box ── */
.logo-video {
  height: 160px !important;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  /*border-radius: 0 !important;  
  display: block;
  mix-blend-mode: screen;        
  filter: brightness(1.15) contrast(1.05);
  background: transparent;*/
}
/*.logo-video--blend {
  mix-blend-mode: screen;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
*/


/* ── Footer logo video — larger, blend-mode removes box ── */
/*.footer-logo-video,
.footer-logo-video--blend {
  max-width: 480px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  display: block;
  mix-blend-mode: screen;        
  filter: brightness(1.2) contrast(1.05);
  background: transparent !important;
}*/

/* ── Remove any box/border around logo wrapper ── */
.logo--video,
.logo-group-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Logo-group-wrap: allow taller logo in header ── */
.logo-group-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* ── Reduce hero section top padding to give larger logo room ── */
.dom-section {
  margin-top: 0 !important;
}

/* ── Header inner — accommodate taller logo ── */
.header__inner {
  padding: 8px 0 !important;
  align-items: center;
}
/*
@media (max-width: 768px) {
  .logo-video       { height: 100px !important; max-width: 220px; }
  .footer-logo-video{ max-width: 300px !important; }
}
*/


/* Header: NOT sticky — scrolls with the page */
.header--gradient {
  position: relative !important;
  top: auto !important;
}



/* =====================================================
   FOOTER — VIDEO BACKGROUND (full bleed, no box)
   Video fills entire footer as background layer.
   Content sits on top via z-index.
   ===================================================== */

/* ═══════════════════════════════════════════════════
   FOOTER — VIDEO FILLS ENTIRE FOOTER AS BACKGROUND
   The Transparent_Final.mp4 gradient becomes the
   footer background. Content sits on top.
   ═══════════════════════════════════════════════════ */

.adwest-footer--video-bg {
  position: relative;
  background: #04060c !important;  /* matches video dark — fallback */
  padding: 0 !important;
  overflow: hidden;
  border-top: none !important;
}

/* ── Video fills 100% width & height of footer ── */
.footer-video-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 1;
}

/* Gentle fade at bottom so text reads cleanly */
.footer-video-bg__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15)  0%,
    rgba(0,0,0,.10) 35%,
    rgba(4,6,14,.55) 60%,
    rgba(4,6,14,.82) 78%,
    rgba(4,6,14,.96) 92%,
    rgba(4,6,14,1)   100%
  );
}

/* ── All footer content above video ── */
.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

/* ── Sound button sits below the logo in the video ── */
.footer-sound-row {
  display: flex;
  justify-content: center;
  padding: 300px 0 24px;
}

/* ── Nav / text content ── */
.adwest-footer--video-bg .adwest-footer__top,
.adwest-footer--video-bg .adwest-footer__bottom,
.adwest-footer--video-bg .adwest-footer__divider {
  position: relative;
  z-index: 2;
}

/* Text shadow so links pop over video */
.adwest-footer--video-bg .adwest-footer__col a,
.adwest-footer--video-bg .adwest-footer__contact,
.adwest-footer--video-bg .adwest-footer__contact a,
.adwest-footer--video-bg .adwest-footer__right p,
.adwest-footer--video-bg .adwest-footer__copy,
.adwest-footer--video-bg .adwest-footer__legal a {
  text-shadow: 0 1px 8px rgba(0,0,0,.85);
}

@media (max-width: 900px) {
  .footer-sound-row  { padding-top: 220px; }
  .footer-video-bg   { object-position: center center; }
}
@media (max-width: 540px) {
  .footer-sound-row  { padding-top: 160px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — FINAL: dark page bg, video as logo (not BG)
   ═══════════════════════════════════════════════════════ */

/* Match the page background exactly — seamless transition */
/* Footer — matches page bg exactly */
/*.adwest-footer--dark {
  background: #070a12 !important;
  border-top: 1px solid rgba(3,191,255,.12);
  padding-top: 0 !important;
}*/

/* Video logo row — same dark bg as header so mix-blend-mode:screen works */
.footer-logo-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  padding: 32px 0 24px;
  width: max-content;
  justify-content: center !IMPORTANT;
  margin: auto;
}

/* The video logo — transparent bg, screen blend removes the black */
.footer-logo-vid {
  width: 420px;
  max-width: 90%;
  height: auto;
  display: block;
 /* background: transparent; 
  mix-blend-mode: screen;   
  filter: brightness(1.15) contrast(1.05);
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;*/
}

@media (max-width: 768px) {
  .footer-logo-vid { width: 260px; }
  .footer-logo-row { padding: 24px 0 16px; }
}

/* =====================================================
   SOUND BUTTON REPOSITIONING — March 2026
   ===================================================== */

/* Header logo group — column layout so button sits below logo */
.logo-group-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Sound button below and slightly left of header logo */
.logo-unmute-btn--below {
  margin-top: 8px;
  margin-left: 12px;
  align-self: flex-start;
}

/* Footer sound button — more space above, pushed below the GIF text */
.footer-sound-btn-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Footer logo row stays column-flex centred */

/* SEO text — prevent demand wrapping to the right */
.wwdText {
  max-width: 100%;
}


    .cf-card {
    width: 380px;
    height: 260px;
}
.dom-w>span {
   font-size: clamp(2rem, 4.25vw, 5.25rem) !important;
}
.sub-gen {
    font-size: clamp(1rem, 2.75vw, 3rem);
}
.footer-logo-vid {
    width: 500px;
    max-width: 100%;
}
.footer-logo-row {
    justify-content: center;
}
a.logo img {
    max-width: 520px !important;
}
.footer-logo-row {
    padding: 42px 0 24px;
}

/*.logo.logo--video {*/
/*    flex-direction: unset;*/
/*}*/

.cf-card img {
    object-position: left;
}

.cf-card-link{
  display:block;
  width:100%;
  height:100%;
}

.cf-card-link img,
.cf-card > img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.cf-card {
  cursor: pointer;
}

.cf-card.cf-active {
  cursor: pointer;
}
/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS — Full Fix
   ===================================================== */

/* ── GLOBAL: prevent horizontal overflow ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── CONTAINER: proper padding on all screens ── */
.container {
  width: 100%;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .header__inner {
    padding: 10px 0;
    gap: 8px;
  }
  .nav { display: none !important; }
  .menu {/* display: inline-flex !important; */}
  .header__cta .btn-primary { font-size: .68rem; padding: 10px 18px; }
}

@media (max-width: 480px) {
  .logo-gif, a.logo img {
    max-width: 180px !important;
    height: auto !important;
  }
  .logo-video { height: 80px !important; }
  .header__cta .btn-primary span {
    font-size: .62rem;
    letter-spacing: .06em;
  }
}

/* ══════════════════════════════════════════════════
   HERO (dom-section)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dom-section { padding: 16px; }
  .dom-content {
    padding: 40px 24px 48px !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    min-height: unset !important;
  }
  .dom-w > span {
    font-size: clamp(2.8rem, 14vw, 5rem) !important;
  }
  .sub-gen { font-size: clamp(1.2rem, 7vw, 2.5rem) !important; }
  .dom-sub-hero { font-size: 1rem !important; }
  .dom-ctas { margin-top: 28px; flex-wrap: wrap; }

  /* Solar system: scale down + reposition so it doesn't overflow */
  .solar-system {
    right: 2%;
    bottom: 2%;
    transform: scale(0.45);
    transform-origin: bottom right;
  }
}

@media (max-width: 480px) {
  .dom-section { padding: 10px; }
  .dom-content { padding: 28px 18px 36px !important; }
  .dom-w > span {font-size: clamp(2rem, 13vw, 3rem) !important;}

  /* Hide solar system on very small screens to avoid overlap */
  .solar-system { display: none; }
}

/* ══════════════════════════════════════════════════
   GEO LANDSCAPE BOX
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .geo-landscape-box {
    padding: 24px 20px;
    margin: 0 16px;
    border-radius: 14px;
  }
  .geo-landscape-text { font-size: .95rem; line-height: 1.7; }
}

/* ══════════════════════════════════════════════════
   AI PLATFORMS ROW
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ai-platforms-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }
  .ai-platforms-logos {
    gap: 10px;
    justify-content: flex-start;
  }
  .ai-plat-card { padding: 8px 12px; }
  .ai-plat-card img { width: 80px; height: 45px; }
  .ai-platforms-label { font-size: .7rem; }
}

@media (max-width: 480px) {
  /*.ai-plat-card img { width: 60px; height: 36px; }*/
  .ai-plat-card { padding: 6px 10px; }
}

/* ══════════════════════════════════════════════════
   PARTNERS SECTION
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .partners { padding: 40px 16px; }
  .logo-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .logo-grid.cols-5,
  .logo-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   ABOUT / NEURAL SECTION
══════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .nc { padding: 60px 0 0; }
  .nc-header {
    padding: 0 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nc-header-line { display: none; }
  .nc-split { grid-template-columns: 1fr !important; }
  .nc-left {
    padding: 0 16px !important;
    border-right: none !important;
  }
  .nc-right { padding: 24px 16px 0 !important; }
  .nc-history { padding: 48px 16px 0 !important; }
  .history-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .nc-rings { width: 240px; height: 240px; }
}

@media (max-width: 600px) {
  .nc-oversize { font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: -1px; }
  .nc-flip-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .flip-card { height: 180px; }
  .flip-num,.flip-back-num { font-size: 1.1rem; }
.flip-back{
    padding:10px;
}
  .flip-label { font-size: .7rem; }
}
@media (max-width: 300px) {
  .flip-card { height: 180px; }
  .flip-num,.flip-back-num { font-size: 0.9rem; }
.flip-back{
    padding:8px;
}
  .flip-label { font-size: .6rem; }
}

/* ══════════════════════════════════════════════════
   SPECIALISTS
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .specialists { padding: 60px 0 0; }
  .specialists-box {
    padding: 28px 20px 24px;
    margin: 0 16px 32px;
  }
  .specialists-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .specialists-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SERVICES (What We Do)
══════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .whatWeDo { padding: 60px 0; }
  .wwdList { gap: 20px; margin-top: 40px; }
  .wwdRow,
  .wwdRow--right { grid-template-columns: 1fr !important; padding: 28px 0 !important; }
  .wwdRow--left,
  .wwdRow--right { padding-left: 24px !important; padding-right: 24px !important; }
  .wwdBig--right { justify-content: flex-end;
        text-align: left !important;
        grid-row: 1;
        flex-direction: row-reverse; }
  .wwdRow--right .wwdText { justify-self: start !important; text-align: left !important; grid-row: 2;}
  .wwdRail { left: 10px; transform: none; }
}

@media (max-width: 600px) {
  .wwdBig h3 { font-size: clamp(1.6rem, 7vw, 2.8rem) !important; }
  .wwdIcon { width: 42px; height: 42px; font-size: 1.3rem; }
  .wwdText { font-size: .95rem !important; }
}

/* ══════════════════════════════════════════════════
   GEO-AI EXPLAINER
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .geo-explainer-section { padding: 60px 0; }
  .geo-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .geo-journey { gap: 0; }
  .geo-step {
    flex-direction: column;
    padding: 24px 16px;
    gap: 14px;
  }
  .geo-stats-row { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .geo-stat-num { font-size: 2.4rem; }
}

@media (max-width: 540px) {
  .geo-stats-row { grid-template-columns: 1fr 1fr !important; }
  .geo-stat { padding: 20px 16px; }
  .geo-stat-num { font-size: 2rem; }
  .geo-step-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .trust-pill { font-size: .7rem; padding: 6px 10px; }
  .chat-bubble { font-size: .85rem; padding: 12px 14px; }
  .geo-cta-wrap { text-align: center; }
}

/* ══════════════════════════════════════════════════
   CLIENTS COVERFLOW
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cf-card { width: 280px !important; height: 190px !important; }
  .cf-stage { height: 230px; }
  .cf-btn { width: 44px; height: 44px; }

}

@media (max-width: 540px) {
  .cf-card { width: min(85vw, 300px) !important; height: 200px !important; }
  .cf-stage { height: 220px; }
  .cf-stage-wrap { gap: 8px; }
  .cf-btn { width: 36px; height: 36px; margin: 0 4px; }

button#cfNext {}
}

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .faq-q { font-size: .95rem; padding: 18px 18px; }
  .faq-a { font-size: .9rem; padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .contact-section { padding: clamp(60px, 6vw, 100px) 0; }
  .contact-wrap { padding: 20px !important; border-radius: 20px; }
  .contact-title { font-size: clamp(1.7rem, 5vw, 2.4rem) !important; }
  .contact-chips { flex-direction: column; gap: 10px; }
  .chip { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .contact-left { padding-bottom: 0; }
  .contact-chips .chip { width: 100%; }
  .contact-form { padding: 16px; border-radius: 18px; }
  .f-input { padding: 12px 14px; }
  .contact-submit { font-size: .9rem; padding: 14px; }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .adwest-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .adwest-footer__top {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .adwest-footer__bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center;
  }
  .adwest-footer__legal {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  .footer-logo-vid { width: 220px !important; }
  .footer-content { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════
   SECTION PADDING — universal tightening for mobile
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nc-history { padding: 40px 16px 0 !important; }
  .history-card { padding: 22px 18px; }
  .history-year { font-size: 1.3rem !important; }
  .history-desc { font-size: .9rem; }

  .section-eyebrow { font-size: .55rem !important; letter-spacing: .1em !important; }

  /* Testimonials */
  .section { padding: 60px 16px 80px !important; }
  .carousel-col { height: 380px; }

  /* GEO landscape */
  .geo-landscape-box { margin: 0 16px; }
}

/* ══════════════════════════════════════════════════
   MISC OVERFLOW GUARDS
══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Prevent any absolute/fixed elements from widening page */
  .liquid-canvas,
  #liquidCanvas,
  #starfield {
    max-width: 100vw !important;
  }

  /* Flip card grid: 2 cols on mobile */
  .nc-flip-grid { grid-template-columns: 1fr 1fr !important; }

  /* nc-header tag */
  .nc-tag-label { font-size: .7rem; letter-spacing: 2px; }
}

/* ── logo-gif: base sizing (header GIF logo) ── */
.logo-gif {
  max-width: 260px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-gif { max-width: 160px; }
  a.logo img { max-width: 160px !important; }
}

/*@media (max-width: 480px) {
  .logo-gif { max-width: 140px; }
  a.logo img { max-width: 140px !important; }
  .logo-video { height: 70px !important; }
}*/

/* ── footer-logo-vid: limit on small screens ── */
@media (max-width: 480px) {
  /*.footer-logo-vid { width: 180px !important; max-width: 80vw !important; }*/
  .footer-logo-row { width: 100%; align-items: center; }
}

/* ── Make sure nc-header doesn't overflow on small screens ── */
@media (max-width: 600px) {
  .nc-header { 
    display: flex; 
    flex-wrap: wrap; 
    padding: 0 16px !important;
    gap: 8px;
    margin-bottom: 28px;
  }
  .nc-tag-label { font-size: .65rem; letter-spacing: 1.5px; }
  .nc-header-id { font-size: .75rem; }
}

/* ── geo-step-icon: smaller on mobile ── */
@media (max-width: 480px) {
  .geo-step-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .geo-step-num { font-size: 1.8rem; }
  .geo-step-body h3 { font-size: 1.05rem; }
  .geo-step-body p { font-size: .88rem; }
}

/* =====================================================
   TARGETED FIXES — Services layout, Solar system,
   Banner height, Header drawer polish
   ===================================================== */

/* ── 1. SERVICES: icon LEFT + heading TOP layout ──────
   Restructure wwdBig so icon sits left of heading,
   and the whole block stacks: [icon + heading] on top,
   description text below — on ALL screen sizes.
─────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .wwdRow,
  .wwdRow--left,
  .wwdRow--right {
    padding: 28px 20px !important;
  }
  .wwdBig h3 { font-size: clamp(1.3rem, 5vw, 2rem) !important; }
  .wwdIcon { width: 40px !important; height: 40px !important; font-size: 1.1rem !important; }
  .wwdText { font-size: .95rem !important; }
  .wwdRail { left: 10px !important; }
}


/* ── 2. SOLAR SYSTEM: always visible ─────────────────
   Override the display:none we added for ≤480px,
   and ensure it's always scaled to fit.
─────────────────────────────────────────────────────── */
.solar-system {
  display: block !important;   /* never hide it */
}

/* Scale down progressively on small screens */
@media (max-width: 768px) {
  .solar-system {
    transform: scale(0.52) !important;
    transform-origin: bottom right !important;
    right: 12% !important;
    bottom: 0% !important;
  }
}
@media (max-width: 480px) {
  .solar-system {
    transform: scale(.6) !important;
    transform-origin: bottom!important;
    /* right: -5% !important; */
    bottom: 1% !important;
  }
}
@media (max-width: 380px) {
  .solar-system {
    transform: scale(0.30) !important;
    transform-origin: bottom right !important;
  }
}


/* ── 3. BANNER: reduce min-height ─────────────────────
   100vh is very tall, especially on mobile.
   Reduce to a comfortable auto-height.
─────────────────────────────────────────────────────── */
.dom-section {
  min-height: unset !important;
  padding: 20px !important;
}
.dom-card {
  min-height: unset !important;
}
.dom-content {
  min-height: unset !important;
  padding: 52px 60px 56px !important;
}

@media (max-width: 1024px) {
  .dom-content { padding: 44px 36px 48px !important; }
}
@media (max-width: 768px) {
  .dom-section  { padding: 14px !important; }
  .dom-content  { padding: 36px 24px 40px !important; }
}
@media (max-width: 480px) {
  .dom-section  {/* padding: 10px !important; */}
  .dom-content  { padding: 28px 18px 32px !important; }
}


/* ── 4. HEADER DRAWER: better link styling ────────────
   Larger, clearer nav links in mobile drawer.
─────────────────────────────────────────────────────── */
.drawer {
  background: rgba(6, 9, 22, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(3,191,255,.15) !important;
      padding-left: 7px;
    padding-right: 7px;
}
.drawer__inner {
  padding: 20px 0 22px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  align-items: stretch !important;
}
.drawer a {
  padding: 14px 18px !important;
  border: none !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.04) !important;
  color: rgba(255,255,255,.88) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: .02em;
  display: flex !important;
  align-items: center !important;
  transition: background .2s, color .2s, padding-left .2s !important;
  text-decoration: none;
}
.drawer a:hover,
.drawer a:active {
  background: rgba(3,191,255,.10) !important;
  color: #03BFFF !important;
  padding-left: 24px !important;
}
/* "Let's talk" CTA button in drawer */
.drawer a.btn--nav {
  margin-top: 8px !important;
  background: var(--brand-grad) !important;
  color: #fff !important;
  border-radius: 999px !important;
  text-align: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
  letter-spacing: .05em;
  box-shadow: 0 8px 28px rgba(4,25,226,.35) !important;
  padding: 15px 18px !important;
}
.drawer a.btn--nav:hover {
  padding-left: 18px !important;
  filter: brightness(1.1);
}