/* =====================================================
   SipanLabs LLC — style.css (FINAL)
   Brand Colors: Gold (#d4af37) + Turquoise (#40e0d0)
   Institutional Header: Full-Width, No Logo, Brand Colors Only
   ===================================================== */

/* ======================
   CSS Variables (Theme)
   ====================== */
:root {
  --gold: #d4af37;
  --gold-dim: #a07d1a;
  --turquoise: #40e0d0;
  --turquoise-dim: #28a89a;
  --dark-bg: #0a0a0a;
  --dark-card: #101418;
  --dark-section: #0d1117;
  --dark-green: #1e3a1e;
  --dark-green-dim: #0f1f0f;
  --border: #1e2a1e;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-teal: rgba(64, 224, 208, 0.2);
  --text-white: #f0f2f0;
  --text-gray: #a0a0a0;
  --text-muted: #5a6a5a;
  --grid-color: #1a1a1a;

  /* Typography */
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

/* ======================
   Reset & Base
   ====================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

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

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

/* ======================
   Animated Background Grid
   ====================== */
.grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--grid-color) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
  opacity: 0.5;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

/* ======================
   Particle Canvas
   ====================== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ======================
   Utility — Accent Colors
   ====================== */
.accent-gold {
  color: var(--gold);
}
.accent-turquoise {
  color: var(--turquoise);
}

/* ======================
   NAV
   ====================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: var(--text-white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--turquoise);
}

.nav-cta-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 20px;
  transition:
    background 0.25s,
    color 0.25s;
}

.nav-cta-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.nav-cta-btn:focus {
  outline: 2px solid var(--turquoise);
  outline-offset: 3px;
}

/* ======================
   Live Bar
   ====================== */
.live-bar {
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(64, 224, 208, 0.05);
  border-bottom: 1px solid var(--border-teal);
  padding: 6px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--turquoise);
  text-transform: uppercase;
}

/* ======================
   Status Indicator (Steady - No Pulse)
   ====================== */
.status-indicator-steady {
  width: 8px;
  height: 8px;
  background-color: var(--turquoise);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(64, 224, 208, 0.6);
}

/* ======================
   SOC Phone Number
   ====================== */
.soc-phone {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffb800;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.45);
  animation: gold-pulse 3s ease-in-out infinite;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.soc-phone:hover {
  color: var(--turquoise);
  text-shadow: 0 0 14px rgba(64, 224, 208, 0.6);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

@keyframes gold-pulse {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 184, 0, 0.9);
  }
}

/* ======================
   HERO SLIDER WRAPPER
   ====================== */
.hero-slider-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 101px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-slide--video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(10, 10, 10, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: var(--text-white);
  padding: 0 24px;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--turquoise);
}

.punch-statement {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sub-statement {
  font-size: 1.05rem;
  color: rgba(240, 242, 240, 0.82);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 13px 30px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    color 0.3s;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.cta-button--teal {
  border-color: var(--turquoise);
  color: var(--turquoise);
}

.cta-button--teal:hover {
  background: var(--turquoise);
  color: var(--dark-bg);
}

/* Slick carousel overrides */
.hero-slider-wrapper .slick-dots {
  bottom: 20px;
  z-index: 10;
}

.hero-slider-wrapper .slick-dots li button::before {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.5;
}

.hero-slider-wrapper .slick-dots li.slick-active button::before {
  color: var(--gold);
  opacity: 1;
}

.hero-slider-wrapper .slick-prev,
.hero-slider-wrapper .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}

.hero-slider-wrapper .slick-prev {
  left: 24px;
}
.hero-slider-wrapper .slick-next {
  right: 24px;
}

.hero-slider-wrapper .slick-prev::before,
.hero-slider-wrapper .slick-next::before {
  font-size: 34px;
  color: var(--gold);
  opacity: 0.85;
}

/* ══════════════════════════════════════════════════════════════
   INSTITUTIONAL HEADER (Full-Width, Brand Colors, No Logo)
   Using: Gold (#d4af37), Turquoise (#40e0d0), Dark Green (#1e3a1e)
   ══════════════════════════════════════════════════════════════ */

.institutional-header {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0;
  width: 100%;
}

/* ─────────────────────────────────────────────
   Top Bar: Location/Service/Operations (NO LOGO)
   Full-width with dark green background
   ───────────────────────────────────────────── */
.institutional-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--dark-green-dim) 100%
  );
  border-bottom: 1px solid var(--border-gold);
  gap: 3rem;
  width: 100%;
}

.inst-info {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.inst-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 150px;
  text-align: center;
}

.inst-label {
  font-size: 0.65rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--turquoise);
  font-family: var(--font-mono);
}

.inst-value {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  color: var(--gold);
  font-family: var(--font-body);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.inst-separator {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-gold),
    transparent
  );
}

/* ─────────────────────────────────────────────
   Compliance Metrics — 2x2 Grid (Full Width)
   ───────────────────────────────────────────── */
.compliance-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-gold);
  width: 100%;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2.5rem 3rem;
  background: var(--dark-card);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay on hover */
.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.03) 0%,
    rgba(64, 224, 208, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card:hover {
  background: #141c14;
  transform: translateY(-2px);
}

/* Left border accent - alternates gold/turquoise */
.metric-card:nth-child(1)::after,
.metric-card:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:nth-child(2)::after,
.metric-card:nth-child(4)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--turquoise),
    var(--turquoise-dim)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-indicator {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  align-self: flex-start;
  border: 1px solid var(--border-gold);
  font-family: var(--font-mono);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.metric-stat {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--turquoise);
  font-family: var(--font-mono);
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px rgba(64, 224, 208, 0.15);
}

.metric-context {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-gray);
  font-weight: 400;
  font-family: var(--font-body);
}

/* ======================
   Container
   ====================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======================
   Sections — Shared
   ====================== */
.section {
  position: relative;
  z-index: 10;
}

.section--dark {
  background: var(--dark-section);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.section--black {
  background: var(--dark-bg);
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 40px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--turquoise);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--turquoise);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(to right, var(--gold), var(--turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  max-width: 520px;
  margin-bottom: 56px;
  font-weight: 300;
  line-height: 1.7;
}

/* ======================
   Scroll Reveal
   ====================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   THREAT SECTION
   ====================== */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}

.threat-card {
  background: var(--dark-card);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
  cursor: default;
}

.threat-card:hover {
  background: #141c14;
}

.threat-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
}

.threat-icon svg {
  width: 20px;
  height: 20px;
}

.threat-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
}

.threat-desc {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
  flex: 1;
}

.threat-risk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: auto;
}

.threat-risk::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.threat-risk--critical {
  color: var(--gold);
}
.threat-risk--critical::before {
  background: var(--gold);
}

.threat-risk--high {
  color: var(--turquoise);
}
.threat-risk--high::before {
  background: var(--turquoise);
}

/* ======================
   WHAT WE DO — Services
   ====================== */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-list {
  border: 1px solid var(--border-gold);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.2s;
  cursor: default;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background: rgba(212, 175, 55, 0.04);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 26px;
  margin-top: 4px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 6px;
}

.service-detail {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* Coverage panel */
.coverage-panel {
  background: var(--dark-card);
  border: 1px solid var(--border-gold);
  padding: 36px;
}

.coverage-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.ring-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.ring-container {
  position: relative;
  width: 190px;
  height: 190px;
}

.ring-svg {
  width: 100%;
  height: 100%;
}

.ring-track {
  fill: none;
  stroke: #1e2a1e;
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 534;
  stroke-dashoffset: 54;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: ringFill 2.2s ease-out both;
}

@keyframes ringFill {
  from {
    stroke-dashoffset: 534;
  }
  to {
    stroke-dashoffset: 54;
  }
}

.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(to right, var(--gold), var(--turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ring-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.coverage-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-gold);
}

.coverage-metric {
  background: var(--dark-section);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cm-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--turquoise);
  line-height: 1;
}

.cm-lbl {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ======================
   CTA SECTION
   ====================== */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-bullets li {
  font-size: 0.88rem;
  color: rgba(240, 242, 240, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.cta-bullets li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Form card */
.form-card {
  background: var(--dark-card);
  border: 1px solid var(--border-gold);
  padding: 40px 36px;
}

.form-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--turquoise);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
  line-height: 1.1;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.form-row input,
.form-row select {
  width: 100%;
  background: var(--dark-bg);
  border: 1px solid #1e2a1e;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--gold);
}

.form-row select option {
  background: var(--dark-card);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-submit:hover {
  background: var(--turquoise);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  background: #2a3a2a;
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ======================
   FOOTER
   ====================== */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--dark-bg);
  border-top: 1px solid var(--border-gold);
}

.footer-inner {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
}

.footer-location {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd700;
  border-left: 3px solid #bf0a30;
  background: rgba(0, 40, 104, 0.2);
  padding: 4px 10px;
  display: inline-block;
  border-radius: 2px;
}

.contact {
  font-family: "Courier New", monospace;
  color: var(--text-gray);
  animation: fadeIn 2s ease-out;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--turquoise);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--turquoise);
}

.contact-link:hover::after {
  width: 100%;
}

.contact-link:focus {
  outline: 2px solid var(--turquoise);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ======================
   Animations
   ====================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ======================
   Hamburger Menu Button
   ====================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-gold);
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.hamburger:hover {
  border-color: var(--gold);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ======================
   Mobile Nav Drawer
   ====================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 198;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 16px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-nav a:first-child {
  border-top: 1px solid var(--border-gold);
}

.mobile-nav a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.mobile-nav .mobile-cta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark-bg);
  background: var(--gold);
  border: none;
  margin-top: 32px;
  padding: 18px 40px;
  width: auto;
}

.mobile-nav .mobile-cta:hover {
  background: var(--turquoise);
  color: var(--dark-bg);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ======================
   Tablet: Institutional Header + Layout
   ====================== */
@media (max-width: 968px) {
  .institutional-bar {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .inst-info {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .inst-item {
    align-items: center;
    min-width: auto;
  }

  .inst-separator {
    display: none;
  }

  .compliance-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ======================
   Mobile
   ====================== */
@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }

  .live-bar {
    padding: 6px 16px;
    top: 65px;
  }
  .live-text {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .hero-slider-wrapper {
    margin-top: 97px;
  }
  .hero-slide {
    height: 480px;
  }
  .punch-statement {
    font-size: 1.9rem;
    letter-spacing: 0.02em;
  }
  .sub-statement {
    font-size: 0.88rem;
    margin-bottom: 22px;
  }
  .hero-eyebrow {
    font-size: 0.6rem;
  }
  .cta-button {
    font-size: 0.68rem;
    padding: 12px 22px;
  }

  .institutional-bar {
    padding: 1.5rem 1rem;
  }

  .inst-label {
    font-size: 0.6rem;
  }

  .inst-value {
    font-size: 0.9rem;
  }

  .metric-card {
    padding: 1.5rem 1.25rem;
  }

  .metric-stat {
    font-size: 1.4rem;
  }

  .metric-context {
    font-size: 0.84rem;
  }

  .section-inner {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 36px;
  }

  .threat-grid {
    grid-template-columns: 1fr;
  }
  .threat-card {
    padding: 24px 20px;
  }

  .service-item {
    padding: 20px 16px;
    gap: 14px;
  }
  .service-name {
    font-size: 1.1rem;
  }
  .coverage-panel {
    padding: 26px 20px;
  }

  .cta-headline {
    font-size: 2rem;
  }
  .cta-desc {
    font-size: 0.9rem;
  }
  .cta-bullets li {
    font-size: 0.84rem;
  }

  .form-card {
    padding: 28px 20px;
  }
  .form-title {
    font-size: 1.4rem;
  }
  .form-row input,
  .form-row select {
    font-size: 1rem;
    padding: 13px 12px;
  }
  .btn-submit {
    padding: 18px;
    font-size: 0.78rem;
  }

  .footer-inner {
    padding: 32px 16px;
    gap: 12px;
  }
  .footer-brand {
    font-size: 1.2rem;
  }
}

/* ======================
   Small Mobile
   ====================== */
@media (max-width: 480px) {
  .institutional-bar {
    padding: 1.25rem 0.75rem;
  }

  .metric-card {
    padding: 1.25rem 1rem;
  }

  .metric-stat {
    font-size: 1.25rem;
  }

  .metric-indicator {
    font-size: 0.6rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-slide {
    height: 420px;
  }
  .punch-statement {
    font-size: 1.6rem;
  }
  .sub-statement {
    font-size: 0.82rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .ring-container {
    width: 160px;
    height: 160px;
  }
  .ring-pct {
    font-size: 2.2rem;
  }

  .coverage-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .cm-num {
    font-size: 1.3rem;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }
  .nav-logo-img {
    width: 32px;
    height: 32px;
  }
}

/* ======================
   XSmall (360px)
   ====================== */
@media (max-width: 360px) {
  .punch-statement {
    font-size: 1.35rem;
    letter-spacing: 0.01em;
  }
  .hero-slide {
    height: 400px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .mobile-nav a {
    font-size: 2.2rem;
  }
}
