/* ========================================
   NOVAGRID - Static Site Styles
   Vanilla CSS replacing Tailwind classes
   ======================================== */

/* CSS Variables */
:root {
  /* Logo colors extracted: #1500FF → #8000FF gradient */
  --brand-blue: #1500FF;
  /* Primary - from logo gradient start */
  --brand-violet: #8000FF;
  /* Secondary - from logo gradient end */
  --brand-dark: #0a0a14;
  /* Deep dark for contrast */
  --brand-cyan: #0891b2;
  /* Accent for status/active states */

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--slate-900);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background-color: var(--brand-violet);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-violet);
  border-radius: 3px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo {
  height: 2.5rem;
  width: auto;
}

.nav-links {
  display: none;
  gap: 3rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links button {
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--slate-600);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-links button:hover {
  color: var(--brand-violet);
}

/* ========================================
   HERO SECTION
   ======================================== */
.main-content {
  padding-top: 5rem;
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.mesh-gradient {
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2394a3b8' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
  display: none;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 1rem;
  width: 100%;
}

.hero-badge-line {
  width: 1rem;
  height: 1rem;
  background: var(--brand-violet);
  margin-right: 0.5rem;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--brand-violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
  color: var(--brand-dark);
  line-height: 1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--brand-blue), var(--brand-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  max-width: 36rem;
  padding: 0;
}

.hero-description p {
  font-size: 1.25rem;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--brand-dark);
  color: var(--white);
  box-shadow: none;
  border: 1px solid var(--brand-dark);
}

.btn-primary:hover {
  background: var(--brand-violet);
  box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
  border-color: var(--brand-violet);
  color: var(--brand-violet);
}

.btn-dark {
  background: var(--slate-900);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--slate-700);
}

.btn-dark:hover {
  background: var(--slate-800);
}

/* ========================================
   DOMAINS SECTION
   ======================================== */
.domains-section {
  background: var(--brand-dark);
  padding: 3rem 2rem;
  border-top: 1px solid var(--slate-800);
  border-bottom: 1px solid var(--slate-800);
}

.domains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .domains-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.domain-item {
  cursor: default;
}

.domain-line {
  height: 4px;
  width: 2rem;
  background: var(--brand-violet);
  margin-bottom: 1.5rem;
  transition: width 0.5s ease-out;
}

.domain-item:hover .domain-line {
  width: 100%;
}

.domain-title {
  font-size: 1.25rem;
  font-family: var(--font-mono);
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.domain-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.3s;
}

.domain-item:hover .domain-sub {
  color: var(--brand-cyan);
}

/* ========================================
   TRIAD SECTION
   ======================================== */
.triad-section {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.triad-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .triad-header {
    flex-direction: row;
  }
}

.triad-header-content {
  max-width: 42rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  font-weight: 300;
}

.triad-header-line {
  display: none;
  width: 6rem;
  height: 4px;
  background: var(--brand-violet);
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .triad-header-line {
    display: block;
  }
}

.triad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .triad-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.triad-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.triad-card:hover {
  background: var(--slate-50);
  border-color: var(--brand-dark);
}

.triad-card-glow {
  display: none;
}

.triad-icon-box {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--slate-200);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-50);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  border: 1px solid var(--slate-300);
}

.triad-card:hover .triad-icon-box {
  border-color: var(--brand-violet);
}

.triad-icon-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-900);
  transition: color 0.3s;
}

.triad-card:hover .triad-icon-text {
  color: var(--brand-violet);
}

.triad-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
  transition: color 0.3s;
}

.triad-card:hover .triad-card-title {
  color: var(--brand-violet);
}

.triad-card-desc {
  color: var(--slate-600);
  line-height: 1.75;
  font-size: 0.875rem;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission-section {
  padding: 6rem 2rem;
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-label {
  color: var(--brand-violet);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.section-label.cyan {
  color: var(--brand-cyan);
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--slate-600);
  line-height: 1.75;
  font-size: 1.125rem;
  font-weight: 300;
}

.mission-pillars {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar h4 {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.mission-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.visual-container {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  opacity: 0.2;
  transform: rotate(-12deg) scale(1.5);
}

.visual-status-card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 16rem;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-cyan);
  animation: pulse 2s infinite;
}

.status-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
}

.status-bar {
  height: 6px;
  width: 100%;
  background: var(--slate-100);
  border-radius: 9999px;
  overflow: hidden;
}

.status-bar-fill {
  height: 100%;
  background: var(--brand-cyan);
  width: 100%;
  animation: pulse 2s infinite;
}

.status-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 10px;
  color: var(--slate-400);
  font-family: var(--font-mono);
}

/* ========================================
   OPERATIONS SECTION
   ======================================== */
.operations-section {
  padding: 6rem 2rem;
  background: var(--brand-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.operations-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.operations-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(124, 58, 237, 0.1), transparent);
}

.operations-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .operations-grid {
    flex-direction: row;
  }
}

.terminal-wrapper {
  width: 100%;
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .terminal-wrapper {
    width: 50%;
    order: 1;
  }
}

.terminal-glow {
  display: none;
}

/* Terminal */
.terminal {
  position: relative;
  width: 100%;
  background: #000;
  /* Pure black */
  border-radius: 0;
  border: 1px solid var(--slate-700);
  padding: 1.5rem;
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--slate-800);
  padding-bottom: 0.75rem;
}

.terminal-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terminal-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--brand-violet);
  animation: pulse 2s infinite;
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--brand-violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.terminal-version {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--slate-500);
}

.terminal-display {
  min-height: 160px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.terminal-display p {
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.terminal-display .transmission {
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.terminal-display .report {
  color: var(--white);
  line-height: 1.75;
  border-left: 2px solid var(--brand-violet);
  padding-left: 1rem;
}

.terminal-cursor {
  color: var(--brand-violet);
  animation: blink 1s infinite;
}

.terminal-loading {
  display: none;
}

.terminal-loading .bar {
  height: 0.5rem;
  background: var(--slate-800);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  animation: pulse 1s infinite;
}

.terminal-loading .bar:nth-child(1) {
  width: 75%;
}

.terminal-loading .bar:nth-child(2) {
  width: 50%;
  animation-delay: 75ms;
}

.terminal-loading .bar:nth-child(3) {
  width: 66%;
  animation-delay: 150ms;
}

.terminal-loading .loading-text {
  color: var(--brand-cyan);
  margin-top: 1rem;
}

.terminal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-800);
}

.terminal-encryption {
  font-size: 0.75rem;
  color: var(--slate-600);
  font-family: var(--font-mono);
}

.btn-terminal {
  padding: 0.5rem 1.5rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: var(--brand-violet);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-terminal:hover {
  background: var(--brand-violet);
  border-color: var(--brand-violet);
  color: var(--white);
}

.btn-terminal:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.operations-content {
  width: 100%;
  order: 1;
}

@media (min-width: 1024px) {
  .operations-content {
    width: 50%;
    order: 2;
  }
}

.section-title-light {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .section-title-light {
    font-size: 3rem;
  }
}

.operations-description {
  margin-bottom: 2rem;
  color: var(--slate-400);
  line-height: 1.75;
  font-size: 1.125rem;
  font-weight: 300;
}

.operations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate-300);
  font-family: var(--font-mono);
}

.operations-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.list-arrow {
  color: var(--brand-violet);
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */
.locations-section {
  padding: 6rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.locations-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-description-center {
  color: var(--slate-500);
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .locations-grid {
    gap: 6rem;
  }
}

.location-item {
  text-align: center;
  cursor: pointer;
}

.location-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--slate-200);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 transparent;
}

.location-item:hover .location-dot {
  background: var(--brand-violet);
  box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.2);
}

.location-city {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.location-type {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   LEADERSHIP SECTION
   ======================================== */
.leadership-section {
  padding: 6rem 2rem;
  background: var(--slate-50);
}

.leadership-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 2rem;
}

.leadership-label {
  display: none;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--slate-400);
}

@media (min-width: 768px) {
  .leadership-label {
    display: block;
  }
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.director-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 0;
  border: 1px solid var(--slate-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-violet);
  opacity: 0;
  transition: opacity 0.3s;
}

@media (min-width: 640px) {
  .director-card {
    flex-direction: row;
    align-items: center;
  }
}

.director-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-violet);
  background: var(--slate-50);
}

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

.director-avatar {
  width: 7rem;
  height: 7rem;
  background: var(--slate-100);
  border-radius: 0;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--slate-200);
}

.director-info {
  flex: 1;
}

.director-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}

.director-role {
  color: var(--brand-dark);
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
}

.director-bio {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--brand-dark);
  color: var(--slate-400);
  padding: 5rem 2rem;
  border-top: 1px solid var(--slate-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
    gap: 4rem;
  }
}

.footer-brand .logo-white {
  height: 3rem;
  width: auto;
  margin-bottom: 2rem;
}

.footer-description {
  color: var(--slate-400);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 24rem;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-address-line {
  width: 4px;
  height: 3rem;
  background: var(--slate-700);
  border-radius: 9999px;
}

.footer-address strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-address span {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-address .cin {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-600);
}

.footer-links h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links ul+h4 {
  margin-top: 3rem;
}

.footer-links button {
  background: none;
  border: none;
  color: var(--slate-400);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links button:hover {
  color: var(--white);
}

.footer-contact h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.contact-card p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--white);
  font-size: 1.125rem;
  font-family: var(--font-mono);
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-all;
}

.contact-card a:hover {
  color: var(--brand-violet);
}

.regional-ops {
  margin-top: 2rem;
}

.regional-ops>p {
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-bottom: 0.5rem;
}

.regional-cities {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--slate-300);
}

.regional-cities .divider {
  color: var(--slate-700);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--slate-600);
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  font-family: var(--font-mono);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }
}

/* ========================================
   MODALS
   ======================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 42rem;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  animation: slideUp 0.3s ease-out;
  border: 1px solid var(--slate-100);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(248, 250, 252, 0.5);
  border-radius: 0.75rem 0.75rem 0 0;
}

.modal-header h2 {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--slate-900);
}

.modal-header p {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.modal-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  background: none;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-close:hover {
  color: var(--slate-900);
  background: var(--white);
  border-color: var(--slate-200);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.modal-body p {
  margin-bottom: 1.5rem;
}

.modal-body p::first-letter {
  font-weight: 700;
  margin-right: 0.25rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--slate-100);
  background: var(--white);
  border-radius: 0 0 0.75rem 0.75rem;
  display: flex;
  justify-content: flex-end;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}