:root {
  color-scheme: dark;
  --bg: #08110f;
  --bg-soft: rgba(13, 24, 21, 0.78);
  --panel: rgba(13, 24, 21, 0.88);
  --panel-border: rgba(149, 196, 180, 0.16);
  --panel-border-strong: rgba(156, 220, 196, 0.34);
  --text: #e8f4ef;
  --muted: #8ea59c;
  --muted-strong: #c7d7d1;
  --accent: #6bf0a4;
  --accent-2: #2fc7c9;
  --warn: #f3b05e;
  --bad: #ff6b6b;
  --ok: #77db8f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --content-width: 1360px;
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(70, 188, 146, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(47, 199, 201, 0.13), transparent 25%),
    radial-gradient(circle at 75% 85%, rgba(107, 240, 164, 0.10), transparent 22%),
    linear-gradient(160deg, #050b0a 0%, #0a1210 42%, #07100e 100%);
  color: var(--text);
}

body {
  padding: 24px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  appearance: none;
}

code,
pre {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.app-shell {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.topbar,
.hero,
.panel {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 28, 25, 0.92), rgba(7, 14, 12, 0.88));
  box-shadow: var(--shadow);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #04110a;
  font-weight: 800;
  letter-spacing: 0.08em;
  background:
    linear-gradient(160deg, rgba(107, 240, 164, 0.98), rgba(47, 199, 201, 0.92));
  box-shadow: 0 10px 26px rgba(47, 199, 201, 0.28);
}

.eyebrow {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.topbar-actions,
.orientation-row,
.setup-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.provision-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(149, 196, 180, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.provision-card__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.provision-card__stack {
  display: grid;
  gap: 8px;
}

.scope-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scope-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(107, 240, 164, 0.09);
  border: 1px solid rgba(107, 240, 164, 0.18);
  color: var(--muted-strong);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.provision-panel .panel-note {
  max-width: 68ch;
}

.ghost-button,
.accent-button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
}

.accent-button {
  color: #06110a;
  font-weight: 700;
  background: linear-gradient(160deg, var(--accent), #4df0cc);
  box-shadow: 0 12px 32px rgba(107, 240, 164, 0.18);
}

.ghost-button:hover,
.accent-button:hover {
  transform: translateY(-1px);
}

.hero {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.95fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--panel-border);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(13, 24, 21, 0.82), rgba(8, 16, 14, 0.92)),
    linear-gradient(120deg, rgba(107, 240, 164, 0.10), transparent 35%, rgba(47, 199, 201, 0.08));
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted-strong);
  line-height: 1.6;
}

.hero-text code {
  color: var(--accent);
}

.hero-controls {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-note {
  color: var(--muted-strong);
  line-height: 1.5;
  max-width: 36ch;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: var(--muted);
  font-size: 0.88rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(149, 196, 180, 0.20);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(3, 8, 7, 0.52);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(107, 240, 164, 0.52);
  box-shadow: 0 0 0 3px rgba(107, 240, 164, 0.12);
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 10px;
}

.status-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.status-chip {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(107, 240, 164, 0.20);
  background: rgba(10, 18, 16, 0.84);
  color: var(--text);
  font-size: 0.92rem;
}

.status-chip.subtle {
  color: var(--muted-strong);
  border-color: rgba(255, 255, 255, 0.08);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.panel {
  padding: 18px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 24, 21, 0.92), rgba(8, 16, 14, 0.95));
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-header h3 {
  font-size: 1.25rem;
}

.panel-note,
.muted {
  color: var(--muted);
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.overview-panel .panel-note {
  text-align: right;
}

.provisioning-log {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(149, 196, 180, 0.16);
  border-radius: 18px;
  height: 144px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(3, 8, 7, 0.56);
  color: var(--muted-strong);
  line-height: 1.5;
}

.claim-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 8, 7, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.claim-modal {
  width: min(760px, 100%);
  border: 1px solid rgba(149, 196, 180, 0.20);
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(107, 240, 164, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(12, 22, 19, 0.98), rgba(8, 16, 14, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.54);
  display: grid;
  gap: 18px;
}

.claim-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.claim-modal h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  margin-top: 2px;
}

.claim-copy,
.claim-hint {
  color: var(--muted-strong);
  line-height: 1.6;
}

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

.claim-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.claim-log {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(149, 196, 180, 0.16);
  border-radius: 18px;
  min-height: 116px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(3, 8, 7, 0.56);
  color: var(--muted-strong);
  line-height: 1.5;
}

.tank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.tank-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(149, 196, 180, 0.18);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at 18% 14%, rgba(107, 240, 164, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(6, 14, 12, 0.92), rgba(10, 18, 16, 0.92));
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.tank-card:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 240, 164, 0.30);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.tank-card.is-selected {
  border-color: rgba(107, 240, 164, 0.44);
  box-shadow: 0 0 0 1px rgba(107, 240, 164, 0.18), 0 22px 44px rgba(0, 0, 0, 0.35);
}

.tank-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.tank-card__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.tank-card__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.tank-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(107, 240, 164, 0.12);
}

.tank-dot.fresh {
  background: #58d3ff;
}

.tank-dot.grey {
  background: #a0a0a0;
}

.tank-dot.black {
  background: #444;
}

.tank-dot.other {
  background: #e0c34d;
}

.tank-status {
  border-radius: 999px;
  padding: 8px 10px;
  color: #06110a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ok);
}

.tank-status.warn {
  background: var(--warn);
}

.tank-status.bad {
  background: var(--bad);
}

.tank-status.offline {
  background: #9ea6a4;
}

.tank-percent {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.tank-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted-strong);
}

.tank-bar {
  margin-top: 14px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.tank-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  width: var(--fill, 0%);
}

.tank-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 16px;
}

.vessel-card,
.spirit-card,
.advanced-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 7, 0.45);
  padding: 16px;
}

.vessel-card {
  display: grid;
  gap: 14px;
}

.vessel-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.vessel-meta strong {
  font-size: 1.1rem;
}

.vessel {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(149, 196, 180, 0.16);
  background:
    radial-gradient(circle at 50% 14%, rgba(107, 240, 164, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(4, 11, 10, 0.95), rgba(6, 15, 13, 0.95));
}

.vessel-glow {
  position: absolute;
  inset: 18px 18px auto;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(107, 240, 164, 0.20), transparent 70%);
  filter: blur(14px);
}

.vessel-rim {
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.vessel-grid {
  position: absolute;
  inset: 24px 20px 24px auto;
  width: 64px;
  background:
    linear-gradient(to bottom, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,0.08) calc(25% - 1px), rgba(255,255,255,0.08) 25%, transparent 25%,
      transparent calc(50% - 1px), rgba(255,255,255,0.08) calc(50% - 1px), rgba(255,255,255,0.08) 50%, transparent 50%,
      transparent calc(75% - 1px), rgba(255,255,255,0.08) calc(75% - 1px), rgba(255,255,255,0.08) 75%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}

.vessel-water {
  position: absolute;
  inset: auto 0 0;
  height: var(--fill, 50%);
  transform-origin: center bottom;
  transform: skewY(calc(var(--tilt, 0deg) * -0.12));
  background:
    linear-gradient(180deg, rgba(163, 255, 213, 0.96) 0%, rgba(77, 240, 204, 0.94) 28%, rgba(34, 138, 168, 0.98) 100%);
  box-shadow: inset 0 16px 24px rgba(255, 255, 255, 0.08);
  transition: height 220ms ease, transform 220ms ease;
}

.vessel-water::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 44%);
  mix-blend-mode: screen;
}

.water-surface {
  position: absolute;
  left: -10%;
  right: -10%;
  top: -7px;
  height: 18px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.36), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.48), transparent 32%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.36), transparent 18%);
  filter: blur(1px);
  transform: rotate(var(--tilt, 0deg));
  transform-origin: center center;
}

.bubble {
  position: absolute;
  bottom: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.10);
  animation: drift 8s ease-in-out infinite;
}

.bubble-a {
  left: 18%;
  width: 18px;
  height: 18px;
}

.bubble-b {
  left: 50%;
  width: 11px;
  height: 11px;
  animation-duration: 9.5s;
  animation-delay: -1.8s;
}

.bubble-c {
  left: 74%;
  width: 15px;
  height: 15px;
  animation-duration: 7.2s;
  animation-delay: -4s;
}

.vessel-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
}

.big-value {
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.small-value {
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 1rem;
}

.spirit-card {
  display: grid;
  gap: 14px;
}

.spirit-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.spirit-header h4,
.advanced-card h4 {
  font-size: 1.08rem;
}

.spirit-stage {
  --bubble-x: 0px;
  --bubble-y: 0px;
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(107, 240, 164, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(5, 11, 10, 0.96), rgba(8, 16, 14, 0.96));
  overflow: hidden;
}

.spirit-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.spirit-ring,
.spirit-cross,
.spirit-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.spirit-ring {
  width: 76%;
  height: 76%;
  border-radius: 50%;
  border: 2px solid rgba(107, 240, 164, 0.20);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.spirit-cross {
  background: rgba(255, 255, 255, 0.15);
}

.spirit-cross-x {
  width: 60%;
  height: 1px;
}

.spirit-cross-y {
  width: 1px;
  height: 60%;
}

.spirit-bubble {
  width: 18%;
  height: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(circle at 36% 36%, rgba(255,255,255,0.85), rgba(255,255,255,0.18) 28%, rgba(107, 240, 164, 0.72) 58%, rgba(47, 199, 201, 0.92) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
  transform: translate(calc(-50% + var(--bubble-x)), calc(-50% + var(--bubble-y)));
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.spirit-stage.good .spirit-bubble {
  border-color: rgba(107, 240, 164, 0.52);
}

.spirit-stage.warn {
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 176, 94, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(7, 10, 8, 0.96), rgba(19, 16, 9, 0.96));
}

.spirit-stage.bad {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(9, 8, 9, 0.96), rgba(25, 10, 10, 0.96));
}

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

.spirit-readout > div,
.advanced-card {
  display: grid;
  gap: 6px;
}

.raw-snapshot-card {
  gap: 12px;
}

.raw-snapshot-card > summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.raw-snapshot-card > summary::-webkit-details-marker {
  display: none;
}

.raw-snapshot-card > summary h4 {
  font-size: 1.08rem;
}

.spirit-readout strong {
  font-size: 1rem;
}

.setup-panel .panel-note {
  text-align: right;
}

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

.setup-actions {
  grid-column: 1 / -1;
  justify-content: end;
}

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

.advanced-card pre {
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  height: 260px;
  overflow: auto;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d6ebe4;
  line-height: 1.45;
}

.key-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.key-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

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

.display-mock {
  display: grid;
  align-items: center;
  min-height: 220px;
}

.display-mock__screen {
  border-radius: 26px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.03)),
    linear-gradient(160deg, rgba(18, 40, 34, 0.92), rgba(4, 13, 10, 0.96));
  border: 1px solid rgba(107, 240, 164, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.display-mock__header {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.display-mock__body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.display-mock__body strong {
  display: block;
  margin-top: 3px;
  font-size: 1.15rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-18px) scale(1.12);
    opacity: 1;
  }
}

@media (min-width: 1080px) {
  .layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .overview-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .hero,
  .detail-grid,
  .advanced-grid {
    grid-template-columns: 1fr;
  }

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

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

  .setup-form {
    grid-template-columns: 1fr;
  }

  .panel-header,
  .spirit-header,
  .vessel-meta {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    padding: 14px;
  }

  .topbar {
    padding: 16px;
    flex-direction: column;
    align-items: start;
  }

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

  .inline-fields {
    grid-template-columns: 1fr;
  }

  .spirit-readout {
    grid-template-columns: 1fr;
  }

  .vessel {
    min-height: 380px;
  }
}
