/* ─────────────────────────────────────────────────────────
   DRC Media — style.css
   Custom styles layered on top of Tailwind CDN
───────────────────────────────────────────────────────── */

/* ── Reset / Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Hide the native cursor everywhere */
*, *::before, *::after { cursor: none !important; }

body { overflow-x: hidden; }

/* ── Custom Scrollbar ──────────────────────────────── */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: #0e0e0e; }
::-webkit-scrollbar-thumb    { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #7b2fff; }

/* ── Material Symbols base ─────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

/* ── Custom Cursor ─────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: #7b2fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s ease, height .18s ease, background .18s ease;
  will-change: left, top;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(123, 47, 255, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s ease, height .22s ease, border-color .22s ease;
  will-change: left, top;
}

/* Expanded state on interactive elements */
body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 14px;
  height: 14px;
  background: #d1bcff;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(123, 47, 255, 0.25);
}

/* ── Navbar ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease;
}

#navbar.scrolled {
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 68, 86, 0.18);
}

.nav-link {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: -.015em;
  color: rgba(226, 226, 226, 0.6);
  transition: color .25s;
  text-decoration: none;
}
.nav-link:hover { color: #7b2fff; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #7b2fff;
  color: #fff;
  padding: .6rem 1.5rem;
  border-radius: 9999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: -.015em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(123, 47, 255, 0.45);
}
.btn-primary:active { transform: scale(.95); }

/* ── Hero glow ─────────────────────────────────────── */
.hero-glow {
  background: radial-gradient(circle at 50% 50%, rgba(123, 47, 255, 0.13) 0%, transparent 65%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}

/* ── Scroll Reveal ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .10s; }
[data-reveal][data-delay="2"] { transition-delay: .20s; }
[data-reveal][data-delay="3"] { transition-delay: .30s; }
[data-reveal][data-delay="4"] { transition-delay: .40s; }

/* ── Service Cards ─────────────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 2.5rem;
  transition: background .5s ease;
}
.service-card:hover { background: #2a2a2a; }

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
  background: rgba(123, 47, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Why DRC icons ─────────────────────────────────── */
.why-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(209, 188, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Gallery ───────────────────────────────────────── */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .6;
  transition: filter 1s ease, opacity 1s ease, transform 1s ease;
}
.gallery-item:hover .gallery-img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0e0e0e, transparent);
  opacity: 0;
  transition: opacity .5s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0;
  transform: translateY(1rem);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-tag {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #d1bcff;
  margin-bottom: .4rem;
}

/* Gallery filter buttons */
.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding-bottom: .5rem;
  font-family: "Inter", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #ccc3d9;
  transition: color .25s, border-color .25s;
}
.filter-btn:hover  { color: #d1bcff; }
.filter-btn.active {
  color: #d1bcff;
  border-bottom-color: #7b2fff;
}

.gallery-item.hidden-item { display: none; }

/* ── Trusted Partners row ──────────────────────────── */
.partners-row {
  opacity: .38;
  transition: opacity .6s ease;
}
.partners-row:hover { opacity: .65; }

/* ── CTA glow ──────────────────────────────────────── */
.cta-glow {
  background: radial-gradient(circle at 50% 50%, rgba(123, 47, 255, 0.07) 0%, transparent 60%);
}

/* ── Stat Cards ────────────────────────────────────── */
.stat-card {
  background: #1f1f1f;
  border: 1px solid rgba(74, 68, 86, 0.2);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 47, 255, 0.45);
  box-shadow: 0 12px 40px rgba(123, 47, 255, 0.12);
}

/* ── Logo image (blend away dark circle background) ─── */
.logo-img {
  height: 50px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}
.logo-img--sm {
  height: 32px;
}

/* ── Purple gradient text ───────────────────────────── */
.text-gradient-purple {
  background: linear-gradient(to right, #7b2fff 0%, #d1bcff 58%, rgba(255, 255, 255, 0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Contact form elements ─────────────────────────── */
.form-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ccc3d9;
  padding: 0 .25rem;
  margin-bottom: .5rem;
}

.form-input {
  width: 100%;
  background: #1f1f1f !important;
  border: 1px solid rgba(74, 68, 86, 0.3) !important;
  border-radius: .75rem;
  padding: 1rem;
  color: #e2e2e2;
  font-family: "Inter", sans-serif;
  font-size: .9rem;
  outline: none;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.form-input::placeholder { color: rgba(204, 195, 217, .3); }
.form-input:focus {
  box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.35) !important;
  border-color: #7b2fff !important;
}
.form-input option {
  background: #1f1f1f;
  color: #e2e2e2;
}

/* ── Footer utilities ──────────────────────────────── */
.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(226, 226, 226, .35);
}

.footer-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(74, 68, 86, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e2e2;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.footer-icon-btn:hover {
  border-color: #7b2fff;
  color: #7b2fff;
}

/* ── Contact section ───────────────────────────────── */
.contact-bg-glow {
  background: radial-gradient(ellipse 90% 55% at 50% 100%, rgba(123, 47, 255, 0.08) 0%, transparent 70%);
}

/* Animated sweep divider */
.contact-divider {
  position: relative;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(123, 47, 255, 0.5), rgba(123, 47, 255, 0.1), transparent);
  overflow: hidden;
}
.contact-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(209, 188, 255, 0.85), transparent);
  animation: divider-sweep 3s ease-in-out infinite;
}
@keyframes divider-sweep {
  0%   { left: -60%; }
  100% { left: 110%; }
}

.contact-email {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e2e2e2;
  text-decoration: none;
  transition: color .25s ease;
  line-height: 1.2;
}
.contact-email:hover { color: #d1bcff; }

.contact-social-link {
  display: flex;
  align-items: center;
  gap: .875rem;
  text-decoration: none;
}
.contact-social-platform {
  font-family: "Manrope", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(226, 226, 226, 0.35);
  min-width: 72px;
  transition: color .25s ease;
}
.contact-social-handle {
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  color: rgba(204, 195, 217, 0.35);
  transition: color .25s ease;
}
.contact-social-link:hover .contact-social-platform { color: #d1bcff; }
.contact-social-link:hover .contact-social-handle    { color: rgba(209, 188, 255, 0.7); }

/* Form card */
.contact-form-card {
  background: #161616;
  border: 1px solid rgba(123, 47, 255, 0.15);
  border-radius: 24px;
  padding: 2.75rem;
}

/* Submit button */
.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #7b2fff 0%, #5700c8 100%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 1.25rem;
  border-radius: 14px;
  border: none;
  outline: none;
  transition: transform .2s ease, box-shadow .25s ease;
}
.contact-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(123, 47, 255, 0.5), 0 0 0 1px rgba(123, 47, 255, 0.25);
}
.contact-submit-btn:active:not(:disabled) { transform: scale(.98); }
.contact-submit-btn.sent {
  background: linear-gradient(135deg, #1db870 0%, #0d7a46 100%);
  box-shadow: 0 8px 32px rgba(13, 122, 70, 0.4);
}

/* ═══════════════════════════════════════════════════════
   ANIMATION ADDITIONS
═══════════════════════════════════════════════════════ */

/* ── 1. CSS Morphing Chrome Shape (Why DRC) ──────────── */
.morph-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07070e;
}

/* The scene div receives JS 3-D perspective transform */
.morph-scene {
  will-change: transform;
}

/* Outer float layer — pure CSS vertical bob */
.morph-float {
  animation: morph-float 5s ease-in-out infinite;
}

@keyframes morph-float {
  0%, 100% { transform: translateY(0);     }
  50%       { transform: translateY(-14px); }
}

/* ── The shape itself ─────────────────────────────────── */
.morph-shape {
  width: 320px;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 16% 16% 16% 16% / 16% 16% 16% 16%;

  /* Metallic chrome with subtle purple highlights */
  background: linear-gradient(
    135deg,
    #111111  0%,
    #2a2a2a  8%,
    #404040  16%,
    #666666  26%,
    #888888  34%,
    #b0b0b0  42%,
    #d8d8d8  48%,
    #ffffff  50%,   /* bright chrome specular */
    #c0c0c0  52%,
    #999999  58%,
    #6a3aaa  64%,   /* purple tint creeps in */
    #7b2fff  70%,   /* brand purple highlight */
    #5a2acc  76%,
    #3d3d3d  84%,
    #2a2a2a  92%,
    #111111  100%
  );

  /* Default shadow — overridden by shadow-orbit keyframe */
  box-shadow:
    20px -14px 70px rgba(123,47,255,.50),
    -10px  10px 50px rgba(0,0,0,.80),
      0   35px 70px rgba(0,0,0,.70),
    inset  0    0   60px rgba(0,0,0,.45);

  animation:
    border-morph  9s ease-in-out infinite,
    shadow-orbit  7s ease-in-out infinite;
}

/* Cube / squircle morphing — stays close to square, breathing corners */
@keyframes border-morph {
  0%   { border-radius: 16% 16% 16% 16% / 16% 16% 16% 16%; }
  12%  { border-radius: 28% 14% 22% 18% / 18% 26% 14% 24%; }
  25%  { border-radius: 38% 12% 34% 16% / 14% 36% 12% 32%; }
  38%  { border-radius: 20% 32% 16% 30% / 30% 18% 34% 14%; }
  50%  { border-radius: 12% 38% 12% 38% / 38% 12% 38% 12%; }
  62%  { border-radius: 30% 16% 28% 20% / 16% 30% 18% 28%; }
  75%  { border-radius: 14% 34% 14% 34% / 24% 16% 26% 14%; }
  88%  { border-radius: 22% 18% 20% 24% / 18% 22% 24% 20%; }
  100% { border-radius: 16% 16% 16% 16% / 16% 16% 16% 16%; }
}

/* Box-shadow orbits to simulate a purple point-light circling the chrome */
@keyframes shadow-orbit {
  0%, 100% {
    box-shadow:
      20px -14px 70px rgba(123,47,255,.50),
      -10px  10px 50px rgba(0,0,0,.80),
        0   35px 70px rgba(0,0,0,.70),
      inset  0    0   60px rgba(0,0,0,.45);
  }
  33% {
    box-shadow:
      -20px  14px 70px rgba(123,47,255,.46),
       10px -10px 50px rgba(0,0,0,.80),
        0   35px 70px rgba(0,0,0,.70),
      inset   0    0   60px rgba(0,0,0,.45);
  }
  66% {
    box-shadow:
        4px  22px 70px rgba(160,80,255,.46),
       -4px -22px 50px rgba(80,40,200,.30),
        0   35px 70px rgba(0,0,0,.70),
      inset   0    0   60px rgba(0,0,0,.45);
  }
}

/* Spinning chrome highlight streak — clipped by overflow:hidden */
.morph-shape::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent           0deg,
    rgba(255,255,255,.04) 14deg,
    rgba(255,255,255,.35) 26deg,   /* bright chrome streak */
    rgba(200,180,255,.08) 38deg,
    transparent           56deg,
    transparent          170deg,
    rgba(123, 47,255,.06) 200deg,  /* secondary purple glint */
    rgba(150,100,255,.12) 218deg,
    rgba(123, 47,255,.05) 236deg,
    transparent          258deg
  );
  animation: shine-spin 7s linear infinite;
  pointer-events: none;
}

@keyframes shine-spin {
  to { transform: rotate(360deg); }
}

/* Radial purple point-light — JS drives --lx / --ly as it orbits */
.morph-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 50% at var(--lx, 28%) var(--ly, 28%),
    rgba(255,255,255,.28)  0%,   /* chrome hot-spot */
    rgba(180,130,255,.30) 25%,   /* purple glow */
    rgba(123, 47,255,.15) 50%,
    transparent           75%
  );
  pointer-events: none;
}

/* ── 2. Globe section ────────────────────────────────── */
.globe-heading-gradient {
  background: linear-gradient(90deg, #7b2fff 0%, #d1bcff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.globe-container-wrap {
  position: relative;
  width: 600px;
  max-width: 100%;
  height: 600px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .globe-container-wrap {
    width: 100%;
    height: 360px;
  }
}

.globe-tooltip {
  position: absolute;
  background: rgba(20,10,40,.88);
  border: 1px solid rgba(123,47,255,.5);
  color: #d1bcff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  white-space: nowrap;
  z-index: 10;
}

/* ── 3. Terminal window (Website Creation card) ──────── */
.terminal-window {
  margin-top: 1.5rem;
  background: #0b0b14;
  border: 1px solid rgba(123,47,255,.25);
  border-radius: .5rem;
  overflow: hidden;
}
.terminal-titlebar {
  background: #14141f;
  padding: .45rem .8rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  border-bottom: 1px solid rgba(123,47,255,.1);
}
.t-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.terminal-filename {
  margin-left: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  color: rgba(209,188,255,.28);
  letter-spacing: .05em;
}
.terminal-body {
  padding: .8rem;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}
#term-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: .68rem;
  line-height: 1.65;
  color: #a78bfa;
  white-space: pre;
  margin: 0;
}
.t-cursor-blink {
  display: inline-block;
  width: 6px;
  height: .8em;
  background: #7b2fff;
  vertical-align: bottom;
  border-radius: 1px;
  animation: t-blink .65s step-end infinite;
}
@keyframes t-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.term-preview-layer {
  position: absolute;
  inset: 0;
  background: #0d1020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.term-preview-layer.vis { opacity: 1; }
.preview-mock { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.pm-bar  { height: 9px;  background: rgba(123,47,255,.5); border-radius: 4px; }
.pm-line { height: 3px;  background: rgba(209,188,255,.2); border-radius: 2px; }
.pm-btn  {
  width: 54px; height: 17px;
  background: rgba(123,47,255,.28);
  border: 1px solid rgba(123,47,255,.5);
  border-radius: 8px;
  margin-top: 4px;
}

/* ── 3. Floating glass stat cards ────────────────────── */
.stat-card {
  background: rgba(18,14,30,.72) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(123,47,255,.18) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05) !important;
}
.stat-card:hover {
  transform: none !important;
  border-color: rgba(123,47,255,.45) !important;
  box-shadow: 0 12px 40px rgba(123,47,255,.16), inset 0 1px 0 rgba(255,255,255,.07) !important;
}
@keyframes float-bob {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-9px); }
}
.float-0 { animation: float-bob 4.0s ease-in-out infinite 0.0s; }
.float-1 { animation: float-bob 4.0s ease-in-out infinite 0.7s; }
.float-2 { animation: float-bob 4.0s ease-in-out infinite 1.4s; }
.float-3 { animation: float-bob 4.0s ease-in-out infinite 2.1s; }

.sparkline { display: block; margin: 0 auto; overflow: visible; }
.spark-path {
  fill: none;
  stroke: rgba(123,47,255,.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1) .4s;
}
.spark-dot { fill: #d1bcff; opacity: 0; transition: opacity .5s ease .9s; }
.stat-card.revealed .spark-path { stroke-dashoffset: 0; }
.stat-card.revealed .spark-dot  { opacity: 1; }

/* ── 4. Dark gallery placeholder cards ───────────────── */
.gallery-dark-card {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, #09090f 0%, #110920 55%, #09090f 100%);
}
.gallery-dark-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(123,47,255,.22) 0%, transparent 68%);
  animation: gdc-breathe 4s ease-in-out infinite;
}
@keyframes gdc-breathe {
  0%,100% { opacity: .55; transform: scale(1);    }
  50%      { opacity: 1;   transform: scale(1.08); }
}
.gallery-dark-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(rgba(123,47,255,.04) 0px, transparent 1px, transparent 36px),
    repeating-linear-gradient(90deg, rgba(123,47,255,.04) 0px, transparent 1px, transparent 36px);
}
.gdc-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.gdc-content p {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(209,188,255,.72);
  letter-spacing: -.01em;
  line-height: 1.45;
  max-width: 240px;
}
.gdc-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem 1.25rem;
  background: rgba(123,47,255,.14);
  border: 1px solid rgba(123,47,255,.45);
  border-radius: 9999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  color: #d1bcff;
  text-decoration: none;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.gdc-btn:hover {
  background: rgba(123,47,255,.3);
  border-color: rgba(123,47,255,.7);
  box-shadow: 0 0 22px rgba(123,47,255,.3);
}
.gallery-item .gallery-overlay { z-index: 2; }
.gallery-item .gallery-caption { z-index: 4; }

/* ── 5. Video work cards ─────────────────────────────── */
.video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  cursor: pointer;
  text-decoration: none;
  transition:
    box-shadow   .35s ease,
    border-color .35s ease;
}

/* desaturated dim by default */
.vc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.45);
  transition: filter .4s ease;
  z-index: 1;
}

/* dark gradient overlay that fades on hover */
.vc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.10) 100%
  );
  transition: opacity .35s ease;
}

/* info block slides up from bottom */
.vc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transform: translateY(14px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.vc-tag {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d1bcff;
  background: rgba(123,47,255,.22);
  border: 1px solid rgba(123,47,255,.40);
  border-radius: 999px;
  padding: .2rem .65rem;
  align-self: flex-start;
}

.vc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.3;
}

/* ── Hover state ── */
.video-card:hover {
  box-shadow: 0 0 0 1px rgba(123,47,255,.40),
              0 0 24px rgba(123,47,255,.50),
              0 8px 40px rgba(0,0,0,.60);
  border-color: rgba(123,47,255,.40);
}
.video-card:hover .vc-video   { filter: saturate(1) brightness(1); }
.video-card:hover .vc-info    { transform: translateY(0); opacity: 1; }

/* hidden-item for filter */
.hidden-item { display: none !important; }

/* ── 6. Service card "Message us" link ───────────────── */
.service-msg-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(123,47,255,.65);
  text-decoration: none;
  transition: color .2s ease;
}
.service-card:hover .service-msg-link,
a.service-card:hover .service-msg-link {
  color: #7b2fff;
}

/* make anchor service-cards display as block */
a.service-card { display: block; }

/* ── Subtle film grain overlay ─────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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");
  opacity: .025;
  pointer-events: none;
  z-index: 9990;
}
