@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue DVS";
  src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cyan: #5cf4ec;
  --teal: #069e96;

  --bg: #030708;
  --bg-2: #071214;
  --card: rgba(10, 24, 27, 0.78);
  --card-strong: rgba(12, 29, 32, 0.95);

  --text: #f5ffff;
  --muted: #a8b7b8;
  --muted-2: #718486;

  --border: rgba(92, 244, 236, 0.18);
  --border-strong: rgba(92, 244, 236, 0.38);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 34px rgba(92, 244, 236, 0.22);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 34px;

  --container: 1180px;

  --font-heading: "Bebas Neue DVS", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Space Grotesk", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 15% 5%, rgba(92, 244, 236, 0.12), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(6, 158, 150, 0.14), transparent 34%),
    linear-gradient(180deg, #020607 0%, #051012 48%, #030708 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.018em;
  color: var(--text);
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 5.6vw, 5.65rem);
}

h2 {
  font-size: clamp(2.2rem, 4.1vw, 3.85rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.04;
}

::selection {
  background: rgba(92, 244, 236, 0.26);
  color: var(--text);
}

:focus-visible {
  outline: 2px dashed var(--cyan);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--cyan);
  color: #031012;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.center-block {
  text-align: center;
  max-width: 760px;
}

.center-block h2 {
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================
   BUTTONS
========================= */

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-primary {
  color: #031012;
  background:
    linear-gradient(180deg, rgba(185, 255, 251, 0.95), rgba(92, 244, 236, 0.96));
  border: 1px solid rgba(185, 255, 251, 0.8);
  box-shadow:
    0 0 0 1px rgba(92, 244, 236, 0.22),
    0 16px 42px rgba(0, 0, 0, 0.44),
    0 0 28px rgba(92, 244, 236, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  color: #020607;
  background:
    linear-gradient(180deg, #d6fffd, var(--cyan));
  border-color: rgba(220, 255, 253, 0.95);
  box-shadow:
    0 0 0 1px rgba(92, 244, 236, 0.42),
    0 20px 56px rgba(0, 0, 0, 0.52),
    0 0 46px rgba(92, 244, 236, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* Nav CTA gets the left-to-right hologram shimmer */
.btn-primary.shimmer-cta::before {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 42%;
  z-index: 1;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(92, 244, 236, 0.08) 30%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(92, 244, 236, 0.1) 70%,
    transparent 100%
  );
  transform: skewX(-18deg) translateX(-160%);
  pointer-events: none;
  animation: navCtaShimmer 3.8s ease-in-out infinite;
}

.btn-primary.shimmer-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}
.btn-primary.shimmer-cta .shimmer-text,
.btn-primary span {
  color: inherit;
}

.btn-primary.shimmer-cta .shimmer-text {
  position: relative;
  z-index: 2;
}

@keyframes navCtaShimmer {
  0% {
    transform: skewX(-18deg) translateX(-160%);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  42% {
    transform: skewX(-18deg) translateX(420%);
    opacity: 0;
  }

  100% {
    transform: skewX(-18deg) translateX(420%);
    opacity: 0;
  }
}

.btn-secondary {
  background: rgba(5, 18, 20, 0.66);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(92, 244, 236, 0.08);
  border-color: rgba(92, 244, 236, 0.6);
}

.full-width {
  width: 100%;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(92, 244, 236, 0.1);
  background: rgba(2, 7, 8, 0.72);
  backdrop-filter: blur(16px);
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 7, 8, 0.92);
  border-color: rgba(92, 244, 236, 0.22);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.nav-shell {
  width: min(calc(100% - 28px), 1240px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0.45rem 0 0.7rem;
}

.brand-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: min(100%, 310px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.18),
    rgba(92, 244, 236, 0.48),
    rgba(92, 244, 236, 0.18),
    transparent
  );
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.28);
}

.brand-main {
  color: rgba(245, 255, 255, 0.62);
  font-family: var(--font-accent);
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.78em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =========================
   DESKTOP NAV — QUICK STRIP STYLE
========================= */

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-left: auto;
}

.desktop-nav > a,
.desktop-nav > .nav-dropdown > .nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1.05rem;
  color: rgba(245, 255, 255, 0.72);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

/* small cyan highlight underneath */
.desktop-nav > a::after,
.desktop-nav > .nav-dropdown > .nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.22rem;
  width: 26px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.82),
    transparent
  );
  box-shadow: 0 0 12px rgba(92, 244, 236, 0.28);
  opacity: 0.45;
  transition:
    width 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

/* active + hover glow */
.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.desktop-nav > .nav-dropdown:hover > .nav-dropdown-trigger,
.desktop-nav > .nav-dropdown:focus-within > .nav-dropdown-trigger,
.desktop-nav > .nav-dropdown > .nav-dropdown-trigger[aria-current="page"] {
  color: var(--cyan);
  text-shadow:
    0 0 16px rgba(92, 244, 236, 0.28),
    0 0 26px rgba(92, 244, 236, 0.1);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.desktop-nav > .nav-dropdown:hover > .nav-dropdown-trigger::after,
.desktop-nav > .nav-dropdown:focus-within > .nav-dropdown-trigger::after,
.desktop-nav > .nav-dropdown > .nav-dropdown-trigger[aria-current="page"]::after {
  width: 42px;
  opacity: 1;
  box-shadow:
    0 0 14px rgba(92, 244, 236, 0.44),
    0 0 24px rgba(92, 244, 236, 0.12);
}

/* vertical gradient dividers between top-level nav items */
.desktop-nav > a:not(:last-child)::before,
.desktop-nav > .nav-dropdown:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(92, 244, 236, 0.18),
    rgba(92, 244, 236, 0.7),
    rgba(92, 244, 236, 0.18),
    transparent
  );
  box-shadow:
    0 0 10px rgba(92, 244, 236, 0.22),
    0 0 18px rgba(92, 244, 236, 0.08);
  pointer-events: none;
}

/* direct-link dividers need positioning */
.desktop-nav > a {
  position: relative;
}
/* Desktop dropdown nav */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger span {
  color: var(--cyan);
  font-size: 0.68rem;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span {
  transform: translateY(-1px) rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 50%;
  min-width: 230px;
  display: grid;
  gap: 0;
  padding: 0.45rem 0;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(0, 0, 0, 0.98));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.46),
    0 0 24px rgba(92, 244, 236, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 9px;
  height: 9px;
  border-left: 1px solid rgba(92, 244, 236, 0.2);
  border-top: 1px solid rgba(92, 244, 236, 0.2);
  background: rgba(5, 6, 7, 0.98);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 0;
  color: rgba(245, 255, 255, 0.72);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    text-shadow 180ms ease;
}

.nav-dropdown-menu a::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.45rem;
  width: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(92, 244, 236, 0.85),
    transparent
  );
  box-shadow: 0 0 12px rgba(92, 244, 236, 0.28);
  opacity: 0.45;
  transition:
    width 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.nav-dropdown-menu a:not(:last-child) {
  border-bottom: 1px solid rgba(92, 244, 236, 0.075);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(92, 244, 236, 0.055);
  color: var(--cyan);
  text-shadow:
    0 0 16px rgba(92, 244, 236, 0.28),
    0 0 26px rgba(92, 244, 236, 0.1);
}

.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after {
  width: 46px;
  opacity: 1;
  box-shadow:
    0 0 14px rgba(92, 244, 236, 0.42),
    0 0 24px rgba(92, 244, 236, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 1.18rem;
}
/* =========================
   DROPDOWN HOVER BRIDGE FIX
========================= */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 1.35rem;
  margin-block: -1.35rem;
}

.nav-dropdown-trigger {
  position: relative;
  z-index: 1002;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 280px;
  height: 1.6rem;
  transform: translateX(-50%);
  background: transparent;
  pointer-events: auto;
}

.nav-dropdown-menu {
  top: calc(100% + 0.15rem);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(9, 22, 24, 0.74);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  width: min(calc(100% - 28px), 1240px);
  margin: 0 auto 14px;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(4, 13, 15, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu > a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(245, 255, 255, 0.84);
  font-family: var(--font-accent);
  font-weight: 800;
}

.mobile-menu > a:hover,
.mobile-menu > a[aria-current="page"] {
  background: rgba(92, 244, 236, 0.08);
  color: var(--cyan);
}

/* Mobile dropdown nav */
.mobile-dropdown {
  border-radius: var(--radius-sm);
}

.mobile-dropdown summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(245, 255, 255, 0.84);
  font-family: var(--font-accent);
  font-weight: 800;
  cursor: pointer;
}

.mobile-dropdown summary::-webkit-details-marker {
  display: none;
}

.mobile-dropdown summary:hover,
.mobile-dropdown[open] summary {
  background: rgba(92, 244, 236, 0.08);
  color: var(--cyan);
}

.mobile-dropdown-icon {
  color: var(--cyan);
  font-size: 0.75rem;
  transition: transform 180ms ease;
}

.mobile-dropdown[open] .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  gap: 0.15rem;
  margin: 0.2rem 0 0.55rem 1rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(92, 244, 236, 0.18);
}

.mobile-submenu a {
  display: block;
  padding: 0.62rem 0.8rem;
  border-radius: 10px;
  color: rgba(245, 255, 255, 0.64);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-submenu a:hover,
.mobile-submenu a:focus-visible {
  color: var(--cyan);
  background: rgba(92, 244, 236, 0.06);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 0%, rgba(92, 244, 236, 0.1), transparent 34%),
    rgba(1, 6, 7, 0.92);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 0.7fr);
  gap: 2rem;
}

.footer-grid-simple {
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
}
.footer-brand-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0 0.7rem;
}

.footer-brand-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: min(100%, 310px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.18),
    rgba(92, 244, 236, 0.48),
    rgba(92, 244, 236, 0.18),
    transparent
  );
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.28);
}

.footer-brand-main {
  color: rgba(245, 255, 255, 0.62);
  font-family: var(--font-accent);
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.78em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand p {
  max-width: 380px;
}

.social-icon-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.social-icon-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.2);
  border-radius: 999px;
  background: rgba(92, 244, 236, 0.045);
  color: var(--cyan);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-icon-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 244, 236, 0.55);
  background: rgba(92, 244, 236, 0.09);
  box-shadow: 0 0 24px rgba(92, 244, 236, 0.18);
}

.social-icon-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-col h2 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-button {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover,
.footer-button:hover {
  color: var(--cyan);
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(92, 244, 236, 0.1);
}

.footer-bottom-legal {
  justify-content: space-between;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal-links a {
  color: var(--muted-2);
  font-size: 0.84rem;
  transition: color 180ms ease;
}

.footer-legal-links a:hover {
  color: var(--cyan);
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted-2);
  font-size: 0.86rem;
}
/* =========================
   MODALS
========================= */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(92, 244, 236, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(94vh, 860px);
  overflow-y: auto;
  border: 1px solid rgba(92, 244, 236, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 26%),
    linear-gradient(180deg, rgba(12, 18, 22, 0.98), rgba(1, 4, 6, 0.98));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.68),
    0 0 46px rgba(92, 244, 236, 0.2),
    0 0 1px rgba(92, 244, 236, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.large-modal,
.start-modal-panel {
  width: min(100%, 900px);
}

.start-modal-panel {
  isolation: isolate;
}

.start-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(92, 244, 236, 0.035) 44%, transparent 64%),
    radial-gradient(circle at 88% 0%, rgba(92, 244, 236, 0.12), transparent 34%);
}

.start-modal-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 28px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.24),
    rgba(92, 244, 236, 0.9),
    rgba(92, 244, 236, 0.24),
    transparent
  );
  box-shadow:
    0 0 18px rgba(92, 244, 236, 0.42),
    0 0 34px rgba(92, 244, 236, 0.12);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 20;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 244, 236, 0.56);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(14, 20, 24, 0.96), rgba(0, 0, 0, 0.98));
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow:
    0 0 18px rgba(92, 244, 236, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.modal-close:hover {
  color: var(--cyan);
  border-color: rgba(92, 244, 236, 0.9);
  box-shadow:
    0 0 24px rgba(92, 244, 236, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.start-modal-head {
  max-width: 760px;
  padding-right: 3rem;
}

.start-modal-head .eyebrow {
  margin-bottom: 0.85rem;
}

.start-modal-head h2 {
  max-width: 780px;
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.start-modal-head > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(220, 232, 234, 0.78);
  font-size: 0.96rem;
}

.start-modal-form {
  margin-top: 1rem;
  gap: 0.7rem;
}

.start-modal-form label {
  font-size: 0.82rem;
}

.start-modal-form input,
.start-modal-form select {
  min-height: 42px;
}

.start-modal-form textarea {
  min-height: 88px;
}

.start-submit-btn,
.project-form .start-submit-btn {
  width: min(100%, 360px);
  min-height: 42px;
  margin: 0.1rem auto 0;
  padding: 0.72rem 1.15rem;
  color: #031012;
  font-size: 0.82rem;
  font-weight: 900;
}

.start-submit-btn span,
.project-form .start-submit-btn span {
  color: #031012;
  text-shadow: none;
}

/* Compact bottom cards inside Start Here modal */
.modal-bottom-panel {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(92, 244, 236, 0.16);
}

.modal-bottom-card {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: auto;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    linear-gradient(180deg, rgba(10, 15, 19, 0.9), rgba(3, 7, 9, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 0 22px rgba(92, 244, 236, 0.055);
  overflow: hidden;
}

.modal-bottom-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, rgba(92, 244, 236, 0.85), transparent);
  box-shadow: 0 0 14px rgba(92, 244, 236, 0.26);
  pointer-events: none;
}

.modal-bottom-card h3 {
  margin: 0 0 0.35rem !important;
  font-family: var(--font-accent);
  font-size: 0.82rem !important;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: rgba(245, 255, 255, 0.88);
}

.modal-bottom-card p {
  margin: 0 0 0.65rem !important;
  color: rgba(220, 232, 234, 0.72);
  font-size: 0.84rem !important;
  line-height: 1.4;
}

.modal-bottom-card .btn,
.modal-bottom-card .modal-email-btn {
  width: auto !important;
  min-width: 165px;
  max-width: 100%;
  min-height: 36px;
  padding: 0.62rem 0.9rem;
  margin: 0;
  font-size: 0.74rem;
  justify-self: start;
}

.modal-bottom-card .social-icon-links,
.modal-bottom-card .modal-social-icons {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.25rem !important;
}

.modal-bottom-card .social-icon-links a,
.modal-bottom-card .modal-social-icons a {
  width: 34px;
  height: 34px;
}
@media (max-width: 720px) {
  .modal-bottom-panel {
  grid-template-columns: 1fr !important;
}

  .start-modal-head {
    padding-right: 2.75rem;
  }
}

@media (max-width: 620px) {
  .modal-backdrop {
    align-items: start;
    overflow-y: auto;
  }

  .modal-panel {
    width: 100%;
    max-height: none;
    margin: 0.5rem auto;
    padding: 1rem;
    border-radius: 8px;
  }

  .start-modal-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }
}
/* =========================
   FORM
========================= */

.project-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

label span {
  color: var(--cyan);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(92, 244, 236, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(8, 13, 16, 0.94), rgba(2, 5, 7, 0.94));
  color: var(--text);
  padding: 0.78rem 1rem;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 0 0 rgba(92, 244, 236, 0);
}

textarea {
  min-height: 118px;
  resize: vertical;
}
/* Start Here modal form compact override */
.project-form.start-modal-form {
  margin-top: 0.85rem;
  gap: 0.58rem;
}

.project-form.start-modal-form label {
  font-size: 0.8rem;
}

.project-form.start-modal-form input,
.project-form.start-modal-form select {
  min-height: 40px;
  padding: 0.64rem 0.85rem;
}

.project-form.start-modal-form textarea {
  min-height: 78px;
  padding: 0.7rem 0.85rem;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(92, 244, 236, 0.78);
  box-shadow:
    0 0 0 3px rgba(92, 244, 236, 0.08),
    0 0 24px rgba(92, 244, 236, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-message {
  min-height: 1.3rem;
  margin: 0;
  font-size: 0.92rem;
}

.form-message.success {
  color: var(--cyan);
}

.form-message.error {
  color: #ffb3b3;
}

/* =========================
   FAQ
========================= */

.faq-panel {
  width: min(100%, 820px);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid rgba(92, 244, 236, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1rem;
  text-align: left;
  font-weight: 800;
}

.faq-question::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.2rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 1rem 1rem;
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  margin-top: 1.4rem;
}
/* =========================
   BUTTON SAFETY / FOOTER FIX
========================= */

.footer-col .btn,
.footer-col .btn-primary,
.footer-col .faq-cta {
  width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  justify-content: flex-start;
}

.footer-col .btn::before,
.footer-col .btn::after,
.footer-col .btn-primary::before,
.footer-col .btn-primary::after {
  display: none;
}

.footer-col .btn:hover,
.footer-col .btn-primary:hover,
.footer-col .faq-cta:hover {
  color: var(--cyan);
  transform: none;
  box-shadow: none;
}

.project-form .btn-primary,
.faq-panel .btn-primary,
.hero-actions .btn-primary,
.nav-actions .btn-primary {
  font-family: var(--font-accent);
  font-weight: 800;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-main {
    letter-spacing: 0.46em;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-main {
    max-width: 170px;
    font-size: 0.56rem;
    letter-spacing: 0.42em;
    line-height: 1.2;
  }

  .brand-text::after {
    width: 100%;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 0.88rem;
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .footer-grid,
  .footer-grid-simple,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal-links {
    flex-wrap: wrap;
  }

  .modal-backdrop {
    align-items: start;
    padding: 0.75rem;
    overflow-y: auto;
  }

  .modal-panel {
    width: 100%;
    max-height: none;
    margin: 0.75rem auto;
    padding: 1.15rem;
    border-radius: 8px;
  }

  .large-modal {
    width: min(100%, 540px);
  }

  .modal-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 40px;
    height: 40px;
  }

  .modal-panel h2 {
    max-width: calc(100% - 48px);
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .modal-panel p {
    font-size: 0.96rem;
  }

  .project-form {
    gap: 0.9rem;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    padding: 0.85rem 0.9rem;
    border-radius: 13px;
  }

  textarea {
    min-height: 120px;
  }
}

@media (max-width: 420px) {
  .brand-main {
    max-width: 138px;
    font-size: 0.5rem;
    letter-spacing: 0.34em;
  }

  .nav-shell {
    width: min(calc(100% - 18px), 1240px);
    gap: 0.55rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-cta {
    padding-inline: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================
   RESPONSIVE FOOTER FIX
   Brand full width, Explore/Support side-by-side
========================= */

@media (max-width: 920px) {
  .site-footer {
    padding: 2.9rem 0 1.25rem;
  }

  .footer-grid,
  .footer-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.4rem;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-brand p {
    max-width: 860px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .footer-col {
    display: grid !important;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.62rem;
    width: 100%;
  }

  .footer-col h2 {
    margin-bottom: 0.25rem;
    width: auto;
  }

  .footer-col a,
  .footer-button {
    display: block;
    width: fit-content;
    min-width: 0;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2rem;
    padding-top: 1rem;
    gap: 0.75rem;
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }
}

@media (max-width: 390px) {
  .footer-grid,
  .footer-grid-simple {
    gap: 1.8rem 1rem;
  }

  .footer-col a,
  .footer-button {
    font-size: 0.9rem;
  }
}
  .footer-grid,
  .footer-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.4rem;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .footer-col {
    display: grid !important;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.6rem;
    width: 100%;
  }

  .footer-col h2 {
    margin-bottom: 0.25rem;
    width: auto;
  }

  .footer-col a,
  .footer-button {
    display: block;
    width: fit-content;
    min-width: 0;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2rem;
    padding-top: 1rem;
    gap: 0.75rem;
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
  }
/* =========================================================
   DVS TECH — PHASE 1 VISUAL SYSTEM REFRESH
   Gunmetal / Bright Cyan / Premium Tech Direction
========================================================= */

:root {
  /* Core brand color */
  --cyan: #5cf4ec;
  --cyan-bright: #8ffff8;
  --cyan-hot: #b9fffb;
  --cyan-deep: #18d7cf;

  /* Teal is now secondary only */
  --teal: #069e96;
  --teal-muted: #075f5b;

  /* Gunmetal base system */
  --bg: #0a0d10;
  --bg-2: #11171c;
  --bg-3: #171f27;

  --gunmetal: #121820;
  --gunmetal-2: #19222a;
  --gunmetal-3: #202a33;
  --steel: #26313b;

  /* Surfaces */
  --card: rgba(22, 31, 39, 0.78);
  --card-strong: rgba(26, 37, 46, 0.94);
  --card-metal: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012) 34%,
    rgba(11, 16, 20, 0.9)
  );

  /* Text */
  --text: #f5ffff;
  --text-soft: #dce8ea;
  --muted: #aab9bd;
  --muted-2: #74878d;

  /* Lines / Glow */
  --border: rgba(92, 244, 236, 0.18);
  --border-strong: rgba(92, 244, 236, 0.44);
  --border-soft: rgba(255, 255, 255, 0.075);

  --shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 18px 58px rgba(0, 0, 0, 0.32);
  --glow: 0 0 38px rgba(92, 244, 236, 0.25);
  --glow-strong: 0 0 54px rgba(92, 244, 236, 0.34);

  /* Font swap controls */
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Space Grotesk", system-ui, sans-serif;
}

/* Page base: gunmetal instead of black/green */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(92, 244, 236, 0.105), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(92, 244, 236, 0.07), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(92, 244, 236, 0.045), transparent 40%),
    linear-gradient(180deg, #0a0d10 0%, #11171c 42%, #090d10 100%);
  color: var(--text);
}

body::before {
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.022) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.9;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

/* Adds subtle premium depth without affecting clicks */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.018), transparent 26%, rgba(92, 244, 236, 0.025) 48%, transparent 70%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 35%);
}

/* Typography polish */
h1,
h2,
h3 {
  color: var(--text);
  text-wrap: balance;
}

h1 {
  letter-spacing: -0.07em;
}

h2 {
  letter-spacing: -0.062em;
}

p {
  color: var(--muted);
}

.eyebrow {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(92, 244, 236, 0.24);
}

/* Selection / focus */
::selection {
  background: rgba(92, 244, 236, 0.32);
  color: #061012;
}

:focus-visible {
  outline: 2px solid rgba(92, 244, 236, 0.9);
  outline-offset: 5px;
}

/* Header: keep layout, make it more premium gunmetal */
.site-header {
  background:
    linear-gradient(180deg, rgba(17, 23, 28, 0.82), rgba(8, 12, 15, 0.72));
  border-bottom: 1px solid rgba(92, 244, 236, 0.13);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035);
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(17, 23, 28, 0.96), rgba(8, 12, 15, 0.92));
  border-color: rgba(92, 244, 236, 0.24);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(92, 244, 236, 0.06);
}

.brand-main,
.footer-brand-main {
  color: rgba(245, 255, 255, 0.68);
}

.brand-text::after,
.footer-brand-text::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.2),
    rgba(92, 244, 236, 0.75),
    rgba(92, 244, 236, 0.2),
    transparent
  );
  box-shadow:
    0 0 18px rgba(92, 244, 236, 0.34),
    0 0 34px rgba(92, 244, 236, 0.1);
}


.btn-secondary {
  background:
    linear-gradient(180deg, rgba(31, 42, 51, 0.72), rgba(13, 19, 24, 0.82));
  border-color: rgba(92, 244, 236, 0.28);
  color: rgba(245, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

.btn-secondary:hover {
  background:
    linear-gradient(180deg, rgba(38, 51, 62, 0.82), rgba(15, 22, 28, 0.9));
  border-color: rgba(92, 244, 236, 0.62);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(92, 244, 236, 0.13);
}

/* Mobile menu */
.menu-toggle {
  background:
    linear-gradient(180deg, rgba(31, 42, 51, 0.78), rgba(12, 18, 23, 0.88));
  border-color: rgba(92, 244, 236, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.mobile-menu {
  border-color: rgba(92, 244, 236, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 244, 236, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(28, 38, 47, 0.98), rgba(10, 15, 19, 0.98));
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.mobile-menu > a:hover,
.mobile-menu > a[aria-current="page"],
.mobile-dropdown summary:hover,
.mobile-dropdown[open] summary,
.mobile-dropdown.is-current summary,
.mobile-dropdown summary[aria-current="page"] {
  background: rgba(92, 244, 236, 0.08);
  color: var(--cyan);
}

/* Footer: keep structure, make metal/cyan */
.site-footer {
  border-top-color: rgba(92, 244, 236, 0.16);
  background:
    radial-gradient(circle at 80% 0%, rgba(92, 244, 236, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(13, 18, 22, 0.96), rgba(5, 8, 10, 0.98));
}

.social-icon-links a {
  background:
    linear-gradient(180deg, rgba(31, 42, 51, 0.68), rgba(12, 18, 23, 0.84));
  border-color: rgba(92, 244, 236, 0.24);
  color: var(--cyan);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.social-icon-links a:hover {
  border-color: rgba(92, 244, 236, 0.72);
  background:
    linear-gradient(180deg, rgba(38, 51, 62, 0.78), rgba(12, 18, 23, 0.9));
  box-shadow:
    0 0 28px rgba(92, 244, 236, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.footer-bottom {
  border-top-color: rgba(92, 244, 236, 0.12);
}

/* Generic premium metal utility for cards across sections */
.value-card,
.work-card,
.service-card,
.creative-frame,
.creative-list article,
.mvp-shell,
.mvp-points article,
.process-card,
.final-cta-shell,
.final-cta-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(180deg, rgba(31, 42, 51, 0.82), rgba(12, 18, 23, 0.92)) !important;
  border-color: rgba(92, 244, 236, 0.17) !important;
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
}

/* Make cyan accents cleaner and brighter */
.value-number,
.work-tag,
.service-kicker,
.process-step,
.final-panel-top strong,
.mvp-core strong,
.creative-float strong,
.service-icon,
.faq-question::after,
label span {
  color: var(--cyan) !important;
}

/* Reduce green/teal wash on section glows */
.value-section::before,
.work-preview::before,
.services-overview::before,
.creative-section::before,
.creative-section::after,
.mvp-section::before,
.process-section::before,
.final-cta-section::before {
  background: radial-gradient(circle, rgba(92, 244, 236, 0.095), transparent 68%) !important;
}

/* Cleaner section separation */
.value-section,
.work-preview,
.services-overview,
.creative-section,
.mvp-section,
.process-section,
.final-cta-section {
  position: relative;
}

.value-section::after,
.services-overview::after,
.mvp-section::after,
.process-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.16),
    rgba(255, 255, 255, 0.06),
    rgba(92, 244, 236, 0.16),
    transparent
  );
  pointer-events: none;
}

/* Better hover depth */
.value-card:hover,
.work-card:hover,
.service-card:hover,
.creative-list article:hover,
.mvp-points article:hover,
.process-card:hover {
  border-color: rgba(92, 244, 236, 0.38) !important;
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(92, 244, 236, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Footer safety override remains protected */
.footer-col .btn,
.footer-col .btn-primary,
.footer-col .faq-cta {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Small mobile polish */
@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 20% 4%, rgba(92, 244, 236, 0.09), transparent 30%),
      linear-gradient(180deg, #0a0d10 0%, #11171c 48%, #090d10 100%);
  }

  .section-pad {
    padding: clamp(4.1rem, 14vw, 5.6rem) 0;
  }

  .btn {
    min-height: 50px;
  }
}
/* =========================================================
   DVS TECH — GLOBAL EYEBROW SYSTEM
   Logo-style labels with consistent spacing + glow underline
========================================================= */

.eyebrow,
p.eyebrow,
.modal-panel .eyebrow,
.faq-panel .eyebrow {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0;
  margin: 0 0 1.35rem;
  padding: 0 0 0.62rem;
  color: rgba(245, 255, 255, 0.68);
  font-family: var(--font-accent);
  font-size: clamp(0.58rem, 0.9vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.48em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: none;
}

.eyebrow::after,
p.eyebrow::after,
.modal-panel .eyebrow::after,
.faq-panel .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 310px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 244, 236, 0.18),
    rgba(92, 244, 236, 0.78),
    rgba(92, 244, 236, 0.18),
    transparent
  );
  box-shadow:
    0 0 18px rgba(92, 244, 236, 0.34),
    0 0 34px rgba(92, 244, 236, 0.1);
}

@media (max-width: 620px) {
  .eyebrow,
  p.eyebrow,
  .modal-panel .eyebrow,
  .faq-panel .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.32em;
    line-height: 1.35;
  }
}
/* =========================================================
   DVS TECH — BACKGROUND + BLACK NAV RESET
   Metallic gunmetal body / black navigation
========================================================= */

/* Main website background — darker metallic gunmetal */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(92, 244, 236, 0.055), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(92, 244, 236, 0.035), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.026), transparent 18%, rgba(255, 255, 255, 0.012) 36%, transparent 58%),
    linear-gradient(180deg, #050607 0%, #0d1115 36%, #121820 62%, #07090b 100%) !important;
  color: var(--text);
}

/* Subtle metallic texture/grid — less cyan wash */
body::before {
  background-image:
    linear-gradient(rgba(92, 244, 236, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 244, 236, 0.014) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.58;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

/* Soft metal sheen, not green/teal */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.026) 18%, transparent 34%),
    linear-gradient(300deg, transparent 0%, rgba(92, 244, 236, 0.018) 42%, transparent 62%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 32%);
}

/* Nav back to clean black */
.site-header {
  background: rgba(0, 0, 0, 0.88) !important;
  border-bottom: 1px solid rgba(92, 244, 236, 0.14) !important;
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025) !important;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.96) !important;
  border-bottom-color: rgba(92, 244, 236, 0.24) !important;
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(92, 244, 236, 0.055),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025) !important;
}

/* Mobile menu should also feel black, not teal */
.mobile-menu {
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 244, 236, 0.07), transparent 42%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(0, 0, 0, 0.98)) !important;
  border-color: rgba(92, 244, 236, 0.18) !important;
}

/* Keep lower sections from looking too light against the darker body */
.value-section,
.services-overview,
.process-section,
.creative-section,
.mvp-section,
.work-cta-section,
.final-cta-section {
  background-color: transparent;
}
.inline-faq-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.65rem;
  color: var(--cyan);
  font-weight: 800;
  border-bottom: 1px solid rgba(92, 244, 236, 0.45);
}

.inline-faq-link:hover {
  color: #b9fffb;
  border-bottom-color: rgba(185, 255, 251, 0.85);
}