:root {
  color-scheme: dark;
  --bg: #08100e;
  --panel: #101917;
  --panel-2: #16231f;
  --line: rgba(217, 232, 221, 0.16);
  --text: #f2f6f0;
  --muted: #a9b9b0;
  --green: #7ee19d;
  --gold: #f1c76c;
  --blue: #78b8ff;
  --red: #ff867c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 8%, rgba(126, 225, 157, 0.14), transparent 28rem),
    linear-gradient(135deg, rgba(120, 184, 255, 0.07) 0 1px, transparent 1px 38px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(126, 225, 157, 0.42);
  border-radius: 8px;
  background: rgba(126, 225, 157, 0.1);
  color: var(--green);
  font-size: 0.86rem;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 28px 0 46px;
}

.hero.single-panel {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: start;
  min-height: auto;
  padding-top: 34px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.label,
.field-label,
.metric-card span,
.timeline span {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 520px;
  margin-bottom: 30px;
  color: #c9d5cf;
  font-size: 1.13rem;
  line-height: 1.6;
}

.search-card {
  width: min(100%, 430px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 25, 23, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 720;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-row input {
  min-width: 0;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07100e;
  color: var(--text);
  padding: 0 14px;
  font-weight: 760;
  text-transform: uppercase;
}

.search-row button,
.quick-picks button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 760;
}

.search-row button {
  min-width: 94px;
  background: var(--green);
  color: #06100b;
}

.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-picks button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.airport-panel,
.metar-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 35, 31, 0.95), rgba(9, 16, 14, 0.95));
  box-shadow: var(--shadow);
}

.airport-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.airport-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px 54px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px 54px);
  pointer-events: none;
}

.panel-head,
.field-grid,
.runway-visual {
  position: relative;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-head h2 {
  margin: 3px 0 2px;
  font-size: clamp(2rem, 8vw, 4.8rem);
  line-height: 0.9;
}

.panel-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.status-pill {
  min-width: 76px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(126, 225, 157, 0.14);
  color: var(--green);
  text-align: center;
  font-weight: 840;
}

.panel-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.unit-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.unit-toggle button {
  min-width: 42px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 840;
}

.unit-toggle button.is-active {
  background: rgba(126, 225, 157, 0.16);
  color: var(--green);
}

.speak-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(126, 225, 157, 0.28);
  border-radius: 8px;
  background: rgba(126, 225, 157, 0.12);
  color: var(--green);
  cursor: pointer;
  font-weight: 840;
}

.speak-button.is-speaking {
  background: var(--green);
  color: #06100b;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.field-grid > div,
.metric-card,
.runway-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.field-grid > div {
  min-height: 86px;
  padding: 14px;
}

.field-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
}

.advisory-notes {
  position: relative;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(241, 199, 108, 0.24);
  border-radius: 8px;
  background: rgba(241, 199, 108, 0.055);
}

.advisory-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.advisory-head h3 {
  margin: 4px 0 0;
  font-size: 1.12rem;
}

.advisory-head a {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(241, 199, 108, 0.26);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 820;
}

.advisory-list {
  display: grid;
  gap: 10px;
}

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

.advisory-item {
  padding: 12px;
  border: 1px solid rgba(217, 232, 221, 0.13);
  border-radius: 8px;
  background: rgba(7, 16, 14, 0.42);
}

.advisory-item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisory-item strong {
  display: block;
  margin-bottom: 6px;
}

.advisory-item p {
  margin-bottom: 8px;
  color: #dce6df;
  line-height: 1.5;
}

.advisory-item small {
  color: var(--muted);
}

.runway-visual {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.82fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.compass {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 290px;
  border: 1px solid rgba(217, 232, 221, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126, 225, 157, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle, transparent 0 56%, rgba(217, 232, 221, 0.08) 56.4%, transparent 57%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 68%);
  box-shadow:
    inset 0 0 42px rgba(126, 225, 157, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.compass > span {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 28px;
  height: 22px;
  border-radius: 999px;
  background: rgba(7, 16, 14, 0.62);
  color: #d7e6dc;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.compass > span:nth-child(1) {
  top: 12px;
}

.compass > span:nth-child(2) {
  right: 12px;
}

.compass > span:nth-child(3) {
  bottom: 12px;
}

.compass > span:nth-child(4) {
  left: 12px;
}

.compass-ticks {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  pointer-events: none;
}

.compass-ticks i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 10px;
  background: rgba(217, 232, 221, 0.28);
  transform: rotate(var(--tick)) translateY(-132px);
  transform-origin: 50% 0;
}

.compass-ticks i.major {
  width: 3px;
  height: 16px;
  background: rgba(217, 232, 221, 0.5);
}

.runway-strip {
  --favored-end-position: 0%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 68%;
  height: 62px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, rgba(0, 0, 0, 0.18) 72%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 11px),
    radial-gradient(circle at 72% 70%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 13px),
    #252927;
  transform: rotate(100deg);
  overflow: hidden;
  box-shadow:
    0 0 0 rgba(126, 225, 157, 0),
    inset 0 0 24px rgba(126, 225, 157, 0.08);
  animation: runwayGlow 4.8s ease-in-out infinite;
}

.runway-strip span {
  z-index: 3;
  position: static;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 880;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.runway-strip i {
  position: absolute;
  z-index: 2;
  inset: -20% auto -20% -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(126, 225, 157, 0.24), transparent);
  transform: skewX(-18deg);
  animation: runwaySweep 5.8s ease-in-out infinite;
}

.runway-threshold,
.favored-end {
  position: absolute;
  pointer-events: none;
}

.runway-threshold {
  z-index: 1;
  top: 10px;
  bottom: 10px;
  width: 18px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0 10px,
    transparent 10px 15px
  );
}

.threshold-low {
  left: 42px;
}

.threshold-high {
  right: 42px;
}

.favored-end {
  z-index: 0;
  left: var(--favored-end-position);
  top: 50%;
  width: 42%;
  height: 116%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(126, 225, 157, 0.34), transparent 64%);
  transform: translate(-12%, -50%);
  opacity: 0.78;
  animation: favoredEndGlow 3.4s ease-in-out infinite;
}

.wind-arrow {
  --wind-flow-angle: 0deg;
  position: absolute;
  z-index: 3;
  left: 5%;
  top: 50%;
  width: 90%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 199, 108, 0.12), var(--gold) 18%, var(--gold) 82%, rgba(241, 199, 108, 0.24));
  transform: rotate(var(--wind-flow-angle));
  transform-origin: 50% 50%;
  box-shadow: 0 0 22px rgba(241, 199, 108, 0.58);
  animation: windPulse 2.8s ease-in-out infinite;
}

.wind-stream {
  position: absolute;
  left: 8%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 199, 108, 0), rgba(241, 199, 108, 0.52), rgba(241, 199, 108, 0));
  pointer-events: none;
  animation: windFlow 2.8s linear infinite;
}

.stream-a {
  top: -18px;
  width: 62%;
}

.stream-b {
  top: 16px;
  width: 76%;
  animation-delay: 0.4s;
}

.stream-c {
  top: -34px;
  width: 42%;
  animation-delay: 0.8s;
  opacity: 0.72;
}

.wind-arrow::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.wind-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 242, 184, 0.82), transparent);
  transform: translate(-100%, -50%);
  animation: windFlow 2.2s linear infinite;
}

.wind-arrow .wind-from-label {
  position: absolute;
  left: 96px;
  top: 50%;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(7, 16, 14, 0.9);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translate(-100%, -50%) rotate(calc(-1 * var(--wind-flow-angle)));
  white-space: nowrap;
}

.calm-wind-label {
  display: none;
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  padding: 9px 13px;
  border: 1px solid rgba(217, 232, 221, 0.18);
  border-radius: 8px;
  background: rgba(7, 16, 14, 0.88);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.compass.is-calm .wind-arrow {
  display: none;
}

.compass.is-calm .calm-wind-label {
  display: block;
}

.compass.is-calm .favored-end {
  display: none;
}

.compass.is-calm .runway-strip {
  animation: none;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.06);
}

@keyframes windPulse {
  0%,
  100% {
    filter: brightness(1);
    opacity: 0.86;
  }

  50% {
    filter: brightness(1.35);
    opacity: 1;
  }
}

@keyframes windFlow {
  0% {
    opacity: 0;
    transform: translate(-100%, -50%);
  }

  18%,
  70% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translate(560%, -50%);
  }
}

@keyframes runwayGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 rgba(126, 225, 157, 0),
      inset 0 0 24px rgba(126, 225, 157, 0.08);
  }

  50% {
    box-shadow:
      0 0 22px rgba(126, 225, 157, 0.18),
      inset 0 0 30px rgba(126, 225, 157, 0.16);
  }
}

@keyframes favoredEndGlow {
  0%,
  100% {
    opacity: 0.52;
    filter: blur(0);
  }

  50% {
    opacity: 0.92;
    filter: blur(1px);
  }
}

@keyframes runwaySweep {
  0%,
  42% {
    left: -38%;
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  68%,
  100% {
    left: 104%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .runway-strip,
  .runway-strip i,
  .favored-end,
  .wind-arrow,
  .wind-arrow::after,
  .wind-stream {
    animation: none;
  }
}

.runway-readout h3 {
  margin: 5px 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
}

.runway-readout p:last-child {
  color: #cbd8d1;
  line-height: 1.55;
}

.data-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 32px;
}

.metric-card {
  min-height: 156px;
  padding: 18px;
  background: rgba(16, 25, 23, 0.88);
}

.metric-card strong {
  display: block;
  margin: 14px 0 12px;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 0.9;
}

.metric-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.accent-green strong {
  color: var(--green);
}

.accent-gold strong {
  color: var(--gold);
}

.accent-blue strong {
  color: var(--blue);
}

.work-area {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  padding-bottom: 58px;
}

.section-head {
  margin-bottom: 15px;
}

.section-head h2 {
  margin: 4px 0 0;
  font-size: 1.45rem;
}

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

.runway-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 118px;
  padding: 15px;
}

.runway-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #1d2925;
  color: var(--text);
  font-weight: 850;
}

.runway-option h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.runway-option p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.metar-panel {
  align-self: start;
  padding: 18px;
}

.metar-text {
  min-height: 118px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07100e;
  color: #d7e3dc;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.timeline div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.timeline strong {
  display: block;
  margin-top: 8px;
}

.admin-shell {
  padding-bottom: 52px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: start;
  padding-top: 18px;
}

.admin-panel {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 35, 31, 0.95), rgba(9, 16, 14, 0.95));
  box-shadow: var(--shadow);
}

.admin-panel h1 {
  margin: 4px 0 10px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.admin-panel h2 {
  margin: 4px 0 0;
}

.admin-lede {
  margin-bottom: 0;
  color: #cbd8d1;
  line-height: 1.55;
}

.admin-panel label {
  display: grid;
  gap: 8px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea,
.json-output {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07100e;
  color: var(--text);
  padding: 12px 13px;
}

.admin-panel textarea,
.json-output {
  resize: vertical;
  line-height: 1.5;
}

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

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.primary-action,
.secondary-action,
.admin-note-item button {
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 840;
}

.primary-action {
  border: 0;
  background: var(--green);
  color: #06100b;
  padding: 0 16px;
}

.secondary-action,
.admin-note-item button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0 14px;
}

.secondary-action:disabled {
  cursor: progress;
  opacity: 0.68;
}

.is-hidden {
  display: none !important;
}

.save-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.save-status.is-ready {
  color: var(--green);
}

.save-status.is-error {
  color: var(--red);
}

.admin-note-list {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.json-preview-head {
  margin: 6px 0 8px;
}

.json-preview-head p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-note-item {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(217, 232, 221, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-note-item p {
  margin-bottom: 0;
  color: #dce6df;
  line-height: 1.5;
}

.admin-note-item small {
  color: var(--muted);
}

.admin-note-item button {
  justify-self: start;
  min-height: 34px;
}

.json-output {
  min-height: 210px;
  color: #b9c7bf;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
}

@media (max-width: 920px) {
  .hero,
  .work-area,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .airport-panel {
    order: -1;
  }

  .data-band,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 22px, 1180px);
  }

  .topbar {
    min-height: 68px;
  }

  .brand span:last-child {
    max-width: 184px;
    overflow-wrap: anywhere;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .search-row button {
    min-height: 46px;
  }

  .airport-panel,
  .metar-panel,
  .metric-card {
    padding: 14px;
  }

  .panel-head,
  .runway-visual,
  .timeline,
  .admin-time-grid {
    grid-template-columns: 1fr;
  }

  .field-grid,
  .data-band,
  .runway-cards {
    grid-template-columns: 1fr;
  }

  .compass {
    min-height: 250px;
  }
}
