:root {
  color-scheme: light;
  --ink: #0b1d35;
  --muted: #66758a;
  --line: #dfe6ee;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --green: #08a96b;
  --green-dark: #087d53;
  --red: #e84545;
  --amber: #e4a11b;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgb(11 29 53 / 9%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #001d22;
  background: #14d295;
  font-weight: 900;
}

.map-button,
.primary,
.secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 800;
}

.map-button,
.primary {
  color: white;
  background: var(--ink);
}

.secondary {
  border: 1px solid var(--line);
  background: white;
}

main,
footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  padding: 22px 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--green-dark);
}

.hero {
  overflow: hidden;
  margin: 16px 0;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgb(20 210 149 / 35%), transparent 31%),
    linear-gradient(145deg, #071a33, #0c2948);
  box-shadow: 0 24px 70px rgb(10 35 60 / 14%);
}

.eyebrow {
  color: #0b9c68;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
}

.hero .eyebrow {
  color: #55e6b6;
}

.hero h1 {
  max-width: 820px;
  margin: 10px 0 14px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: #d9e8f3;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .primary {
  color: #03251c;
  background: #23d69e;
}

.hero .secondary {
  color: white;
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 8%);
}

.topic-nav {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 10px 0 24px;
  scrollbar-width: none;
}

.topic-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px 16px;
}

.results-head h2,
.notice h2,
.station-detail h2 {
  margin: 4px 0 0;
  font-size: clamp(23px, 3vw, 32px);
}

.results-head > strong {
  color: var(--muted);
  white-space: nowrap;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.station-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgb(20 38 60 / 5%);
}

.station-card h2 {
  margin: 10px 0 2px;
  font-size: 20px;
  line-height: 1.2;
}

.station-card h2 a {
  text-decoration: none;
}

.station-card h2 a:hover {
  color: var(--green-dark);
}

.address {
  margin: 0;
  color: var(--muted);
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status.available {
  color: #087849;
  background: #dff7ea;
}

.status.unavailable {
  color: #bd2929;
  background: #ffe5e5;
}

.status.unknown {
  color: #68778a;
  background: #edf1f5;
}

dl {
  min-width: 150px;
  margin: 0;
}

dl div + div {
  margin-top: 10px;
}

dt {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 8px 0;
}

.summary div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.summary strong {
  color: var(--green-dark);
  font-size: 34px;
}

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

.notice {
  margin: 34px 0;
  padding: 28px;
  border-radius: 24px;
  color: #17344c;
  background: #e5f8f0;
}

.notice p {
  max-width: 800px;
}

.notice a {
  color: var(--green-dark);
  font-weight: 800;
}

.station-detail {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}

.station-detail > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.station-summary p {
  margin-bottom: 24px;
  color: var(--muted);
}

.fuel-list,
.report-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.fuel-list li,
.report-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.fuel-list span,
.report-list span {
  color: var(--muted);
  font-size: 13px;
}

footer {
  padding: 24px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .map-button {
    padding-inline: 13px;
    font-size: 13px;
  }

  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .station-grid,
  .station-detail {
    grid-template-columns: 1fr;
  }

  .station-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  dl div + div {
    margin-top: 0;
  }

  .summary {
    grid-template-columns: 1fr;
  }
}
