:root {
  --bg: #0e1117;
  --panel: #161b22;
  --panel-soft: #1f2630;
  --text: #f5f7fa;
  --muted: #a9b3c1;
  --line: #2a3340;
  --orange: #ff8a1f;
  --green: #31c46b;
  --yellow: #f5c542;
  --gray: #7f8792;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 31, 0.18), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 17, 23, 0.88);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-with-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0.35rem;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

h3 {
  margin-bottom: 0.25rem;
}

.hero-text,
.section-text {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.08rem;
}

.search-card {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  max-width: 720px;
  margin: 1.5rem 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.search-card input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  padding: 0.85rem;
}

.search-card input::placeholder {
  color: var(--muted);
}

button,
.button {
  border: 0;
  border-radius: 0.8rem;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button,
.button.primary {
  background: var(--orange);
  color: #1b1004;
}

button:hover,
.button.primary:hover {
  background: #ffa24d;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card,
.activity-card,
.cta-card {
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.stat-card {
  padding: 1rem 1.2rem;
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.activity-list {
  display: grid;
  gap: 1rem;
}

.activity-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.activity-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.activity-card h3 a {
  text-decoration: none;
}

.activity-card h3 a:hover {
  color: var(--orange);
}

.activity-time {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.status-badge.open {
  background: rgba(49, 196, 107, 0.16);
  color: var(--green);
}

.status-badge.soon {
  background: rgba(245, 197, 66, 0.16);
  color: var(--yellow);
}

.status-badge.offline {
  background: rgba(127, 135, 146, 0.16);
  color: var(--gray);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cta-card p {
  color: var(--muted);
}

.cta-card.accent {
  border-color: rgba(255, 138, 31, 0.5);
}

.text-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.truck-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.truck-image-card {
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1rem;
  max-width: 360px;
  justify-self: end;
}

.truck-image-card img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 1rem;
}

.truck-meta {
  color: var(--muted);
  margin: 1.25rem 0;
}

.truck-meta p {
  margin-bottom: 0.4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1rem;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .search-card {
    flex-direction: column;
  }

  .stats,
  .split-section,
  .cta-grid,
  .truck-hero {
    grid-template-columns: 1fr;
  }

  .activity-card {
    flex-direction: column;
  }

  .activity-time {
    white-space: normal;
  }

  .truck-image-card {
    max-width: 280px;
    justify-self: start;
  }
}
.site-header .brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: fit-content;
}

.site-header .brand-with-logo img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain;
  display: block;
  border-radius: 0.35rem;
}

.site-header .brand-with-logo span {
  font-size: 1rem;
  line-height: 1;
}