/* ==========================================================================
   LOCK & LOAD FINANCE
   Palette sampled directly from the newsletter header artwork.
   Tokens and voice rules: /BRAND.md
   ========================================================================== */

:root {
  /* ground */
  --black:    #000000;
  --navy-dp:  #000E23;
  --navy:     #001B36;
  --navy-lt:  #002D57;
  --line:     #10233B;

  /* type */
  --white:    #FFFFFF;
  --silver:   #C9CED6;
  --steel:    #7C838E;
  --steel-dk: #464C55;

  /* accent — the ampersand green. Scarce by rule. */
  --green:    #06B81B;
  --green-lt: #14E52A;
  --green-dk: #047111;
  --loss:     #C4362B;

  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body:    "IBM Plex Sans", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --measure: 66ch;
  --rule: 1px solid var(--line);
}

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

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, table, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver);
  font-family: var(--body);
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   CHEVRON FIELD — the angled navy bands from the header, rebuilt in CSS
   ========================================================================== */

.chev { position: relative; isolation: isolate; }

.chev::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    100deg,
    #000000        0px,  #000000        58px,
    var(--navy-dp) 58px,  var(--navy-dp) 132px,
    #000000       132px, #000000       188px,
    var(--navy)   188px, var(--navy)   214px,
    #000000       214px, #000000       320px
  );
  opacity: 0.85;
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
}

.chev--soft::before { opacity: 0.4; }

/* --- shared type ---------------------------------------------------------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.eyebrow--green { color: var(--green-lt); }

.h-display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.92;
  color: var(--white);
}

/* chiseled silver, matching the wordmark. Biggest headline only. */
.metal {
  background: linear-gradient(
    177deg,
    #FFFFFF 0%, #EDEFF3 16%, #A8AEB8 40%,
    #FFFFFF 50%, #767D87 56%, #C4CAD2 76%, #FFFFFF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.6));
}

.h-section {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  color: var(--white);
}

.lede {
  font-size: clamp(1.0625rem, 0.6vw + 0.95rem, 1.3125rem);
  line-height: 1.55;
  max-width: 50ch;
  color: var(--silver);
}

.prose { max-width: var(--measure); }
.prose p + p, .prose ul + p, .prose p + ul { margin-top: 1.05em; }
.prose strong { font-weight: 600; color: var(--white); }
.prose a { color: var(--green-lt); text-decoration: underline; text-underline-offset: 2px; }
.prose ul { list-style: disc; padding-left: 1.25em; }
.prose li { margin-bottom: 0.4em; }

.muted { color: var(--steel); }

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

/* ==========================================================================
   SIGNATURE — the day strip
   One weekday, 6am to 8pm. One green mark. The middle is dead on purpose.
   ========================================================================== */

.daystrip { margin-block: clamp(2rem, 5vw, 3rem); }

.daystrip__track {
  position: relative;
  height: 138px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.daystrip__scale {
  position: absolute;
  left: 0; right: 0; top: 62px;
  height: 1px;
  background: var(--steel-dk);
  transform: scaleX(0);
  transform-origin: left center;
  animation: strip-draw 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.daystrip__dead {
  position: absolute;
  top: 46px; bottom: 44px;
  left: 25%; right: 28.6%;
  background: repeating-linear-gradient(
    -45deg, transparent 0 6px, rgba(124, 131, 142, 0.1) 6px 12px
  );
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  opacity: 0;
  animation: fade-in 0.7s ease-out 0.95s forwards;
}

.daystrip__deadlabel {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 2;
  padding-inline: 0.5rem;
}

.daystrip__mark {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--steel-dk);
  opacity: 0;
  animation: fade-in 0.5s ease-out forwards;
}

.daystrip__mark::after {
  content: "";
  position: absolute;
  left: 50%; top: 56px;
  width: 13px; height: 13px;
  margin-left: -6.5px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  background: var(--black);
}

.daystrip__mark.is-ours { background: var(--green-dk); }

.daystrip__mark.is-ours::after {
  border-color: var(--green-lt);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 184, 27, 0.18), 0 0 16px rgba(20, 229, 42, 0.5);
}

.daystrip__time {
  position: absolute;
  top: 8px; left: 0;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--steel);
  white-space: nowrap;
}

.daystrip__what {
  position: absolute;
  top: 92px; left: 0;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.daystrip__mark.is-ours .daystrip__time,
.daystrip__mark.is-ours .daystrip__what { color: var(--green-lt); }

/* first mark sits at the far left edge — keep its labels on the page */
.daystrip__mark.at-start .daystrip__time,
.daystrip__mark.at-start .daystrip__what { transform: translateX(-8%); }

.daystrip__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: var(--rule);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--steel);
}

.daystrip__foot b { color: var(--green-lt); font-weight: 500; }

@keyframes strip-draw { to { transform: scaleX(1); } }
@keyframes fade-in { to { opacity: 1; } }

/* the strip is dense; small screens get a stacked list instead */
.daystrip__stack { display: none; }

@media (max-width: 47rem) {
  .daystrip__track { display: none; }
  .daystrip__stack { display: block; }
}

.daystrip__stack li {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-block: 0.7rem;
  border-bottom: var(--rule);
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--steel);
}

.daystrip__stack li.is-ours { color: var(--green-lt); }
.daystrip__stack li span:last-child {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.6875rem;
}

/* --- masthead ------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: var(--rule);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 62px;
}

.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
}

.wordmark em { color: var(--green-lt); font-style: normal; }

/* "FINANCE" rides small and wide under the mark so LOCK & LOAD keeps the weight */
.wordmark__tag {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.34em;
  color: var(--steel);
  margin-left: 0.5rem;
  vertical-align: 0.22em;
}

.masthead__nav { display: flex; gap: clamp(1rem, 2.5vw, 2rem); align-items: center; }

.masthead__nav a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel);
  transition: color 0.15s;
}

.masthead__nav a:hover, .masthead__nav a:focus-visible { color: var(--white); }
.masthead__nav a.is-cta { color: var(--green-lt); }

@media (max-width: 46rem) { .masthead__nav .is-hideable { display: none; } }

/* --- bands ---------------------------------------------------------------- */

.band { padding-block: clamp(3.5rem, 8vw, 6.5rem); border-bottom: var(--rule); }
.band--hero { padding-block: clamp(2.25rem, 4vw, 3.25rem) clamp(3.5rem, 7vw, 5.5rem); }
.band--quiet { background: #05080D; }
.band--flush { border-bottom: 0; }

.band__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.band__head::after { content: ""; flex: 1; height: 1px; background: var(--line); }

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

.hero__title {
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  max-width: 17ch;
  margin-bottom: 1.5rem;
}

.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

@media (min-width: 56rem) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero__tagline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(0.8125rem, 1.4vw, 1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.75rem;
}

/* --- signup --------------------------------------------------------------- */

.signup { max-width: 32rem; }
.signup__row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.signup__input {
  flex: 1 1 13rem;
  min-width: 0;
  background: #070B12;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 2px;
  transition: border-color 0.15s;
}

.signup__input::placeholder { color: var(--steel-dk); }
.signup__input:focus { outline: none; border-color: var(--green); }
.signup__input[aria-invalid="true"] { border-color: var(--loss); }

.signup__btn {
  flex: 0 0 auto;
  background: var(--green);
  color: #001B05;
  border: 1px solid var(--green);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.signup__btn:hover:not(:disabled) { background: var(--green-lt); }
.signup__btn:active:not(:disabled) { transform: translateY(1px); }
.signup__btn:disabled { opacity: 0.55; cursor: progress; }

/* consent — legible on purpose, never a grey 9px afterthought */
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  margin-top: 0.95rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--steel);
}

.consent input[type="checkbox"] {
  margin-top: 0.3em;
  width: 1rem; height: 1rem;
  accent-color: var(--green);
}

.consent a { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--silver); }

.signup__note {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--steel);
  margin-top: 0.8rem;
}

.signup__msg { margin-top: 0.85rem; font-size: 0.9375rem; min-height: 1.4em; }
.signup__msg.is-error { color: var(--loss); }
.signup__msg.is-ok { color: var(--green-lt); }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* --- products ------------------------------------------------------------- */

.products { display: grid; gap: 1px; background: var(--line); border: var(--rule); }

@media (min-width: 44rem) { .products { grid-template-columns: repeat(2, 1fr); } }

/* the scheduled item leads — it is the thing readers can actually plan around */
.product--anchor { background: #05080D; }
.product--anchor .product__cadence { color: var(--white); }

.product__flag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-lt);
  border: 1px solid var(--green-dk);
  padding: 0.2rem 0.45rem;
  margin-bottom: -0.2rem;
}

.product {
  background: var(--black);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product__icon {
  width: 44px;
  height: 44px;
  color: var(--green-lt);
  margin-bottom: 0.35rem;
  transition: color 0.2s, transform 0.2s;
}

/* the round seats, the reticle settles, the crate opens — one beat each */
.product:hover .product__icon { color: var(--white); transform: translateY(-2px); }

.product__cadence {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-lt);
}

.product__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.product__body { font-size: 0.9375rem; line-height: 1.6; color: var(--steel); }
.product__body b { color: var(--silver); font-weight: 600; }

/* --- steps (a real sequence, so numbers carry meaning) -------------------- */

.steps { display: grid; gap: 1px; background: var(--line); border: var(--rule); }

@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step { background: var(--black); padding: clamp(1.5rem, 3vw, 2rem); }

.step__n {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--green-lt);
  display: block;
  margin-bottom: 0.8rem;
}

.step__t {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step__d { font-size: 0.9375rem; line-height: 1.6; color: var(--steel); }

/* --- sources (how an idea survives to print) ------------------------------ */
/* A genuine funnel: three filters, then a human. Numbering carries meaning. */

.sources { display: grid; gap: 1px; background: var(--line); border: var(--rule); }

@media (min-width: 40rem) { .sources { grid-template-columns: repeat(2, 1fr); } }

.source { background: var(--black); padding: clamp(1.5rem, 3vw, 2.25rem); }

.source__n {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--green-lt);
  display: block;
  margin-bottom: 0.75rem;
}

.source__t {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.05;
}

.source__d { font-size: 0.9375rem; line-height: 1.6; color: var(--steel); }
.source__d b { color: var(--silver); font-weight: 600; }

/* the human step closes the funnel — mark it so it reads as the punchline */
.source--human { background: #05080D; }
.source--human .source__n { color: var(--silver); }

/* --- hold period stat ----------------------------------------------------- */

.holdstat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.1rem;
  margin-top: 2rem;
}

.holdstat b {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--green-lt);
  line-height: 1;
}

.holdstat span { font-size: 0.9375rem; color: var(--steel); }

/* --- sample issue card ---------------------------------------------------- */

.issue { border: 1px solid var(--navy-lt); background: #04070C; max-width: 40rem; }

.issue__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--navy-lt);
  background: rgba(0, 45, 87, 0.25);
}

.issue__title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
  color: var(--white);
}

.issue__stamp {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-lt);
  border: 1px solid var(--green-dk);
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}

.issue__row {
  display: grid;
  gap: 0.25rem 1.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 34rem) { .issue__row { grid-template-columns: 9.5rem 1fr; align-items: baseline; } }

.issue__row:last-child { border-bottom: 0; }

.issue__key {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.issue__val { font-size: 0.9375rem; line-height: 1.55; color: var(--silver); }

.redact {
  display: inline-block;
  vertical-align: baseline;
  height: 0.85em;
  border-radius: 1px;
  background: repeating-linear-gradient(-45deg, #1A2130 0 4px, #0B1018 4px 8px);
}

.redact--sm { width: 4.5rem; }
.redact--md { width: 8rem; }
.redact--lg { width: 12rem; }

/* --- scorecard ------------------------------------------------------------ */

.scroller { overflow-x: auto; }
.scorecard { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 0.8125rem; }

.scorecard th {
  text-align: left;
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.scorecard td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); color: var(--steel); }

.scorecard__empty { text-align: center; padding-block: clamp(2.5rem, 6vw, 4rem); font-family: var(--body); font-size: 0.9375rem; }

.scorecard__empty b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* --- for / not for -------------------------------------------------------- */

.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }

@media (min-width: 48rem) { .split { grid-template-columns: 1fr 1fr; } }

.checklist { display: flex; flex-direction: column; gap: 0.8rem; }

.checklist li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.5rem;
  align-items: start;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.checklist li::before { font-family: var(--mono); font-size: 0.8125rem; line-height: 1.55; }
.checklist--yes li::before { content: "\2713"; color: var(--green-lt); }
.checklist--no li::before { content: "\00D7"; color: var(--steel-dk); }
.checklist--no li { color: var(--steel); }

/* --- faq ------------------------------------------------------------------ */

.faq { border-top: var(--rule); }
.faq__item { border-bottom: var(--rule); padding-block: 1.5rem; }

.faq__q {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.faq__a { color: var(--steel); font-size: 0.9375rem; max-width: var(--measure); }
.faq__a a { color: var(--green-lt); }

/* --- closer --------------------------------------------------------------- */

.closer { text-align: center; }
.closer__title { font-size: clamp(2rem, 6vw, 3.75rem); margin-bottom: 1.25rem; }
.closer .lede { margin-inline: auto; }
.closer .signup { margin-inline: auto; margin-top: 2rem; text-align: left; }
.closer .signup__note { text-align: center; }

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

.footer { padding-block: clamp(2.5rem, 5vw, 3.5rem); }

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--rule);
  margin-bottom: 1.5rem;
}

.footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.footer__links a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel);
}

.footer__links a:hover { color: var(--silver); }

.disclaimer {
  font-family: var(--mono);
  font-size: 0.6875rem;
  line-height: 1.75;
  color: var(--steel-dk);
  max-width: 76ch;
}

/* --- legal pages ---------------------------------------------------------- */

.legal-head { padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; border-bottom: var(--rule); }
.legal-head h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
.legal-body { padding-block: clamp(2rem, 5vw, 3.5rem); }

.legal-body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-top: 2.25em;
  margin-bottom: 0.6em;
}

.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body ul { max-width: var(--measure); }
.legal-body p + p, .legal-body p + ul, .legal-body ul + p { margin-top: 1em; }
.legal-body ul { list-style: disc; padding-left: 1.25em; color: var(--steel); }
.legal-body li { margin-bottom: 0.4em; }
.legal-body a { color: var(--green-lt); text-decoration: underline; text-underline-offset: 2px; }

.updated {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.75rem;
}

.callout {
  border-left: 2px solid var(--green);
  background: #05080D;
  padding: 1rem 1.25rem;
  margin-block: 1.5rem;
  font-size: 0.9375rem;
  color: var(--steel);
  max-width: var(--measure);
}

.callout b { color: var(--white); }

/* --- a11y ----------------------------------------------------------------- */

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

.skip-link { position: absolute; left: -9999px; }

.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 50;
  background: var(--green);
  color: #001B05;
  padding: 0.6rem 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .daystrip__scale, .daystrip__dead, .daystrip__mark {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
