/* ==========================================================================
   Town Runner - Industrial Dashboard Concept
   ========================================================================== */

:root {
  --industrial-black: #0D0F11;
  --safety-orange: #FF5E00;
  --card-bg: #FFFFFF;
  --text-main: #1A202C;
  --text-muted: #5A6A85;
  --font-stack: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F3F5F8;
  color: var(--text-main);
  font-family: var(--font-stack);
  overflow-x: hidden;
}

/* Minimalist Nav Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--industrial-black);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-status {
  background-color: #E2E8F0;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  color: #2B6CB0 !important;
  font-size: 0.8rem !important;
}

/* ==========================================================================
   Overlapping Dashboard Layout Setup
   ========================================================================== */

.showcase-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 6rem;
  padding-top: 8rem; /* Creates clearance for the absolute navbar */
}

/* The Floating Card UI Block */
.logistics-card {
  background-color: var(--card-bg);
  width: 580px;
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(13, 15, 17, 0.12);
  position: relative;
  z-index: 5; /* Forces the card to hover over the image background */
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.badge-amber {
  background-color: rgba(255, 94, 0, 0.1);
  color: var(--safety-orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.cutoff-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cutoff-notice strong {
  color: var(--industrial-black);
}

.logistics-card h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--industrial-black);
  margin-bottom: 1.5rem;
}

.logistics-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Inline Dashboard Process Strip */
.steps-strip {
  display: flex;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1rem;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step-node {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-main);
}

.step-node strong {
  color: var(--safety-orange);
  display: block;
}

/* Industrial Action Call Button */
.btn-cta-orange {
  display: block;
  background-color: var(--safety-orange);
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 94, 0, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-cta-orange:hover {
  background-color: var(--industrial-black);
  transform: translateY(-2px);
}

/* ==========================================================================
   Full Width Visual Pane Layer
   ========================================================================== */

.showcase-bg-pane {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%; /* Covers slightly more than half the screen background */
  height: 100%;
  z-index: 1;
}

.hero-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle graphic shadow gradient to blend the image edge smooth on the left */
.image-overlay-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #F3F5F8 0%, rgba(243, 245, 248, 0) 25%);
}

/* ==========================================================================
   Mobile Responsive Engine
   ========================================================================== */

@media (max-width: 1100px) {
  .navbar { padding: 1.5rem 2rem; }
  .showcase-container { padding: 0 2rem; padding-top: 8rem; justify-content: center; }
  .logistics-card { width: 100%; padding: 2rem; }
  .showcase-bg-pane { display: none; } /* Drop complex backdrops on small screens */
  .steps-strip { flex-direction: column; }
}