/* ============================================================
   VRO HOLOGRAPHIC THEME — loaded after each page's inline styles.
   Deepens the navy ground, keeps the VRO green as anchor, and adds
   an iridescent green→cyan→blue→violet holo system across pages.
   ============================================================ */

:root {
  /* Deeper space-navy ground */
  --bg-primary: #0D1729;
  --bg-secondary: #0A1220;
  --bg-dark: #070E1A;
  --bg-card: #131F36;

  /* Anchor accent stays VRO green */
  --accent: #3DAA7A;
  --accent-hover: #35BD87;
  --accent-glow: rgba(61, 170, 122, 0.22);
  --accent-subtle: rgba(61, 170, 122, 0.08);

  /* Holographic system */
  --holo-1: #3DAA7A;
  --holo-2: #45C6C0;
  --holo-3: #5A8DE8;
  --holo-4: #8F7BF0;
  --holo-grad: linear-gradient(115deg, var(--holo-1), var(--holo-2) 35%, var(--holo-3) 68%, var(--holo-4));
  --holo-border: linear-gradient(115deg, rgba(61,170,122,.55), rgba(69,198,192,.35) 35%, rgba(90,141,232,.30) 68%, rgba(143,123,240,.45));
  --glass: rgba(255, 255, 255, 0.035);
  --glass-strong: rgba(19, 31, 54, 0.72);

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 14px 44px rgba(0, 0, 0, 0.45), 0 0 24px rgba(69, 198, 192, 0.10);
  --shadow-glow: 0 0 30px rgba(61, 170, 122, 0.18), 0 0 60px rgba(143, 123, 240, 0.08);
}

/* Ambient atmosphere behind everything */
body {
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(61, 170, 122, 0.07), transparent 60%),
    radial-gradient(1000px 700px at 105% 110%, rgba(143, 123, 240, 0.06), transparent 60%),
    var(--bg-primary);
}

::selection { background: rgba(69, 198, 192, 0.35); color: #fff; }

* { scrollbar-width: thin; scrollbar-color: rgba(69,198,192,0.35) var(--bg-dark); }
*::-webkit-scrollbar { width: 10px; }
*::-webkit-scrollbar-track { background: var(--bg-dark); }
*::-webkit-scrollbar-thumb { background: linear-gradient(var(--holo-1), var(--holo-3)); border-radius: 8px; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--holo-2);
  outline-offset: 2px;
}

/* ===== NAVBAR — darker glass with a holo hairline ===== */
.navbar.scrolled {
  background: rgba(7, 14, 26, 0.88);
  box-shadow:
    0 1px 0 rgba(69, 198, 192, 0.18),
    0 4px 30px rgba(0, 0, 0, 0.45);
}
.nav-links a::after { background: var(--holo-grad); }
.nav-links a:hover { color: #fff; text-shadow: 0 0 14px rgba(69, 198, 192, 0.45); }

/* ===== SECTION LABELS & TITLES ===== */
.section-label::before { background: var(--holo-grad); height: 2px; }
.section-label { color: var(--holo-2); text-shadow: 0 0 16px rgba(69, 198, 192, 0.35); }

/* Iridescent gradient on accent words + big stats */
.vt-headline .accent,
.section-title .accent,
.stat-number,
.division-icon {
  background: var(--holo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(69, 198, 192, 0.30));
}

/* ===== GLASS CARDS with gradient borders (all page variants) ===== */
.why-card,
.contact-form-card,
.service-card,
.svc-card,
.service-item {
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    linear-gradient(160deg, var(--bg-card), var(--bg-card)) padding-box,
    var(--holo-border) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover,
.service-card:hover,
.svc-card:hover,
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-item { border-radius: var(--radius-sm, 8px); }

/* ===== BUTTONS — green anchor, holo bloom on hover ===== */
.nav-cta-btn,
.nav-cta,
.endcard-cta,
.btn-submit,
.btn-primary,
.hero-btn,
.founder-btn,
.btn-next,
.btn-home {
  background: linear-gradient(120deg, var(--accent), #2FA98E);
  color: #fff !important;
  border: none;
}
.nav-cta-btn:hover,
.nav-cta:hover,
.endcard-cta:hover,
.btn-submit:hover,
.btn-primary:hover,
.hero-btn:hover,
.founder-btn:hover,
.btn-next:hover {
  background: linear-gradient(120deg, var(--holo-1), var(--holo-2) 60%, var(--holo-3));
  box-shadow: 0 8px 30px rgba(61, 170, 122, 0.35), 0 0 40px rgba(90, 141, 232, 0.18);
}
.btn-secondary,
.btn-back {
  border-color: rgba(69, 198, 192, 0.45);
}
.btn-secondary:hover,
.btn-back:hover {
  border-color: var(--holo-2);
  box-shadow: 0 0 24px rgba(69, 198, 192, 0.22);
}

@keyframes breathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(61, 170, 122, 0.45), 0 4px 14px rgba(61, 170, 122, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(69, 198, 192, 0), 0 6px 28px rgba(90, 141, 232, 0.45);
    filter: brightness(1.08);
  }
}

/* ===== HERO — scanline sheen over the video ===== */
.hero-vignette {
  box-shadow: inset 0 0 180px 50px rgba(0, 0, 0, 0.42);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.014) 0px,
    rgba(255, 255, 255, 0.014) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}

/* ===== FEATURED FOUNDER — first slot carries the highlight ===== */
.founders-row .founder-half:first-child .founder-photo {
  box-shadow:
    0 0 0 2px rgba(69, 198, 192, 0.35),
    0 0 44px rgba(61, 170, 122, 0.28),
    0 0 90px rgba(143, 123, 240, 0.14);
  border-radius: var(--radius, 12px);
}
.founders-row .founder-half:first-child .founder-name {
  background: var(--holo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ===== FORMS ===== */
input:focus, select:focus, textarea:focus {
  border-color: var(--holo-2) !important;
  box-shadow: 0 0 0 3px rgba(69, 198, 192, 0.15) !important;
}

/* ===== FOOTER hairline ===== */
footer, .footer {
  border-top: 1px solid transparent;
  border-image: var(--holo-border) 1;
}

/* ===== GOOGLE REVIEW BUTTON — gold highlight in the header ===== */
.nav-review-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #1A1405 !important;
  background: linear-gradient(120deg, #F0C558, #D9A445);
  animation: reviewGlow 3.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.35s ease;
}
.nav-review-btn::after { display: none !important; }
.nav-review-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(120deg, #F6D272, #E2AC4C);
  box-shadow: 0 6px 24px rgba(240, 197, 88, 0.55);
  animation-play-state: paused;
}
@keyframes reviewGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(217, 164, 69, 0.30); }
  50% { box-shadow: 0 0 26px rgba(240, 197, 88, 0.60); }
}

/* ===== MOTION SAFETY ===== */
@media (prefers-reduced-motion: reduce) {
  .nav-cta-btn, .endcard-cta, .nav-review-btn { animation: none !important; }
  .why-card, .service-card, .svc-card, .service-item { transition: none; }
  html { scroll-behavior: auto; }
}
