/*
 * HappyHrs — one-page coming-soon landing
 * ---------------------------------------
 * Self-contained. This page renders without Bricks and without Core Framework,
 * so nothing here inherits from the site build. Every value comes from
 * DESIGN-LANGUAGE.md: olive/navy/rust role semantics, the #F2F2F7 ground, the
 * two-step radius scale, the three-layer card shadow. No new hexes.
 */

/* ------------------------------------------------------------ tokens ---- */

:root {
  /* ground + ink */
  --paper:   #F2F2F7;
  --surface: #FFFFFF;
  --ink:     #111827;
  --muted:   #6B7280;
  --hair:    rgba(17, 24, 39, .09);

  /* olive — brand, intern, clinical */
  --olive-50:  #f5f7ed;
  --olive-100: #e8edd6;
  --olive-200: #d3ddb1;
  --olive-400: #9bb45c;
  --olive-500: #7B8F3E;
  --olive-600: #617330;
  --olive-700: #4b5928;

  /* navy — supervisor, supervision */
  --navy-50:  #f0f6fc;
  --navy-100: #deebf7;
  --navy-300: #9cc5e7;
  --navy-400: #6da8d9;
  --navy-500: #2D5E8A;
  --navy-700: #1e4161;

  /* rust — organization, admin */
  --rust-50:  #fef4ee;
  --rust-100: #fce6d6;
  --rust-500: #E07B3A;
  --rust-700: #ae4016;

  /* shape */
  --r-control: 10px;
  --r-card:    16px;
  --r-big:     24px;
  --r-pill:    9999px;

  /* elevation */
  --lift: 0 0 0 1px rgba(17,24,39,.045),
          0 1px 2px rgba(17,24,39,.05),
          0 12px 32px -16px rgba(17,24,39,.18);
  --lift-hi: 0 0 0 1px rgba(17,24,39,.05),
             0 2px 4px rgba(17,24,39,.06),
             0 28px 56px -24px rgba(17,24,39,.26);

  --gutter: clamp(20px, 5vw, 40px);
  --shell:  1140px;
}

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

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

html {
  font-size: 100%;              /* defensive: never inherit a 62.5% root */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -.01em;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

:where(a, button, summary, input):focus-visible {
  outline: 2px solid var(--olive-700);
  outline-offset: 2px;
  border-radius: 4px;
}

/* the signature ambient wash — olive top-right, navy left, rust bottom */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58vw 46vw at 88% -6%,  rgba(123,143,62,.22), transparent 62%),
    radial-gradient(52vw 52vw at -12% 32%, rgba(45,94,138,.15),  transparent 62%),
    radial-gradient(64vw 40vw at 46% 108%, rgba(224,123,58,.16), transparent 64%);
}

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

section { position: relative; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ----------------------------------------------------------- reveal ----- */

/* Gated on .js: if the script never runs, the page is simply visible. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity .7s cubic-bezier(.32,.72,0,1),
                transform .7s cubic-bezier(.32,.72,0,1);
    transition-delay: var(--d, 0ms);
  }
  .js .reveal.is-in { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------ ribbon ---- */

.ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 44px;
  padding: 9px 20px;
  background: linear-gradient(100deg, var(--olive-600) 0%, var(--olive-500) 44%, var(--navy-500) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.ribbon__dot {
  width: 7px; height: 7px;
  border-radius: var(--r-pill);
  background: #fff;
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .ribbon__dot { animation: pulse 2.6s ease-out infinite; }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ribbon strong { font-weight: 800; }
.ribbon em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,.86);
}

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

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
}
.wordmark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.035em;
  color: var(--olive-600);
}
.wordmark span { color: var(--navy-500); }
.head__right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  font-size: 15px;
  font-weight: 600;
}
.head__link { color: var(--muted); transition: color .15s ease; }
.head__link:hover { color: var(--ink); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--r-control);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn--primary {
  background: linear-gradient(100deg, var(--olive-500), var(--olive-600));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18),
              0 1px 2px rgba(0,0,0,.12),
              0 8px 20px -6px rgba(123,143,62,.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 12px 26px -8px rgba(123,143,62,.62);
}
.btn--navy {
  background: linear-gradient(100deg, var(--navy-500), var(--navy-700));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 20px -6px rgba(45,94,138,.5);
}
.btn--navy:hover { transform: translateY(-2px); }
.btn--rust {
  background: linear-gradient(100deg, var(--rust-500), var(--rust-700));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 8px 20px -6px rgba(224,123,58,.5);
}
.btn--rust:hover { transform: translateY(-2px); }
.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--hair), 0 1px 2px rgba(17,24,39,.05);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(17,24,39,.14), 0 10px 22px -10px rgba(17,24,39,.28);
}
.btn:active { transform: translateY(0); }
.btn--block { width: 100%; }

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(28px, 5vw, 56px) clamp(52px, 7vw, 92px);
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--olive-100);
  color: var(--olive-700);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(123,143,62,.2);
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 6.2vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 .pay { display: block; color: var(--olive-600); }

.lede {
  max-width: 52ch;
  margin-top: 20px;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 16px 22px;
  border-radius: var(--r-card);
  background: var(--surface);
  box-shadow: 0 0 0 1.5px var(--olive-200), var(--lift);
}
.price__fig {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--olive-600);
  font-variant-numeric: tabular-nums;
}
.price__meta { min-width: 0; }
.price__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive-700);
}
.price__note { margin-top: 2px; font-size: 14px; color: var(--muted); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.trust li { display: flex; align-items: center; gap: 7px; }
.trust svg { flex: none; color: var(--olive-500); }

/* --------------------------------------------------- product preview ---- */

.preview { position: relative; }

.panel {
  position: relative;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: var(--r-big);
  background: var(--surface);
  box-shadow: var(--lift-hi);
}
.panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.panel__title {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.panel__sub { font-size: 12px; font-weight: 600; color: var(--muted); }

.meter + .meter { margin-top: 18px; }
.meter__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.meter__name { font-size: 14px; font-weight: 600; }
.meter__val {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.meter__track {
  height: 9px;
  border-radius: var(--r-pill);
  background: rgba(17,24,39,.07);
  overflow: hidden;
}
.meter__fill {
  height: 100%;
  width: var(--pct, 0%);   /* no-JS: already filled */
  border-radius: var(--r-pill);
  transition: width 1.3s cubic-bezier(.32,.72,0,1);
}
.js .meter__fill { width: 0; }   /* JS animates up from empty */
.meter--clinical    .meter__fill { background: linear-gradient(90deg, var(--olive-400), var(--olive-500)); }
.meter--clinical    .meter__name { color: var(--olive-700); }
.meter--supervision .meter__fill { background: linear-gradient(90deg, var(--navy-400), var(--navy-500)); }
.meter--supervision .meter__name { color: var(--navy-500); }
@media (prefers-reduced-motion: reduce) {
  .meter__fill { transition: none; }
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.tile {
  padding: 12px 10px 13px;
  border-radius: var(--r-control);
  background: var(--paper);
  text-align: center;
}
.tile__n {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.tile__l {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.tile--olive .tile__n { color: var(--olive-600); }
.tile--navy  .tile__n { color: var(--navy-500); }
.tile--rust  .tile__n { color: var(--rust-700); }

.rows { margin-top: 20px; }
.row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--hair);
  font-size: 14px;
}
.row__dot { width: 8px; height: 8px; border-radius: var(--r-pill); flex: none; }
.row__dot--olive { background: var(--olive-500); }
.row__dot--navy  { background: var(--navy-500); }
.row__name { font-weight: 600; flex: 1; min-width: 0; }
.row__hrs { font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 600; }
.chip {
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
}
.chip--ok   { background: var(--olive-100); color: var(--olive-700); }
.chip--wait { background: var(--rust-100);  color: var(--rust-700); }

.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: var(--r-control);
  background: var(--surface);
  box-shadow: var(--lift-hi);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
}
.float__icon {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  color: #fff;
  flex: none;
}
.float__t { font-size: 13px; font-weight: 700; line-height: 1.25; }
.float__s { font-size: 11px; color: var(--muted); }
.float--a { top: -20px; right: -14px; transform: rotate(2deg); }
.float--a .float__icon { background: var(--olive-500); }
.float--b { bottom: -22px; left: -18px; transform: rotate(-2deg); }
.float--b .float__icon { background: var(--navy-500); }
.preview:hover .float { transform: rotate(0deg); }
@media (max-width: 620px) {
  .float--a { top: -16px; right: -6px; }
  .float--b { bottom: -18px; left: -6px; }
  .float__s { display: none; }
}

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

.band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(26px, 4vw, 38px) clamp(22px, 4vw, 40px);
  border-radius: var(--r-big);
  background: linear-gradient(104deg, var(--olive-600) 0%, var(--olive-500) 46%, var(--navy-500) 100%);
  color: #fff;
  box-shadow: 0 24px 48px -24px rgba(75,89,40,.55);
}
@media (max-width: 720px) {
  .band { grid-template-columns: 1fr; text-align: center; gap: 22px; }
}
.band__n {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.band__l {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  max-width: 24ch;
}
@media (max-width: 720px) { .band__l { max-width: none; margin-inline: auto; } }

/* ---------------------------------------------------------- sections ---- */

.sec { padding-block: clamp(56px, 8vw, 96px); }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive-600);
}
h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.032em;
  text-wrap: balance;
}
.sec__lede {
  max-width: 58ch;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}
.sec__head--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.sec__head--center .sec__lede { margin-inline: auto; }

/* ------------------------------------------------------------- roles ---- */

.roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 940px) {
  .roles { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

.role {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: var(--r-big);
  background: var(--surface);
  box-shadow: var(--lift);
  transition: transform .2s ease, box-shadow .2s ease;
}
.role:hover { transform: translateY(-4px); box-shadow: var(--lift-hi); }
.role::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--r-big) var(--r-big) 0 0;
}
.role--intern::before { background: var(--olive-500); }
.role--super::before  { background: var(--navy-500); }
.role--org::before    { background: var(--rust-500); }

.role__ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--olive-500);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -6px rgba(75,89,40,.7);
}
/* A ribbon is chrome for its own role, so it takes that role's hue. */
.role--super .role__ribbon {
  background: var(--navy-500);
  box-shadow: 0 6px 14px -6px rgba(45,94,138,.7);
}
.role--org .role__ribbon {
  background: var(--rust-500);
  box-shadow: 0 6px 14px -6px rgba(224,123,58,.7);
}
.role__who {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.role--intern .role__who { color: var(--olive-600); }
.role--super  .role__who { color: var(--navy-500); }
.role--org    .role__who { color: var(--rust-700); }

.role__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.role__fig {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.role__cadence { font-size: 14px; font-weight: 600; color: var(--muted); }
.role__note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.role__list { margin-top: 18px; display: grid; gap: 10px; }
.role__list li { display: flex; gap: 10px; font-size: 15px; line-height: 1.45; }
.role__list svg { flex: none; margin-top: 3px; }
.role--intern .role__list svg { color: var(--olive-500); }
.role--super  .role__list svg { color: var(--navy-500); }
.role--org    .role__list svg { color: var(--rust-500); }
.role__foot { margin-top: auto; padding-top: 22px; }

.sustainer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: var(--r-card);
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--hair);
}
.sustainer__icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: var(--r-control);
  background: linear-gradient(135deg, var(--olive-500), var(--navy-500));
  color: #fff;
}
.sustainer__t { font-size: 15px; font-weight: 700; }
.sustainer__s { margin-top: 2px; font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------------ versus ---- */

.versus__wrap {
  margin-top: 44px;
  border-radius: var(--r-big);
  background: var(--surface);
  box-shadow: var(--lift);
  overflow: hidden;
}
.versus table { width: 100%; border-collapse: collapse; }
.versus caption {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.versus th, .versus td {
  padding: 14px clamp(12px, 2vw, 22px);
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--hair);
}
.versus thead th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper);
}
.versus tbody th { font-weight: 600; }
.versus .col-mark { width: 118px; text-align: center; }
.versus .col-win { background: var(--olive-50); }
.versus thead .col-win { background: var(--olive-100); color: var(--olive-700); }
.versus tbody tr:last-child th, .versus tbody tr:last-child td { border-bottom: 0; }
.mark { font-size: 17px; font-weight: 800; }
.mark--yes { color: var(--olive-600); }
.mark--no  { color: #9CA3AF; }
.versus__foot {
  padding: 14px clamp(12px, 2vw, 22px);
  background: var(--paper);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}
@media (max-width: 560px) {
  .versus th, .versus td { padding: 12px 10px; font-size: 14px; }
  .versus .col-mark { width: 62px; }
}

/* ---------------------------------------------------------- waitlist ---- */

.wait__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--r-big);
  background: var(--surface);
  box-shadow: var(--lift-hi);
}
@media (max-width: 860px) { .wait__card { grid-template-columns: 1fr; } }

.wait h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }

.form { display: grid; gap: 14px; }
.form__field { display: grid; gap: 7px; }
.form__label { font-size: 13px; font-weight: 700; }
.form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--r-control);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--hair);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: box-shadow .15s ease;
}
.form input[type="email"]::placeholder { color: #9CA3AF; }
.form input[type="email"]:focus {
  outline: 0;
  box-shadow: inset 0 0 0 2px var(--olive-500), 0 0 0 4px rgba(123,143,62,.16);
}
.form__roles { display: flex; flex-wrap: wrap; gap: 8px; }
.form__role { position: relative; display: inline-flex; }
.form__role input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.form__role span {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--hair);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.form__role input:checked + span {
  background: var(--olive-100);
  color: var(--olive-700);
  box-shadow: inset 0 0 0 1.5px var(--olive-500);
}
.form__role input:focus-visible + span { outline: 2px solid var(--olive-700); outline-offset: 2px; }
.form__fine { font-size: 13px; color: var(--muted); }
.hp { position: absolute; left: -9999px; }

.notice {
  padding: 13px 16px;
  margin-bottom: 4px;
  border-radius: var(--r-control);
  font-size: 15px;
  font-weight: 600;
}
.notice--ok  { background: var(--olive-100); color: var(--olive-700); }
.notice--err { background: var(--rust-100);  color: var(--rust-700); }

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

.foot { padding-block: 34px 44px; border-top: 1px solid var(--hair); }
.foot__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  font-size: 14px;
  color: var(--muted);
}
.foot__links { display: flex; flex-wrap: wrap; gap: 6px 20px; font-weight: 600; }
.foot__links a { transition: color .15s ease; }
.foot__links a:hover { color: var(--ink); }
.foot__made { font-weight: 600; }
