/* Site-specific layer on top of the original Tailwind bundle */
:root {
  --silver: #c0c0c0;
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #0a0a0a;
  background: #ffffff;
}

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

.font-display { font-weight: 900; letter-spacing: -0.025em; line-height: 1.05; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #737373;
}

/* Hero background image */
.hero-bg-image {
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)), url('/assets/images/ultra-long-range.jpg');
  background-size: cover;
  background-position: center;
}

/* Italic accent inside the headline */
.headline-accent {
  font-style: italic;
  font-weight: 400;
  color: #c0c0c0;
}

/* Smooth focus states */
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid #0a0a0a;
  outline-offset: 2px;
}

/* Mobile menu animation */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }

/* Fade-in helper */
.fade-in { animation: fadeIn 0.6s ease forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }

/* Empty leg card route line */
.route-line {
  position: relative;
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255,255,255,0.4) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.route-line::before, .route-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}
.route-line::before { left: 0; }
.route-line::after { right: 0; }

/* Map height */
#map { height: 480px; }
@media (max-width: 1023px) { #map { height: 360px; } }

/* FAQ details marker */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details > summary::after { content: '+'; font-weight: 300; font-size: 1.5rem; line-height: 1; transition: transform 0.2s; }
details[open] > summary::after { content: '−'; }

/* Selection */
::selection { background: #0a0a0a; color: #ffffff; }

/* Honeypot field */
.hp { position: absolute; left: -9999px; }
