/* ==========================================================================
   BEEZONE — marketing site stylesheet
   Palette taken from the BEEZONE application.
   ========================================================================== */

:root {
  /* Application palette */
  --ink:    #17211d;
  --muted:  #69746e;
  --line:   #dfe5e1;
  --paper:  #ffffff;
  --bg:     #f4f7f5;
  --soft:   #f6f8f7;
  --deep:   #163d32;
  --navy:   #102f2a;
  --green:  #2d775d;
  --lime:   #cce85f;
  --red:    #ad514a;

  /* Derived */
  --lime-2:      #d8ef82;
  --lime-soft:   rgba(204, 232, 95, 0.22);
  --green-soft:  rgba(45, 119, 93, 0.10);
  --line-dark:   rgba(255, 255, 255, 0.14);
  --ink-on-lime: #153d32;
  --text-light:  #bcd2c7;
  --text-light-2:#93ad9f;

  --radius:    12px;
  --radius-sm: 10px;
  --radius-lg: 18px;

  --shadow:            0 10px 32px rgba(22, 61, 50, 0.07);
  --card-shadow:       0 10px 30px rgba(18, 49, 42, 0.067);
  --card-shadow-hover: 0 16px 42px rgba(18, 49, 42, 0.11);

  --max: 1160px;
  --gutter: 20px;

  --sans: "Geist", "Segoe UI", Aptos, ui-sans-serif, system-ui, -apple-system,
          Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.13;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--deep);
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.5rem); letter-spacing: -0.042em; }
h2 { font-size: clamp(1.6rem, 1.18rem + 1.75vw, 2.45rem); letter-spacing: -0.035em; }
h3 { font-size: 1.16rem; letter-spacing: -0.022em; }
h4 { font-size: 1rem; letter-spacing: -0.018em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.05em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--deep); color: #fff; padding: 12px 18px; z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- layout ---------- */

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(3.2rem, 6vw, 5.4rem) 0; }
.section--tight { padding: clamp(2.2rem, 4vw, 3.4rem) 0; }
.section--dark { background: var(--deep); color: var(--text-light); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--tint { background: var(--soft); }
.section--paper { background: var(--paper); }

.lede {
  font-size: clamp(1.02rem, 0.97rem + 0.25vw, 1.16rem);
  color: var(--muted);
  max-width: 62ch;
}
.section--dark .lede { color: var(--text-light-2); }

.head { max-width: 66ch; margin-bottom: 2.4rem; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head--center .lede { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}
.section--dark .eyebrow, .page-head .eyebrow { color: var(--lime); }

.grid { display: grid; gap: 1.15rem; }
.grid > * { min-width: 0; }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.82em 1.45em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease,
              color 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--lime {
  background: var(--lime); color: var(--ink-on-lime); border-color: var(--lime);
  box-shadow: 0 6px 18px rgba(45, 119, 93, 0.16);
}
.btn--lime:hover { background: var(--lime-2); border-color: var(--lime-2); }

.btn--deep { background: var(--deep); color: #fff; border-color: var(--deep); }
.btn--deep:hover { background: var(--navy); border-color: var(--navy); }

.btn--ghost { background: var(--paper); color: var(--ink-on-lime); border-color: #cfdcd5; }
.btn--ghost:hover { border-color: var(--deep); background: #fff; }

.btn--ghost-light {
  background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.32);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.55); }

.btn--sm { padding: 0.62em 1.1em; font-size: 0.87rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

.link-arrow { font-weight: 650; color: var(--green); }
.link-arrow::after { content: " →"; display: inline-block; transition: margin 0.16s ease; }
.link-arrow:hover::after { margin-left: 3px; }
.section--dark .link-arrow { color: var(--lime); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav { display: flex; align-items: center; gap: 1.6rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: auto; }
@media (max-width: 480px) { .brand img { height: 30px; } }

.nav__links { display: flex; align-items: center; gap: 0.1rem; }
.nav__links a {
  position: relative;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 620;
  padding: 0.55rem 0.72rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--deep); background: var(--green-soft); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--deep); background: transparent; }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.72rem; right: 0.72rem; bottom: 0.1rem;
  height: 2px; border-radius: 2px;
  background: var(--deep);
}

.nav__actions { display: flex; align-items: center; gap: 0.55rem; }
.nav__actions .btn { padding: 0.62em 1.25em; font-size: 0.9rem; }

/* Desktop: logo left, links centred, Client Zone hard right — all on one line */
@media (min-width: 941px) {
  .nav__panel {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
  }
  .nav__links { margin: 0 auto; }
}

@media (min-width: 941px) and (max-width: 1180px) {
  .nav { gap: 0.9rem; }
  .nav__links a { font-size: 0.87rem; padding: 0.5rem 0.55rem; }
  .nav__links a[aria-current="page"]::after { left: 0.55rem; right: 0.55rem; }
  .brand img { height: 34px; }
}

.nav__toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--deep);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; align-items: center; gap: 0.45rem; }
  .nav__panel {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.8rem var(--gutter) 1.3rem;
  }
  .nav__panel.is-open { display: block; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav__links a { padding: 0.72rem 0.6rem; font-size: 1rem; }
  .nav__links a[aria-current="page"] { background: var(--green-soft); }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
  }
  .nav__actions .btn { width: 100%; padding: 0.78em 1.2em; font-size: 0.95rem; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(204, 232, 95, 0.30), transparent 60%),
    radial-gradient(760px 460px at 2% 104%, rgba(45, 119, 93, 0.10), transparent 62%),
    var(--bg);
  padding: clamp(2.8rem, 5.5vw, 5rem) 0 clamp(3.2rem, 6.5vw, 5.6rem);
  overflow: hidden;
}
.hero > .wrap { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: 2.6rem; align-items: center; }
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr); gap: 3.2rem; }
}

.hero h1 { color: var(--deep); margin-bottom: 0.5em; }
.hero p { color: var(--muted); font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.15rem); max-width: 56ch; }

.hero__pills {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin: 1.9rem 0 0; padding: 0; list-style: none;
}
.hero__pills li {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 560;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42em 0.9em;
}

.badge-inline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--lime-soft);
  border: 1px solid rgba(45, 119, 93, 0.22);
  color: var(--deep);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.badge-inline .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---------- dashboard preview ---------- */

.dash {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(18, 49, 42, 0.13);
  overflow: hidden;
}

.dash__bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.dash__dot { width: 9px; height: 9px; border-radius: 50%; background: #c9d6cf; }
.dash__title {
  margin-left: 0.5rem; font-size: 0.76rem; font-weight: 650;
  color: var(--muted); letter-spacing: 0.02em;
}

.dash__body { padding: 1.15rem 1.15rem 1.3rem; }

.dash__top { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; margin-bottom: 1.15rem; }

.ring { position: relative; width: 108px; height: 108px; flex: none; }
.ring svg { transform: rotate(-90deg); }
.ring__track { stroke: #e6ece8; }
.ring__fill {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 289.03;
  stroke-dashoffset: 289.03;
  animation: ring-fill 1.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
@keyframes ring-fill { to { stroke-dashoffset: 92.5; } }

.ring__label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.1;
}
.ring__score { font-size: 1.42rem; font-weight: 740; color: var(--deep); letter-spacing: -0.04em; }
.ring__of { font-size: 0.68rem; color: var(--muted); font-weight: 560; }

.dash__level .kicker {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); font-weight: 700;
}
.dash__level .val { font-size: 1.28rem; font-weight: 720; color: var(--deep); letter-spacing: -0.032em; }
.dash__level .sub { font-size: 0.8rem; color: var(--muted); }

.chip {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 0.26em 0.66em; border-radius: 7px; margin-top: 0.45rem;
}
.chip--green { background: var(--green-soft); color: var(--green); }
.chip--amber { background: rgba(173, 81, 74, 0.12); color: var(--red); }

.bars { display: grid; gap: 0.62rem; }
.bar__row { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 0.6rem; align-items: baseline; }
.bar__name { font-size: 0.78rem; font-weight: 580; color: var(--ink); }
.bar__val  { font-size: 0.74rem; font-weight: 650; color: var(--muted); font-variant-numeric: tabular-nums; }
.bar__track {
  display: block;
  grid-column: 1 / -1;
  height: 7px; border-radius: 99px; background: #e9efec; overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%; border-radius: 99px;
  background: var(--green);
  width: 0;
  animation: bar-grow 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.bar__fill--lime { background: linear-gradient(90deg, var(--green), var(--lime)); }
@keyframes bar-grow { to { width: var(--w, 60%); } }

.dash__foot {
  margin-top: 1.15rem; padding-top: 0.95rem; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; text-align: center;
}
.dash__stat .n { font-size: 1.05rem; font-weight: 730; color: var(--deep); letter-spacing: -0.03em; }
.dash__stat .l { font-size: 0.66rem; color: var(--muted); font-weight: 650; letter-spacing: 0.08em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ring__fill { animation: none; stroke-dashoffset: 92.5; }
  .bar__fill { animation: none; width: var(--w, 60%); }
  .badge-inline .dot { animation: none; }
  .btn:hover { transform: none; }
}

/* ---------- cards ---------- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.card h3 { margin-bottom: 0.35em; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card__spacer { margin-top: auto; padding-top: 1.1rem; }

.card--feature { background: var(--paper); }

.card--deep {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--text-light);
}
.card--deep h3, .card--deep h4 { color: #fff; }
.card--deep p { color: var(--text-light-2); }

.card--navy { background: var(--navy); border-color: var(--navy); color: var(--text-light); }
.card--navy h3 { color: #fff; }
.card--navy p { color: var(--text-light-2); }

.card--dark { background: rgba(255,255,255,0.05); border-color: var(--line-dark); box-shadow: none; color: var(--text-light); }
.card--dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); box-shadow: none; }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--text-light-2); }

.card--accent { border-color: rgba(45, 119, 93, 0.45); box-shadow: 0 0 0 3px var(--lime-soft), var(--card-shadow); }

.card__tag {
  align-self: flex-start;
  font-size: 0.66rem; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: var(--soft); border: 1px solid var(--line);
  padding: 0.3em 0.7em; border-radius: 7px; margin-bottom: 0.85rem;
}
.card__tag--lime { color: var(--ink-on-lime); background: var(--lime); border-color: var(--lime); }
.card__tag--dark { color: var(--lime); background: rgba(204, 232, 95, 0.14); border-color: rgba(204, 232, 95, 0.28); }

.icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--lime-soft); color: var(--deep);
  margin-bottom: 0.9rem;
  font-weight: 740; font-size: 0.92rem;
}
.icon--green { background: var(--green-soft); color: var(--green); }

.meta-list { list-style: none; padding: 0; margin: 0.9rem 0 0; }
.meta-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.42em;
}
.meta-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border-radius: 3px;
  background: var(--lime);
  border: 1px solid rgba(45, 119, 93, 0.45);
}
.card--deep .meta-list li, .card--navy .meta-list li, .card--dark .meta-list li { color: var(--text-light-2); }

.fact { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.9rem 0 0; padding: 0; list-style: none; }
.fact li {
  margin: 0;
  font-size: 0.75rem; font-weight: 580;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.3em 0.7em;
  background: var(--soft);
}
.card--deep .fact li, .card--navy .fact li {
  color: var(--lime); background: rgba(204, 232, 95, 0.12); border-color: rgba(204, 232, 95, 0.24);
}
.fact--light li { color: var(--lime); background: rgba(204, 232, 95, 0.12); border-color: rgba(204, 232, 95, 0.24); }

/* ---------- journey ---------- */

.steps { counter-reset: step; display: grid; gap: 1rem; }
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  padding: 1.35rem 1.3rem 1.3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.8rem; font-weight: 760; letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.04rem; margin-bottom: 0.3em; color: #fff; }
.step p { font-size: 0.9rem; color: var(--text-light-2); margin: 0; }

/* ---------- strip ---------- */

.strip {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
@media (min-width: 640px)  { .strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip__cell { background: var(--paper); padding: 1.25rem 1.2rem; }
.strip__cell h4 { font-size: 0.95rem; margin-bottom: 0.3em; }
.strip__cell p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */

.cta {
  background:
    radial-gradient(700px 320px at 86% 6%, rgba(204, 232, 95, 0.20), transparent 62%),
    var(--deep);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4.5vw, 3.2rem);
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: var(--text-light-2); max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta .btn-row { justify-content: center; }

/* ---------- page head ---------- */

.page-head {
  background:
    radial-gradient(700px 320px at 88% 0%, rgba(204, 232, 95, 0.18), transparent 62%),
    var(--deep);
  color: var(--text-light);
  padding: clamp(2.6rem, 5vw, 4rem) 0 clamp(2.6rem, 5vw, 3.6rem);
}
.page-head h1 { color: #fff; margin-bottom: 0.4em; }
.page-head p { color: var(--text-light-2); max-width: 62ch; margin: 0; }

/* ---------- prose ---------- */

.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.4rem; font-size: 1.45rem; }
.prose h3 { margin-top: 1.7rem; font-size: 1.06rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose li, .prose p { color: var(--muted); }
.prose strong { color: var(--ink); }

.note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto; max-width: 100%; margin: 1.2rem 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
}
table { border-collapse: collapse; width: 100%; font-size: 0.92rem; min-width: 360px; }
th, td { text-align: left; padding: 0.75rem 0.95rem; border-bottom: 1px solid var(--line); }
tr:last-child th, tr:last-child td { border-bottom: 0; }
th { font-weight: 660; color: var(--deep); background: var(--soft); }
td { color: var(--muted); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--text-light-2);
  padding: clamp(2.8rem, 5vw, 4rem) 0 2rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--text-light); }
.site-footer a:hover { color: #fff; }
.site-footer .brand img { height: 32px; }

.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 720px)  { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer__brand p { color: var(--text-light-2); font-size: 0.89rem; max-width: 34ch; margin-top: 0.95rem; }

.footer h4 {
  color: var(--lime); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0.95rem; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.52em; }

.footer__bottom {
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem;
  align-items: center; justify-content: space-between;
  font-size: 0.83rem; color: var(--text-light-2);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; }

.disclaimer {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-light-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  max-width: 78ch;
}

/* ---------- utilities ---------- */

.center { text-align: center; }
.mt-1 { margin-top: 0.8rem; }
.mt-2 { margin-top: 1.6rem; }
.mt-3 { margin-top: 2.4rem; }
.small { font-size: 0.86rem; }
.muted { color: var(--muted); }
.section--dark .muted { color: var(--text-light-2); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
