/* ============================================================
   acacalc.com — authoritative stylesheet
   House style: editorial / public-health explainer.
   Source Serif 4 display + system sans UI. Deep-teal accent,
   clay used ONLY at the cliff. Muted, calm, YMYL-appropriate.
   NOTE: the above-the-fold subset of these rules is hand-mirrored
   into the inline <style> block in index.html <head>. If you change
   a :root / .site-header / .hero rule here, change it there too.
   ============================================================ */

:root {
  /* surfaces */
  --paper:        #f6f8f7;
  --surface:      #ffffff;
  --surface-2:    #f0f4f3;
  --line:         #e0e7e5;
  --line-strong:  #cdd8d5;

  /* ink */
  --ink:          #1a2421;
  --ink-soft:     #45524e;
  --ink-faint:    #7c8884;

  /* teal accent (primary) */
  --teal:         #156a60;
  --teal-deep:    #0d4942;
  --teal-bright:  #1c897c;
  --teal-soft:    #e4efec;
  --teal-tint:    #eff5f3;

  /* clay — the cliff. used sparingly. */
  --clay:         #b1503a;
  --clay-deep:    #8a3a28;
  --clay-soft:    #f7eae5;

  /* positive (subsidy present) */
  --green:        #3a7a4f;
  --green-soft:   #e8f1ea;

  /* type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:  "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;

  --maxw: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(20,40,36,.05), 0 8px 28px rgba(20,40,36,.07);
  --shadow-soft: 0 1px 2px rgba(20,40,36,.04), 0 2px 8px rgba(20,40,36,.05);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
a { color: var(--teal); text-decoration-color: color-mix(in srgb, var(--teal) 35%, transparent); text-underline-offset: 2px; }
a:hover { color: var(--teal-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- site header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto; display: block; box-shadow: 0 1px 2px rgba(13,73,66,.3); }
.brand__name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.brand__tld { color: var(--teal); }
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--teal-deep); }
@media (max-width: 720px) { .site-nav { display: none; } }

/* ---------- hero ---------- */
.hero { padding: 54px 0 30px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal-deep);
  background: var(--teal-soft); border: 1px solid color-mix(in srgb, var(--teal) 18%, transparent);
  padding: 6px 13px; border-radius: 100px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-bright); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); margin: 20px 0 0; max-width: 17ch; }
.hero h1 .accent { color: var(--clay); }
.hero__sub { font-size: clamp(1.05rem, 2.1vw, 1.3rem); color: var(--ink-soft); margin: 18px 0 0; max-width: 60ch; line-height: 1.5; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center;
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-faint);
}
.hero__meta b { color: var(--ink-soft); font-weight: 600; }
.hero__meta .pill { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta .swatch { width: 9px; height: 9px; border-radius: 2px; }

/* ---------- layout grid (calc + sidebar) ---------- */
.layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 38px; align-items: start; padding-bottom: 30px; }
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } }

/* ---------- the calculator (must dominate) ---------- */
.calc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  overflow: hidden;
}
.calc__head { padding: 22px 26px 18px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--teal-tint), var(--surface)); }
.calc__kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.calc__title { font-size: 1.5rem; margin-top: 5px; }
.calc__body { padding: 24px 26px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
@media (max-width: 560px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 7px; }
.field .hint { font-size: 12.5px; color: var(--ink-faint); line-height: 1.4; }

.input-money { position: relative; }
.input-money::before { content: "$"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); font-size: 16px; font-weight: 500; pointer-events: none; }
.input-money input[type=text] { padding-left: 32px; }

input[type=text], input[type=number], select {
  width: 100%; height: 46px; padding: 0 14px;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); appearance: none; outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-variant-numeric: tabular-nums;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237c8884' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
input:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }

/* stepper for household size */
.stepper { display: flex; align-items: stretch; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; height: 46px; width: max-content; }
.stepper button { width: 46px; border: none; background: var(--surface-2); color: var(--teal-deep); font-size: 22px; line-height: 1; cursor: pointer; transition: background .12s; }
.stepper button:hover { background: var(--teal-soft); }
.stepper button:disabled { color: var(--line-strong); cursor: not-allowed; }
.stepper input { width: 64px; border: none; border-left: 1.5px solid var(--line); border-right: 1.5px solid var(--line); text-align: center; border-radius: 0; height: 100%; font-weight: 600; }
.stepper input:focus { box-shadow: none; }

/* age + benchmark override */
.bench-toggle { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); margin-top: 3px; cursor: pointer; user-select: none; }
.bench-toggle input { width: auto; height: auto; }
.bench-row { margin-top: 4px; }
.bench-est { font-size: 13px; color: var(--ink-faint); margin-top: 6px; }
.bench-est b { color: var(--teal-deep); font-weight: 600; }

/* extra income slider */
.slider-block { margin-top: 26px; padding-top: 22px; border-top: 1px dashed var(--line-strong); }
.slider-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.slider-head .lbl { font-size: 14px; font-weight: 600; }
.slider-head .val { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--teal-deep); font-variant-numeric: tabular-nums; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--surface-2); margin: 16px 0 4px; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(13,73,66,.4); cursor: grab; }
input[type=range]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(13,73,66,.4); cursor: grab; }
.slider-scale { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }

/* ---------- ad slots ---------- */
.ad-slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto; position: relative;
}
.ad-slot-label {
  display: none; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 6px; font-weight: 600;
}
.ad-slot:has(ins[data-ad-status="filled"]) .ad-slot-label { display: block; }
.ad-slot ins[data-ad-status="unfilled"] { display: none; }
.ad-slot--top    { min-height: 90px;  margin: 8px auto 30px; }
.ad-slot--pre    { min-height: 250px; margin: 4px auto 0; }
.ad-slot--mid    { min-height: 90px;  margin: 40px auto; }
.ad-slot--prefaq { min-height: 90px;  margin: 36px auto; }
.ad-slot--sidebar{ min-height: 600px; }
@media (max-width: 980px) { .ad-slot--top { min-height: 100px; } .ad-slot--mid, .ad-slot--prefaq { min-height: 250px; } }

/* pre-result slot — distinct chrome, but only once a real ad fills it.
   Until filled it reserves space and shows nothing (canonical unfilled rule). */
.ad-rail { margin: 26px 0 4px; border-radius: var(--radius-sm); }
.ad-rail:has(ins[data-ad-status="filled"]) { padding: 14px; background: var(--surface-2); border: 1px dashed var(--line-strong); }
.ad-rail .ad-slot-label { display: none; }
.ad-rail:has(ins[data-ad-status="filled"]) .ad-slot-label { display: block; }

/* sidebar sticky */
.sidebar-rail { position: sticky; top: 86px; }
.sidebar-rail .ad-rail:has(ins[data-ad-status="filled"]) { background: var(--surface); }
@media (max-width: 980px) { .sidebar-col { display: none; } }

/* ---------- RESULTS ---------- */
.results { margin-top: 28px; }
.results.is-empty .result-card { opacity: .55; }

.result-headline {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--teal);
  border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 26px 28px; margin-bottom: 18px;
}
.result-headline.is-over { border-left-color: var(--clay); }
.result-headline.is-gap  { border-left-color: var(--ink-faint); }
.result-headline .rh-kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.result-headline.is-over .rh-kicker { color: var(--clay); }
.result-headline .rh-main { font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.15rem); line-height: 1.18; margin-top: 8px; }
.result-headline .rh-main .hl { color: var(--teal-deep); font-variant-numeric: tabular-nums; }
.result-headline.is-over .rh-main .hl { color: var(--clay-deep); }
.result-headline .rh-sub { color: var(--ink-soft); margin-top: 12px; font-size: 1.02rem; max-width: 62ch; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
@media (max-width: 620px) { .stat-row { grid-template-columns: 1fr; } }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-soft);
}
.stat .s-label { font-size: 12.5px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .04em; }
.stat .s-value { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-top: 6px; font-variant-numeric: tabular-nums; line-height: 1; }
.stat .s-foot { font-size: 12.5px; color: var(--ink-faint); margin-top: 8px; }
.stat--credit .s-value { color: var(--green); }
.stat--credit.zero .s-value { color: var(--clay); }
.stat--fpl .s-value { color: var(--teal-deep); }

/* cliff chart card */
.cliff-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 22px 24px 16px; }
.cliff-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.cliff-card__head > div:first-child { flex: 1 1 240px; }
.cliff-card__title { font-size: 1.06rem; }
.cliff-card__hint { font-size: 12.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 7px; }
.cliff-card__hint svg { flex: 0 0 auto; }
.cliff-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); }
.cliff-legend .lg { display: inline-flex; align-items: center; gap: 7px; }
.cliff-legend .ln { width: 18px; height: 0; border-top-width: 2.5px; border-top-style: solid; }
.cliff-chart-wrap { position: relative; width: 100%; margin-top: 6px; touch-action: none; }
.cliff-chart-wrap svg { display: block; width: 100%; height: auto; overflow: visible; }
.cliff-tip {
  position: absolute; pointer-events: none; background: var(--ink); color: #fff;
  font-size: 12px; line-height: 1.4; padding: 8px 11px; border-radius: 8px; box-shadow: var(--shadow-card);
  transform: translate(-50%, -120%); white-space: nowrap; opacity: 0; transition: opacity .12s; z-index: 5;
}
.cliff-tip.show { opacity: 1; }
.cliff-tip b { font-variant-numeric: tabular-nums; }
.cliff-tip .tip-credit { color: #9fe0c4; }
.cliff-tip.over .tip-credit { color: #f0a892; }

/* guidance / callouts */
.callout { border-radius: var(--radius); padding: 18px 22px; margin-top: 18px; font-size: 15px; line-height: 1.55; }
.callout h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; margin: 0 0 7px; letter-spacing: .01em; }
.callout p { margin: 0 0 8px; color: var(--ink-soft); }
.callout p:last-child { margin-bottom: 0; }
.callout ul { margin: 8px 0 0; padding-left: 20px; color: var(--ink-soft); }
.callout li { margin-bottom: 5px; }
.callout--clay  { background: var(--clay-soft); border: 1px solid color-mix(in srgb, var(--clay) 25%, transparent); }
.callout--clay h4 { color: var(--clay-deep); }
.callout--teal  { background: var(--teal-tint); border: 1px solid color-mix(in srgb, var(--teal) 20%, transparent); }
.callout--teal h4 { color: var(--teal-deep); }
.callout--gap   { background: var(--surface-2); border: 1px solid var(--line-strong); }
.callout--gap h4 { color: var(--ink); }

/* ---------- long-form explainer ---------- */
.prose { max-width: 760px; }
.section { padding: 8px 0; }
.section__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 8px 0 0; }
.prose p { color: var(--ink-soft); margin: 14px 0; font-size: 1.02rem; text-wrap: pretty; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 6px; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 22px; }
.prose li { margin: 7px 0; }

/* applicable % table */
.aptable { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; font-variant-numeric: tabular-nums; }
.aptable th, .aptable td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.aptable thead th { font-family: var(--sans); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); font-weight: 700; background: var(--surface-2); }
.aptable tbody tr:hover { background: var(--teal-tint); }
.aptable td:first-child { font-weight: 600; color: var(--ink); }
.aptable .cliff-row td { color: var(--clay-deep); font-weight: 600; background: var(--clay-soft); }

/* verify-status note */
.verify-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 18px 20px; margin: 22px 0; box-shadow: var(--shadow-soft);
}
.verify-note .vn-mark { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 8px; background: var(--teal-soft); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.verify-note p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.verify-note b { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 40px 20px 0; font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--ink); position: relative; line-height: 1.25; }
.faq-q::after { content: ""; position: absolute; right: 4px; top: 24px; width: 13px; height: 13px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13'%3E%3Cpath d='M6.5 1v11M1 6.5h11' stroke='%23156a60' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 0 20px; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.faq-a-inner p { margin: 0 0 10px; }
.faq-a-inner p:last-child { margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); margin-top: 50px; padding: 48px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); font-weight: 700; margin: 4px 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; }
.footer-col a:hover { color: var(--teal-deep); }
.footer-col .ext::after { content: "↗"; font-size: 11px; margin-left: 4px; color: var(--ink-faint); }
.footer-divider { height: 1px; background: var(--line); margin: 34px 0 24px; }
.footer-legal { font-size: 13px; color: var(--ink-faint); line-height: 1.6; max-width: 90ch; }
.footer-legal b { color: var(--ink-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.footer-bottom .copy { font-size: 13px; color: var(--ink-faint); }
.footer-bottom button { background: none; border: none; color: var(--teal); font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--sans); padding: 0; }
.footer-bottom button:hover { color: var(--teal-deep); }

/* ---------- mobile sticky anchor ---------- */
.mobile-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; background: var(--surface); border-top: 1px solid var(--line-strong); box-shadow: 0 -2px 12px rgba(20,40,36,.08); padding: 7px 10px; align-items: center; justify-content: center; min-height: 64px; }
.mobile-sticky .ad-slot-label { position: absolute; top: 4px; left: 12px; margin: 0; }
.mobile-sticky:has(ins[data-ad-status="filled"]) .ad-slot-label { display: block; }
.mobile-sticky__close { position: absolute; top: 6px; right: 8px; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink-soft); font-size: 15px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
@media (max-width: 980px) { .mobile-sticky.active { display: flex; } body.has-sticky { padding-bottom: 72px; } }

/* ---------- privacy modal ---------- */
.modal-scrim { position: fixed; inset: 0; z-index: 100; background: rgba(15,30,27,.5); backdrop-filter: blur(2px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-scrim.open { display: flex; }
.modal { background: var(--surface); border-radius: 14px; max-width: 640px; width: 100%; max-height: 86vh; display: flex; flex-direction: column; box-shadow: 0 24px 70px rgba(15,30,27,.35); overflow: hidden; }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.modal__head h3 { font-size: 1.3rem; }
.modal__close { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); font-size: 18px; color: var(--ink-soft); cursor: pointer; }
.modal__close:hover { background: var(--surface-2); }
.modal__body { padding: 22px 24px; overflow-y: auto; }
.modal__body h4 { font-family: var(--serif); font-size: 1.08rem; margin: 18px 0 6px; color: var(--ink); }
.modal__body h4:first-child { margin-top: 0; }
.modal__body p, .modal__body li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.modal__body .lede { background: var(--teal-tint); border-left: 3px solid var(--teal); padding: 14px 16px; border-radius: 8px; color: var(--ink); }
.modal__body .linkbtn { background: none; border: none; padding: 0; font: inherit; color: var(--teal); text-decoration: underline; cursor: pointer; }
.modal__body .linkbtn:hover { color: var(--teal-deep); }
.modal__body ul { padding-left: 20px; }
.modal__foot { padding: 16px 24px; border-top: 1px solid var(--line); text-align: right; }
.modal__foot button { background: var(--teal); color: #fff; border: none; padding: 10px 22px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.modal__foot button:hover { background: var(--teal-deep); }

/* divider between major page blocks */
.rule { height: 1px; background: var(--line); margin: 18px 0; }
.section-gap { height: 30px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
