:root {
  color-scheme: dark;
  --ink: #fbf7ef;
  --muted: #c7d1d8;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(13, 19, 26, 0.82);
  --amber: #f2b84b;
  --mint: #73d3b0;
  --coral: #ff7d6e;
  --blue: #7bb7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #14181e;
  color: var(--ink);
}

.route-app {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(115, 211, 176, 0.14), transparent 36%),
    linear-gradient(240deg, rgba(255, 125, 110, 0.16), transparent 34%),
    #14181e;
}

.route-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.72);
}

.brand-lockup,
.route-link,
.primary-action {
  color: inherit;
  text-decoration: none;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 800;
  font-size: 15px;
}

.brand-note {
  color: var(--muted);
  font-size: 13px;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.route-link,
.primary-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 750;
}

.route-link {
  border: 1px solid var(--line);
  color: var(--muted);
}

.primary-action {
  background: var(--amber);
  color: #17130b;
}

.route-main {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(26px, 6vw, 72px) 0 42px;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.route-copy {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 8vw, 76px);
  line-height: 0.98;
}

.route-summary {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2.6vw, 22px);
  line-height: 1.42;
}

.route-art {
  width: min(100%, 420px);
  justify-self: center;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.36));
}

.route-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.status-item {
  min-height: 124px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 16px;
}

.status-item strong {
  color: var(--ink);
  font-size: 15px;
}

.status-item span {
  color: var(--muted);
  line-height: 1.35;
}

.status-item[data-state="ready"] strong {
  color: var(--mint);
}

.status-item[data-state="gated"] strong {
  color: var(--coral);
}

.status-item[data-state="route"] strong {
  color: var(--blue);
}

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

  .route-actions {
    justify-content: flex-start;
  }

  .route-hero,
  .route-status {
    grid-template-columns: 1fr;
  }

  .route-art {
    max-height: 320px;
    object-fit: contain;
  }
}
