/* ClinBolt home page — plain CSS, no build step. */

:root {
  --teal: #0f766e;
  --teal-deep: #134e4a;
  --teal-text: #115e59;
  --teal-bright: #14b8a6;
  --teal-tint: #dff2e9;
  --mint: #5eead4;
  --mint-soft: #99f6e4;
  --amber: #f59e0b;
  --amber-tint: #fcf1d6;
  --amber-text: #78350f;
  --amber-icon: #b45309;
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f5f8f3;
  --surface: #ffffff;
  --line: #d6e3dc;
  --hero: #134e4a;
  --hero-line: rgba(94, 234, 212, 0.55);
  --hero-text: #d7eee7;
  --shadow: 0 1px 2px rgba(19, 78, 74, 0.06), 0 18px 40px -24px rgba(19, 78, 74, 0.35);
  --font: 'Segoe UI', ui-rounded, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--teal);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--teal-deep);
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

.pill {
  display: inline-block;
  padding: 0.25em 0.8em;
  border-radius: 999px;
  background: var(--amber-tint);
  color: var(--amber-text);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.pill-sm {
  padding: 0.05em 0.55em;
  font-size: 0.68rem;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}

/* Experimental notice --------------------------------------------------- */

.notice {
  background: var(--amber-tint);
  border-bottom: 1px solid #f3dca4;
  color: var(--amber-text);
  font-size: 0.875rem;
  line-height: 1.45;
}

.notice-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding-block: 10px;
}

.notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--amber-icon);
}

.notice p {
  margin: 0;
}

/* Header ---------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 243, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  border-radius: 8px;
}

.brand img {
  width: 158px;
  height: auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--teal-text);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  background: var(--teal-tint);
  color: var(--teal-deep);
}

@media (max-width: 639px) {
  /* Two header rows would eat a phone screen if they stayed pinned. */
  .site-header {
    position: static;
  }

  html {
    scroll-padding-top: 12px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-block: 12px 8px;
  }

  .brand img {
    width: 136px;
  }

  .site-nav ul {
    margin-left: -10px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

/* Hero ------------------------------------------------------------------ */

.hero {
  padding-top: clamp(16px, 3vw, 36px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
  padding: clamp(32px, 5vw, 68px) clamp(22px, 5vw, 72px);
  border-radius: clamp(24px, 3vw, 32px);
  background: var(--hero);
  color: #fff;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

/* Faint dot grid behind the diagram. */
.hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background-image: radial-gradient(rgba(153, 246, 228, 0.16) 1.2px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 40%);
  pointer-events: none;
}

.hero-panel :focus-visible {
  outline-color: #fcd34d;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 26px);
}

.hero-eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--amber);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero h1 .accent {
  color: var(--mint);
}

.hero-lede {
  margin: 0;
  max-width: 32em;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  color: var(--hero-text);
}

.btn-amber {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 24px -12px rgba(245, 158, 11, 0.8);
}

.btn-amber:hover {
  background: #fbbf24;
  color: var(--ink);
}

/* Diagram: stacked cards on small screens, the linked map on wide ones. */
.hero-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 520px;
}

.map-links {
  display: none;
}

.map-card {
  position: relative;
  padding: 16px;
  border-radius: 20px;
  border: 1.5px solid var(--hero-line);
  background: rgba(255, 255, 255, 0.035);
}

/* Short connector with a node between stacked cards. */
.map-card + .map-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 2px;
  height: 26px;
  background: var(--hero-line);
  transform: translateX(-50%);
}

.map-card + .map-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -21px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--mint);
  background: var(--hero);
  transform: translateX(-50%);
}

.map-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.map-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1.5px solid rgba(94, 234, 212, 0.6);
  background: rgba(94, 234, 212, 0.08);
  color: var(--mint-soft);
}

.map-title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.map-desc {
  margin: 4px 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #cfe9e1;
}

.map-mini {
  display: none;
}

.checklist {
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(153, 246, 228, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.map-data .map-mini {
  padding: 14px 16px 10px;
  border-radius: 14px;
  border: 1px solid rgba(153, 246, 228, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2dd4bf;
}

.check-off {
  background: none;
  border: 2px solid rgba(153, 246, 228, 0.45);
}

.bar-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(153, 246, 228, 0.32);
}

.check-row:nth-child(1) .bar-line { width: 140px; }
.check-row:nth-child(2) .bar-line { width: 112px; }
.check-row:nth-child(3) .bar-line { width: 84px; }

.steps {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: rgba(94, 234, 212, 0.6);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid var(--mint);
  background: var(--hero);
  color: var(--mint-soft);
  font-weight: 800;
  font-size: 0.94rem;
}

.step-on {
  border-color: #2dd4bf;
  background: #2dd4bf;
  color: var(--hero);
}

.step-next {
  border-style: dashed;
}

.step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e6f4ef;
}

@media (min-width: 1100px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-panel::before {
    top: 0;
    left: auto;
    width: 62%;
    height: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  }

  .hero-map {
    display: block;
    width: 540px;
    height: 505px;
    max-width: none;
    zoom: 0.82;
  }

  .map-links {
    display: block;
    position: absolute;
    inset: 0;
  }

  .map-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .map-card + .map-card::before,
  .map-card + .map-card::after {
    content: none;
  }

  .map-tools { left: 0; top: 0; width: 250px; height: 250px; }
  .map-data { left: 290px; top: 0; width: 250px; height: 250px; }
  .map-learn { left: 110px; top: 320px; width: 320px; height: 185px; padding-bottom: 18px; }

  .map-mini { display: block; }
  .checklist { display: flex; }
  .steps { display: grid; }
}

@media (min-width: 1280px) {
  .hero-map {
    zoom: 1;
  }
}

/* Explore grid ---------------------------------------------------------- */

.explore {
  padding-block: clamp(56px, 8vw, 88px) 40px;
}

.explore-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 32px;
}

.legend {
  margin: 0;
  display: flex;
  gap: 18px;
  font-size: 0.875rem;
  color: var(--muted);
}

.legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-live {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.legend-soon {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1.5px dashed var(--amber-icon);
}

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

@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .tile-quest {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .tile-tools { grid-column: span 5; }
  .tile-quest { grid-column: span 7; }
  .tile-stats { grid-column: span 6; }
  .tile-soon { grid-column: span 3; }
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 28px;
}

.tile h3 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--teal-deep);
}

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

.tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tile-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-tint);
  color: var(--teal);
}

.tile-label {
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tile-live {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tile-stats {
  background: var(--teal-tint);
  border: 1px solid #c3e4d6;
}

.tile-stats .tile-icon {
  background: #fff;
}

.tile-stats p {
  color: #3d5a55;
}

/* One link per live tile, stretched so the whole tile is clickable. */
.tile-link {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

.tile-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.tile-link:focus-visible {
  outline: none;
}

.tile:has(.tile-link:focus-visible),
.tile:has(.quest-link:focus-visible) {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.tile-live:has(.tile-link:hover),
.tile-stats:has(.tile-link:hover),
.tile-quest:has(.quest-link:hover) {
  border-color: var(--teal-bright);
  box-shadow: 0 2px 4px rgba(19, 78, 74, 0.08), 0 20px 40px -18px rgba(19, 78, 74, 0.4);
}

@media (prefers-reduced-motion: no-preference) {
  .tile-live,
  .tile-stats,
  .tile-quest {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  }

  .tile-live:has(.tile-link:hover),
  .tile-stats:has(.tile-link:hover),
  .tile-quest:has(.quest-link:hover) {
    transform: translateY(-2px);
  }
}

.forecast {
  margin-top: 4px;
  padding: 16px 18px 12px;
  border-radius: 18px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-legend {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--muted);
}

.chart-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.swatch {
  width: 16px;
}

.swatch-target {
  border-top: 2.5px dashed #94a3b8;
}

.swatch-forecast {
  border-top: 3.5px solid var(--teal);
}

.stats-body {
  display: grid;
  gap: 16px 24px;
  align-items: end;
}

.stats-body h3 {
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  .stats-body {
    grid-template-columns: minmax(0, 1fr) 200px;
  }
}

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

.chips li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-text);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Trial Quest: the whole tile is the game's own artwork. */
.tile-quest {
  padding: 0;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  container-type: inline-size;
}

.quest-link {
  position: relative;
  display: block;
  flex-grow: 1;
  text-decoration: none;
  border-radius: inherit;
}

.quest-link:focus-visible {
  outline: none;
}

.quest-link img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1200 / 860;
  object-fit: cover;
}

/* Sits in the plain strip above the ClinBolt logo in the artwork. */
.quest-chip {
  position: absolute;
  left: 5.8%;
  top: max(8px, 2.4cqw);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: clamp(3px, 0.8cqw, 6px) clamp(8px, 1.7cqw, 12px);
  border-radius: 999px;
  border: 1px solid #cfe3da;
  background: #fff;
  color: var(--teal);
  font-size: clamp(10px, 1.75cqw, 12px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.quest-chip svg {
  width: 1.25em;
  height: 1.25em;
}

.quest-cta {
  position: absolute;
  left: 6%;
  bottom: 8%;
  padding: clamp(8px, 1.7cqw, 12px) clamp(14px, 2.9cqw, 20px);
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: clamp(13px, 2.2cqw, 15px);
  box-shadow: 0 6px 16px -8px rgba(15, 118, 110, 0.6);
}

.quest-link:hover .quest-cta {
  background: var(--teal-deep);
}

/* Coming-soon tiles: muted, dashed, and no link. */
.tile-soon {
  padding: 28px;
  border: 2px dashed #cfdcd5;
  background: transparent;
}

.soon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tile-soon .tile-icon {
  background: var(--amber-tint);
  color: var(--amber-icon);
}

.tile-soon h3.tile-label {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Contact --------------------------------------------------------------- */

.contact {
  padding-block: clamp(48px, 7vw, 72px) clamp(56px, 8vw, 96px);
}

.contact-grid {
  display: grid;
  gap: 32px 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-intro > p:not(.eyebrow):not(.copy-status) {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
}

.email-card {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}

.email-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal);
}

.email-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.email-text span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.email-text a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-deep);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.email-text a:hover {
  text-decoration: underline;
}

.btn-ghost {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #b9d4ca;
  background: var(--bg);
  color: var(--teal-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--teal-tint);
}

.copy-status,
.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.9rem;
  color: var(--teal-text);
}

.contact-form {
  padding: clamp(22px, 3vw, 36px);
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 16px;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #b7cbc2;
  background: #f9fbf8;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline-offset: 1px;
  border-color: var(--teal);
  border-radius: 12px;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.form-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.btn-teal {
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-teal:hover {
  background: var(--teal-deep);
}

@media (max-width: 559px) {
  .form-foot {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: center;
  }
}

/* Footer ---------------------------------------------------------------- */

.site-footer {
  padding-block: 48px 56px;
  background: var(--hero);
  color: #cfe9e1;
}

.site-footer :focus-visible {
  outline-color: #fcd34d;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
}

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

.footer-logo {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--bg);
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}

@media (min-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(4, minmax(120px, auto));
    column-gap: 56px;
  }
}

.footer-heading {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-soft);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  display: inline-block;
  padding: 3px 0;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #2c6a64;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
}

.footer-legal p {
  margin: 0;
}

.footer-legal strong {
  color: #fcd34d;
}
