/* ═══════════════════════════════════════════════════════
   KEPLER VISUALS — Design System v3
   Display: Marzo (local TTF) · UI: Jura · Body: Inter
   Palette: Black / White / Silver + Holographic hints
═══════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Marzo';
  src: url('website/assets/FontsFree-Net-marzo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jura', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, video { display: block; }
::-webkit-scrollbar { width: 1px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #444; }

/* ── Variables ── */
:root {
  --black:    #000000;
  --dark:     #080808;
  --dark2:    #0f0f0f;
  --dark3:    #181818;
  --white:    #ffffff;
  --silver:   #c0c0c0;
  --silver2:  #888888;
  --silver3:  #444444;
  /* Aliases used across sub-pages */
  --silver-dim: #888888;
  --silver-lt:  #c0c0c0;
  --dark-2:     #0f0f0f;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Holographic palette — ultra-subtle */
  --holo-1: rgba(120,200,255,0.12);
  --holo-2: rgba(200,120,255,0.10);
  --holo-3: rgba(120,255,200,0.08);
  --holo-4: rgba(255,200,120,0.07);
}

/* ════════════════════════════
   HOLOGRAPHIC SYSTEM
════════════════════════════ */

@keyframes holo-rotate {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes holo-shimmer {
  0%,100% { opacity: 0; }
  50%      { opacity: 1; }
}

/* Animated rainbow border — applied via wrapper trick */
.holo-border {
  position: relative;
}
.holo-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.5) 0%,
    rgba(140,210,255,0.4) 15%,
    rgba(200,140,255,0.4) 30%,
    rgba(140,255,200,0.4) 45%,
    rgba(255,220,140,0.4) 60%,
    rgba(255,140,180,0.3) 75%,
    rgba(255,255,255,0.5) 100%
  );
  background-size: 400% 400%;
  animation: holo-rotate 5s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}
.holo-border:hover::before { opacity: 1; }

/* Glass card */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 12px 60px rgba(0,0,0,0.7),
    0 0 0 0.5px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    inset 1px 0 0 rgba(255,255,255,0.04);
}

/* Holographic surface shimmer overlay */
.holo-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 20%,
    rgba(140,210,255,0.03) 35%,
    rgba(200,140,255,0.03) 50%,
    rgba(140,255,200,0.02) 65%,
    transparent 80%
  );
  background-size: 300% 300%;
  animation: holo-rotate 10s ease infinite;
  pointer-events: none;
  border-radius: inherit;
}

/* ════════════════════════════
   CUSTOM CURSOR (dot only — ring removed)
════════════════════════════ */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width .25s, height .25s, opacity .25s;
}
#cursor-ring { display: none !important; }
#cursor.hov { width: 52px; height: 52px; background: rgba(255,255,255,.06); border: 1px solid rgba(200,220,255,.4); }

/* Hide custom cursor on touch / mobile devices */
@media (hover: none), (pointer: coarse) {
  #cursor { display: none !important; }
  body { cursor: auto !important; }
}

/* ════════════════════════════
   NAVIGATION
════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease), padding .4s var(--ease);
}
nav.scrolled {
  padding: 16px 60px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 1px 0 rgba(140,210,255,.04), 0 4px 30px rgba(0,0,0,.6);
}

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 40px; width: 40px; object-fit: contain; transition: opacity .3s; }
.nav-logo:hover img { opacity: .75; }
.nav-logo-text {
  font-family: 'Jura', sans-serif;
  font-weight: 400; font-size: 17px;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.85); line-height: 1.3;
}
.nav-logo-text span {
  display: block; font-size: 12px; font-weight: 300;
  letter-spacing: .45em; color: var(--silver2); margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links li { position: relative; }

.nav-links > li > a {
  font-family: 'Jura', sans-serif;
  font-weight: 400; font-size: 14px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--silver); position: relative;
  transition: color .3s;
  padding-bottom: 2px;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,210,255,.6), var(--white), rgba(200,140,255,.6), transparent);
  transition: width .5s var(--ease);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* Dropdown — JS-toggled */
.nav-dropdown {
  position: absolute; top: calc(100% + 18px); left: -16px;
  min-width: 200px;
  background: rgba(6,6,6,.92);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 40px rgba(0,0,0,.7), 0 0 0 1px rgba(140,210,255,.04);
  padding: 10px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav-dropdown.open {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: 11px 22px;
  font-family: 'Jura', sans-serif; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver2); transition: color .25s, padding-left .25s, background .25s;
}
.nav-dropdown a:hover {
  color: var(--white); padding-left: 28px;
  background: rgba(255,255,255,.03);
}

/* CTA button in nav — transparent core, rainbow stroke only (mask technique) */
.nav-cta-wrap { overflow: visible !important; }
.nav-cta {
  font-family: 'Jura', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white) !important;
  background: transparent;
  border: none;
  border-radius: 100px;
  padding: 8px 28px 18px;
  display: inline-block;
  position: relative;
  isolation: isolate;
  transition: transform .3s, box-shadow .3s, background .35s;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 100px;
  padding: 1.5px; /* border thickness */
  background: linear-gradient(90deg,
    rgba(140,210,255,1) 0%,
    rgba(220,140,255,1) 25%,
    rgba(255,170,100,.9) 50%,
    rgba(100,255,200,1) 75%,
    rgba(140,210,255,1) 100%
  );
  background-size: 300% 100%;
  animation: rainbow-border 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(140,210,255,.25);
  background: rgba(140,210,255,.13);
}

/* Hamburger */
.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 1px; background: var(--white); transition: transform .3s, opacity .3s; }
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(30px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
.mob-menu a {
  font-family: 'Jura', sans-serif; font-size: 34px; font-weight: 300;
  letter-spacing: .12em; text-transform: uppercase; color: var(--white);
  transition: color .3s;
}
.mob-menu a:hover { color: var(--silver2); }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative; height: 100vh; width: 100%;
  overflow: hidden; display: flex;
  align-items: flex-end; justify-content: flex-start;
}
.hero-video, .hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
/* Hero iframe — viewport-unit cover (object-fit:cover doesn't work on iframes) */
iframe.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  pointer-events: none;
  border: none;
}
/* Very light overlay — video must breathe through */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.20) 50%,
    rgba(0,0,0,.05) 100%
  ),
  linear-gradient(
    to top,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.10) 40%,
    transparent 70%
  );
}
/* Content sits at bottom-left, film-title style */
.hero-content {
  position: relative; z-index: 2;
  padding: 0 70px 80px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: 'Jura', sans-serif; font-weight: 400; font-size: 10px;
  letter-spacing: .65em; text-transform: uppercase; color: var(--silver2);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .9s var(--ease) .4s forwards;
  display: none; /* eyebrow hidden globally */
}
.hero-title {
  font-family: 'Marzo', serif; font-weight: 400;
  font-size: clamp(36px, 4.2vw, 86px);
  line-height: 1.08; letter-spacing: .04em; color: var(--white);
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .7s forwards;
}
.hero-title .ai-t { font-weight: 400; color: rgba(255,255,255,.45); }
.hero-title .hu-t { font-weight: 700; }
.hero-sub {
  font-family: 'Jura', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: .35em; text-transform: uppercase; color: var(--silver2);
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp .9s var(--ease) 1s forwards;
}
.hero-sub2 {
  font-family: 'Jura', sans-serif; font-style: italic; font-size: 16px;
  font-weight: 300; color: rgba(255,255,255,.4); letter-spacing: .08em;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp .9s var(--ease) 1.1s forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp .9s var(--ease) 1.3s forwards;
}
/* Scroll indicator — right side */
.hero-scroll {
  position: absolute; right: 44px; bottom: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s ease 2.4s forwards;
}
.hero-scroll span {
  font-family: 'Jura', sans-serif; font-size: 9px;
  letter-spacing: .5em; text-transform: uppercase; color: var(--silver2);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--silver2), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(.6); }
}

/* Page hero (sub-pages) */
.page-hero {
  position: relative; height: 56vh; min-height: 380px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.38) saturate(.8);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.88));
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 70px 64px;
}

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Jura', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--black); background: var(--white);
  padding: 14px 40px; border-radius: 10px;
  transition: background .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(140,210,255,.15), rgba(200,140,255,.1), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--silver); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Jura', sans-serif; font-weight: 400;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  padding: 14px 40px; border-radius: 10px;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.btn-ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.btn-ghost:hover::before { transform: translateX(100%); }
.btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3), 0 0 20px rgba(140,210,255,.05);
}

.arrow-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Jura', sans-serif; font-weight: 400;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: gap .3s, color .3s;
}
.arrow-link::after {
  content: ''; display: inline-block;
  width: 20px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.5), rgba(140,210,255,.6));
  transition: width .4s var(--ease);
}
.arrow-link:hover { gap: 16px; color: var(--white); }
.arrow-link:hover::after { width: 36px; }

/* ════════════════════════════
   LAYOUT
════════════════════════════ */
section { padding: 120px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 70px; }

.sec-label {
  font-family: 'Jura', sans-serif; font-weight: 400; font-size: 9.5px;
  letter-spacing: .65em; text-transform: uppercase; color: var(--silver2);
  margin-bottom: 16px;
}
.sec-title {
  font-family: 'Marzo', serif; font-weight: 400;
  font-size: clamp(28px, 3.8vw, 62px);
  line-height: 1.12; color: var(--white); letter-spacing: .04em;
}
.sec-title em {
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.48);
  font-family: 'Jura', sans-serif;
  font-size: 1em; letter-spacing: .02em;
}
.sec-body {
  font-family: 'Jura', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 2.1; color: var(--silver2); letter-spacing: .03em;
}
.divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.2), rgba(140,210,255,.15), transparent);
  margin: 26px 0;
}

/* ════════════════════════════
   MARQUEE
════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(4,4,4,1);
  position: relative;
}
.marquee-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 30%,
    rgba(140,210,255,.015) 50%,
    rgba(200,140,255,.01) 60%,
    transparent 70%
  );
  background-size: 300% 100%;
  animation: holo-rotate 12s ease infinite;
  pointer-events: none;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 36s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 38px;
  padding: 18px 38px; flex-shrink: 0;
  font-family: 'Jura', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: .48em; text-transform: uppercase; color: var(--silver2);
}
.marquee-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--silver2); flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════
   GALLERY ITEMS
════════════════════════════ */
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
}
/* Gallery Vimeo iframes — fill container */
.gallery-item iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border: none;
}
/* AI strip iframes — default fill; JS overrides to 225% wide for landscape videos */
.ai-strip-item iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border: none;
}
/* Landscape override applied by JS after Vimeo API returns video dimensions */
.ai-strip-item.is-landscape iframe {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 225%; height: 100%;
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.68) saturate(.8);
  transition: transform 1s var(--ease), filter .6s;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
  filter: brightness(.88) saturate(1.05);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%);
  opacity: 0; transition: opacity .5s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute; bottom: 18px; left: 22px;
  font-family: 'Jura', sans-serif; font-size: 9.5px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--white);
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s, transform .4s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* Fullscreen hint removed */

/* ════════════════════════════
   FORMS
════════════════════════════ */
.kv-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-family: 'Jura', sans-serif; font-size: 11px;
  letter-spacing: .45em; text-transform: uppercase; color: rgba(140,210,255,.8);
  font-weight: 500;
}
.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-group select,
.form-group textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 13px 0;
  font-family: 'Jura', sans-serif; font-size: 15px;
  font-weight: 300; color: rgba(255,255,255,.85); outline: none;
  transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
  width: 100%;
}
.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(140,210,255,.4);
  box-shadow: 0 1px 0 rgba(140,210,255,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.18); }
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: none; }
.form-submit {
  align-self: flex-start;
  font-family: 'Jura', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--black); background: var(--white);
  border: none; padding: 15px 44px; border-radius: 10px;
  cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.form-submit:hover { background: var(--silver); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 64px 0 36px;
  position: relative; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(140,210,255,.2) 30%,
    rgba(200,140,255,.2) 50%,
    rgba(140,255,200,.15) 70%,
    transparent 100%
  );
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 52px;
}
.footer-brand img { height: 44px; width: 44px; object-fit: contain; margin-bottom: 18px; }
.footer-brand-name {
  font-family: 'Jura', sans-serif; font-weight: 400; font-size: 13px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 12px;
}
.footer-brand p {
  font-family: 'Jura', sans-serif; font-size: 13px;
  font-weight: 300; line-height: 1.8; color: var(--silver2);
}
.footer-col-title {
  font-family: 'Jura', sans-serif; font-weight: 500; font-size: 9.5px;
  letter-spacing: .5em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-family: 'Jura', sans-serif; font-size: 13px;
  font-weight: 300; color: var(--silver2); transition: color .3s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: 'Jura', sans-serif; font-size: 9.5px;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.2);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: 'Jura', sans-serif; font-size: 9.5px;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.2); transition: color .3s;
}
.footer-legal a:hover { color: var(--silver2); }

/* ════════════════════════════
   MODALS / LIGHTBOX
════════════════════════════ */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.97); z-index: 2000;
  align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal-inner { position: relative; width: min(92vw, 1200px); }
.modal-inner video { width: 100%; display: block; }
.modal-close {
  position: absolute; top: -42px; right: 0;
  font-family: 'Jura', sans-serif; font-size: 9px;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--silver2); background: none; border: none;
  cursor: pointer; transition: color .3s;
}
.modal-close:hover { color: var(--white); }

/* ════════════════════════════
   SCROLL REVEAL
════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.40s}.d6{transition-delay:.48s}

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ════════════════════════════
   SECTION TONES
════════════════════════════ */
.bg-black { background: var(--black); }
.bg-dark  { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }

/* ════════════════════════════
   HOLOGRAPHIC SECTION ACCENT
════════════════════════════ */
.holo-accent {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.holo-accent::before {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  top: -20%; right: -10%;
  background: radial-gradient(ellipse,
    rgba(140,210,255,.025) 0%,
    rgba(200,140,255,.015) 40%,
    transparent 70%
  );
  animation: holo-rotate 20s ease infinite;
  background-size: 200% 200%;
}

/* ════════════════════════════
   PORTFOLIO TABS
════════════════════════════ */
.portfolio-tabs { display: flex; gap: 24px; flex-wrap: wrap; }
.tab-btn {
  font-family: 'Jura', sans-serif; font-weight: 400; font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--silver2); background: none; border: none;
  cursor: pointer; padding: 6px 0; position: relative;
  transition: color .3s;
}
.tab-btn::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, rgba(140,210,255,.6), var(--white));
  transition: width .4s var(--ease);
}
.tab-btn.active { color: var(--white); }
.tab-btn.active::after { width: 100%; }
.tab-btn:hover { color: var(--white); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  nav { padding: 22px 40px; }
  nav.scrolled { padding: 14px 40px; }
  .hero-content { padding: 0 40px 70px; }
  .page-hero-content { padding: 0 40px 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .page-hero-content { padding: 0 24px 48px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-ham { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-content { padding-bottom: 120px; }
  .hero-title { margin-top: 0; }
  .hero-actions { justify-content: center; width: 100%; }
  /* Increase tap targets on mobile */
  .nav-ham { padding: 10px; }
  .mob-menu a { padding: 8px 0; }
  .btn-primary, .form-submit { min-height: 48px; }
  .back-to-top { width: 48px; height: 48px; }
  /* Improve form usability on mobile */
  .form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
  .form-group select,
  .form-group textarea { font-size: 16px; } /* prevents iOS auto-zoom */
  /* Checkboxes / radios — bigger touch area */
  .checkbox-item, .radio-item { padding: 6px 0; min-height: 44px; align-items: center; }
  input[type="checkbox"], input[type="radio"] { width: 20px !important; height: 20px !important; min-width: 20px !important; }
}

@media (max-width: 768px) {
  /* Philosophy spacing fix — make pillar-text flow in the document
     instead of sitting absolutely at the bottom, which caused overlap */
  .pillar-row { padding: 20px 0 24px; min-height: 0; }
  .pillar-name { font-size: clamp(18px, 4vw, 26px); margin: 6px 0 10px; }
  .pillar-text {
    position: static;
    opacity: 0.7;
    pointer-events: auto;
    margin-top: 10px;
  }
}

/* Touch devices: replace pillar hover underline with scroll-reveal */
@media (hover: none), (pointer: coarse) {
  .pillar-row::after { transition: none; }
  .pillar-row.in-view::after { width: 100%; }
  .pillar-row:hover { padding-left: 0; }
  .pillar-row:hover .pillar-label { color: var(--silver2); }
}

/* Touch devices: client logo scroll-reveal */
@media (hover: none), (pointer: coarse) {
  .client-logo-item img {
    filter: grayscale(1) brightness(1.2);
    opacity: .5;
    transition: filter .4s, opacity .4s;
  }
  .client-logo-item.in-view img {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Touch devices: gallery iframe scroll-reveal */
@media (hover: none), (pointer: coarse) {
  /* Gallery items: play state triggered by scroll, not hover */
  .gallery-item.in-view iframe { opacity: 1; }
}

/* ════════════════════════════
   SERVICES GLASS PANEL
════════════════════════════ */
.service-panel-glass {
  background: rgba(8,8,14,.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-top: 1px solid rgba(255,255,255,.09);
  border-left: 1px solid rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.service-panel-glass::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(140,210,255,.04) 0%,
    transparent 45%,
    rgba(200,140,255,.03) 100%
  );
  pointer-events: none;
}

/* ════════════════════════════
   PHILOSOPHY WITH BG IMAGE
════════════════════════════ */
.phil-bg-wrap {
  position: absolute; inset: 0; overflow: hidden;
}
.phil-bg-wrap img,
.phil-bg-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .99; filter: brightness(.7) saturate(.8);
  transform: scale(1.04);
}
.phil-bg-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.22) 55%,
    rgba(0,0,0,.08) 100%
  );
}

/* Pillar elegant hover — nav-underline style */
.pillar-row {
  padding: 28px 0 72px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: default;
  position: relative;
  transition: padding-left .4s var(--ease);
}
.pillar-row:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.pillar-row:hover { padding-left: 8px; }

/* The glowing underline — same style as nav */
.pillar-row::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,210,255,.6), var(--white), rgba(200,140,255,.5), transparent);
  transition: width .55s var(--ease);
}
.pillar-row:hover::after { width: 100%; }

.pillar-label {
  font-family: 'Jura', sans-serif; font-size: 11px;
  letter-spacing: .5em; text-transform: uppercase; color: var(--silver2);
  margin-bottom: 8px;
  transition: color .3s;
}
.pillar-row:hover .pillar-label { color: rgba(140,210,255,.9); }

.pillar-name {
  font-family: 'Marzo', serif; font-size: 28px;
  font-weight: 400; color: var(--white);
  letter-spacing: .06em; margin-bottom: 8px;
  transition: letter-spacing .4s var(--ease);
}
.pillar-row:hover .pillar-name { letter-spacing: .09em; }

.pillar-text {
  font-family: 'Jura', sans-serif; font-size: 14px;
  font-weight: 300; line-height: 1.8; color: var(--silver2);
  position: absolute; bottom: 28px; left: 0; right: 0;
  opacity: 0.65; transition: opacity .5s var(--ease);
  pointer-events: none;
}
.pillar-row:hover .pillar-text { opacity: 1; }

/* ════════════════════════════
   BACK TO TOP
════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 36px; right: 36px; z-index: 800;
  width: 44px; height: 44px;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .4s, transform .4s, border-color .3s, box-shadow .3s;
  border-radius: 10px;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover {
  border-color: rgba(140,210,255,.35);
  box-shadow: 0 0 20px rgba(140,210,255,.1);
}
.back-to-top svg { width: 14px; height: 14px; fill: none; stroke: var(--silver2); stroke-width: 1.5; transition: stroke .3s; }
.back-to-top:hover svg { stroke: var(--white); }

/* ════════════════════════════
   GLASS PANEL (enhanced)
════════════════════════════ */
.glass-panel {
  background: rgba(255,255,255,0.032);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  box-shadow:
    0 16px 64px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.18);
  position: relative; overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(140,210,255,0.03) 0%,
    transparent 40%,
    rgba(200,140,255,0.025) 100%
  );
  pointer-events: none;
}

/* ════════════════════════════
   MINIMAP
════════════════════════════ */
.minimap-wrap {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  margin-top: 32px;
}
.minimap-wrap iframe {
  display: block; width: 100%; height: 220px;
  border: none;
  filter: invert(0.92) hue-rotate(190deg) saturate(0.45) brightness(0.72);
}
.minimap-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 8px;
}
.minimap-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(140,210,255,.7);
  box-shadow: 0 0 8px rgba(140,210,255,.5);
  flex-shrink: 0;
}
.minimap-label-text {
  font-family: 'Jura', sans-serif; font-size: 9px;
  letter-spacing: .4em; text-transform: uppercase; color: var(--silver2);
}

/* ════════════════════════════
   HOLOGRAPHIC SECTION DIVIDER
════════════════════════════ */
.holo-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(140,210,255,.3) 25%,
    rgba(255,255,255,.5) 50%,
    rgba(200,140,255,.3) 75%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: holo-rotate 4s ease infinite;
}

/* ════════════════════════════
   COMING SOON POPUP
════════════════════════════ */
.cs-popup {
  display: none; position: fixed; inset: 0; z-index: 3000;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(28px);
}
.cs-popup.open { display: flex; }
.cs-box {
  position: relative;
  background: rgba(8,8,14,.85);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 64px 80px;
  text-align: center;
  max-width: 480px; width: 92vw;
  box-shadow:
    0 32px 80px rgba(0,0,0,.8),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.cs-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent,rgba(140,210,255,.4),rgba(200,140,255,.3),transparent
  );
  background-size: 300% 100%;
  animation: holo-rotate 4s ease infinite;
}
.cs-eyebrow {
  font-family: 'Jura', sans-serif; font-size: 9px;
  letter-spacing: .6em; text-transform: uppercase; color: var(--silver2);
  margin-bottom: 24px;
}
.cs-title {
  font-family: 'Marzo', serif; font-size: clamp(28px, 5vw, 48px);
  font-weight: 400; letter-spacing: .06em; color: var(--white);
  text-transform: uppercase; margin-bottom: 16px;
  line-height: 1.1;
}
.cs-sub {
  font-family: 'Jura', sans-serif; font-size: 13px;
  font-weight: 300; line-height: 1.8; color: var(--silver2);
  margin-bottom: 36px;
}
.cs-close {
  font-family: 'Jura', sans-serif; font-size: 9px;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--silver2); background: none; border: none;
  cursor: pointer; transition: color .3s;
}
.cs-close:hover { color: var(--white); }

/* ════════════════════════════
   DYNAMIC VIDEO BACKGROUND
════════════════════════════ */
.vid-bg-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.vid-bg-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .18;
  filter: saturate(0.6) brightness(0.7);
}
/* Vimeo iframe inside vid-bg-wrap — viewport-unit cover so video fills edge to edge */
.vid-bg-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;   /* 16:9 of viewport width */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 of viewport height */
  pointer-events: none;
  border: none;
  opacity: .18;
  filter: saturate(0.6) brightness(0.7);
}
.vid-bg-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1;
}

/* ════════════════════════════
   CLIENT LOGO ROW
════════════════════════════ */
.client-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.client-logo-item {
  font-family: 'Jura', sans-serif; font-weight: 400;
  font-size: 20px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.16);
  transition: color .4s, letter-spacing .4s;
  cursor: default; user-select: none;
}
.client-logo-item:hover { color: rgba(255,255,255,.44); letter-spacing: .22em; }

/* ════════════════════════════
   VIDEO BG — VIVID VARIANT (90% visible)
════════════════════════════ */
.vid-bg-vivid video,
.vid-bg-vivid iframe {
  opacity: .9 !important;
  filter: none !important;
}
.vid-bg-vivid::after {
  background: rgba(0,0,0,.10) !important;
}

/* ════════════════════════════
   SERVICES — GLASS PANEL LAYOUT
════════════════════════════ */
.svc-glass-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 52px;
}
@keyframes glow-cycle {
  0%,100% { box-shadow: 0 0 16px rgba(140,210,255,.39), 0 0 32px rgba(140,210,255,.15); }
  25%     { box-shadow: 0 0 16px rgba(220,140,255,.39), 0 0 32px rgba(220,140,255,.15); }
  50%     { box-shadow: 0 0 16px rgba(255,170,100,.39), 0 0 32px rgba(255,170,100,.15); }
  75%     { box-shadow: 0 0 16px rgba(100,255,200,.39), 0 0 32px rgba(100,255,200,.15); }
}
@keyframes rainbow-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.svc-glass-card {
  position: relative;
  background: rgba(4,4,14,0.58);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: none;
  border-radius: 16px;
  padding: 48px 36px 44px;
  display: flex; flex-direction: column; gap: 0;
  transition: transform .4s var(--ease), background .4s;
  animation: glow-cycle 8s ease-in-out infinite;
  isolation: isolate;
}
.svc-glass-card:hover { background: rgba(6,6,20,0.72); }
.svc-glass-card:nth-child(2) { animation-delay: -2.67s; }
.svc-glass-card:nth-child(3) { animation-delay: -5.33s; }
.svc-glass-card:hover { transform: translateY(-4px); }
/* Rainbow animated stroke border — mask technique (border-only, transparent center) */
.svc-glass-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  padding: 2px; /* border thickness */
  background: linear-gradient(90deg,
    rgba(140,210,255,1) 0%,
    rgba(220,140,255,1) 20%,
    rgba(255,170,100,1) 40%,
    rgba(100,255,200,1) 60%,
    rgba(140,210,255,1) 80%,
    rgba(220,140,255,1) 100%
  );
  background-size: 300% 100%;
  animation: rainbow-border 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1; /* behind card content within isolated context */
}
.svc-glass-card:nth-child(2)::before { animation-delay: -1.33s; }
.svc-glass-card:nth-child(3)::before { animation-delay: -2.67s; }
/* Subtle holo glow line at top of each card */
.svc-glass-card::after {
  content: '';
  position: absolute; top: 2px; left: 2px; right: 2px; height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(140,210,255,.4), rgba(255,255,255,.35), rgba(200,140,255,.3), transparent
  );
  background-size: 300% 100%;
  animation: holo-rotate 6s ease infinite;
  pointer-events: none;
}
/* hover handled above */
.svc-card-tag {
  font-family: 'Jura', sans-serif; font-size: 9px;
  letter-spacing: .6em; text-transform: uppercase;
  color: rgba(140,210,255,.7); margin-bottom: 18px;
}
.svc-card-title {
  font-family: 'Marzo', serif; font-size: clamp(22px,2.2vw,32px);
  font-weight: 400; color: var(--white);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 8px; line-height: 1.1;
}
.svc-card-sub {
  font-family: 'Jura', sans-serif; font-size: 11px;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 28px;
}
.svc-card-desc {
  font-family: 'Jura', sans-serif; font-size: 13px;
  font-weight: 300; line-height: 1.9; color: var(--silver2);
  letter-spacing: .03em; margin-bottom: 28px;
}
.svc-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), transparent);
  margin-bottom: 24px;
}
.svc-card-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.svc-card-list li {
  font-family: 'Jura', sans-serif; font-size: 12px;
  font-weight: 300; color: rgba(255,255,255,.55);
  letter-spacing: .08em; padding: 8px 0 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  transition: color .3s, padding-left .3s;
}
.svc-glass-card:hover .svc-card-list li { color: rgba(255,255,255,.72); }
.svc-card-list li::before {
  content: '—'; position: absolute; left: 0;
  color: rgba(140,210,255,.5); font-size: 10px;
}
.svc-card-cta {
  margin-top: 32px;
}

/* ════════════════════════════
   TEAM GLASS CARDS
════════════════════════════ */
.team-glass-card {
  background: rgba(4,4,4,.68);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
}
.team-glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  background: rgba(8,8,8,.80);
}
.team-glass-card .team-photo {
  aspect-ratio: 3/4; overflow: hidden; margin-bottom: 0;
  position: relative;
}
.team-glass-card .team-photo::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.5));
  z-index: 1;
}
.team-glass-card .team-photo img {
  width:100%; height:100%; object-fit:cover; object-position:top;
  filter: brightness(.88) saturate(.9);
  transition: transform .8s var(--ease), filter .5s;
}
.team-glass-card:hover .team-photo img { transform:scale(1.05); filter:brightness(.98) saturate(1); }
.team-glass-info {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.team-glass-info::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(140,210,255,.2), transparent);
}

/* ════════════════════════════
   RESPONSIVE — SERVICES & TEAM
════════════════════════════ */
@media (max-width: 960px) {
  .svc-glass-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-glass-card { padding: 36px 28px 32px; }
}
@media (max-width: 768px) {
  .svc-glass-card { border-radius: 12px; }
}

/* ════════════════════════════
   AI VISUALS — HORIZONTAL SCROLL STRIP
════════════════════════════ */
.ai-strip-outer {
  position: relative; overflow: hidden;
}
.ai-strip-holo-bg {
  position: absolute; inset: 0; z-index: 0;
}
.ai-strip-holo-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .60;
  filter: brightness(.55) saturate(1.4) hue-rotate(8deg);
  mix-blend-mode: screen;
}
.ai-strip-holo-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.76);
}
.ai-strip-track-wrap {
  position: relative; z-index: 1;
  overflow: hidden;
  width: 100%;
}
.ai-strip-track {
  display: flex; gap: 6px;
  width: max-content;
  animation: ai-scroll 140s linear infinite;
}
.ai-strip-track:hover { animation-play-state: paused; }
@keyframes ai-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ai-strip-item {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 4 / 5;
  overflow: hidden; position: relative;
  border-radius: 6px;
  cursor: pointer;
}
/* Play overlay — appears on hover */
.strip-play-overlay {
  position: absolute; inset: 0; z-index: 11;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  opacity: 0;
  transition: opacity .3s, background .3s;
  pointer-events: none;
}
.ai-strip-item:hover .strip-play-overlay {
  opacity: 1;
  background: rgba(0,0,0,.22);
}
.ai-strip-item video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .6s;
}
.ai-strip-item:hover video { transform: scale(1.04); }
.ai-strip-item::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 40%);
  pointer-events: none;
}

/* Post-production page hero video bg */
.port-hero-vid-bg {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.port-hero-vid-bg video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .28; filter: saturate(1.1) brightness(.7);
}
.port-hero-vid-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
