/* FortiPNW — shared styles */

:root {
  --bg:        #FFFFFF;
  --bg-soft:   #F7F8FA;
  --bg-inset:  #F1F3F6;
  --line:      #E2E5EA;
  --line-soft: #EDEFF3;
  --text:      #0F1419;
  --text-body: #4A5563;
  --text-mute: #7C8794;
  --red:       #CC0000;
  --red-deep:  #A30000;
  --red-tint:  #FDF2F2;
  --red-glow:  rgba(204, 0, 0, 0.12);
  --green:     #1F7A4C;
  --green-tint:#F1F8F4;
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04), 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 20, 25, 0.06), 0 2px 4px rgba(15, 20, 25, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 20, 25, 0.08), 0 2px 6px rgba(15, 20, 25, 0.04);
  --mono:      'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

::selection { background: var(--red); color: #fff; }

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

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-narrow {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
  flex: none;
}

h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text);
}

section {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}

.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.inline-link {
  color: var(--red);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  transition: border-color 0.15s ease;
}
.inline-link:hover { border-bottom-color: var(--red); }

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--text);
}
.brand .glyph {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
}
.nav a {
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--red); }
.nav a.current { color: var(--red); }

.nav .btn-sm {
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}
.nav .btn-sm:hover { background: var(--red-deep); color: #fff; }

@media (max-width: 860px) {
  .nav a:not(.btn-sm) { display: none; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.005em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 5px;
  border: 1px solid var(--red);
  box-shadow: var(--shadow-md);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: var(--shadow-lg);
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.cta-note {
  font-size: 14.5px;
  color: var(--text-mute);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

/* ---------- hero (home) ---------- */

.hero {
  padding: 108px 0 96px;
  border-top: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, var(--red-tint) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  font-family: var(--mono);
  background: #fff;
  border: 1px solid rgba(204, 0, 0, 0.25);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: 0;
  margin-bottom: 30px;
  max-width: 100%;
}

.status .flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px 9px 14px;
  flex: none;
}

.status .when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 9px 20px 9px 16px;
}
.status .when .sep {
  color: #D2D7DE;
  font-weight: 400;
}
.status .when .sub {
  font-weight: 400;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11.5px;
}

@media (max-width: 560px) {
  .status { flex-direction: column; border-radius: 12px; }
  .status .flag { justify-content: center; letter-spacing: 0.1em; }
  .status .when { padding: 10px 16px; }
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 2.4s ease-out infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
  html { scroll-behavior: auto; }
}

h1 {
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
}
h1 .accent { color: var(--red); }

.lede {
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55;
  color: var(--text-body);
  max-width: 46ch;
  margin: 0 auto 12px;
}
.lede strong { color: var(--text); font-weight: 600; }

.tagline {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  margin: 0 0 38px;
}

/* ---------- value props ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: #D5D9E0;
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--red-tint);
  border: 1px solid rgba(204, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 19px; height: 19px; stroke: var(--red); }

.card h3 {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
}
.card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--text-body);
}

/* ---------- who it's for ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
}

.split p.sub {
  color: var(--text-body);
  font-size: 16.5px;
  margin: 0;
  max-width: 38ch;
}

.who {
  list-style: none;
  margin: 0;
  padding: 0;
}
.who li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.who li:last-child { margin-bottom: 0; }

.who .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-tint);
  border: 1px solid rgba(204, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.who .check svg { width: 11px; height: 11px; stroke: var(--red); }

.who strong {
  font-weight: 600;
  font-size: 16px;
  display: block;
  line-height: 1.4;
}
.who span.desc {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- events ---------- */

.cadence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 860px) {
  .cadence { grid-template-columns: 1fr; }
}

.cad {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 28px 26px 30px;
}

.cad-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cad-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--red-tint);
  border: 1px solid rgba(204, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cad-icon svg { width: 17px; height: 17px; stroke: var(--red); }

.cad h3 {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0;
}
.cad .freq {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: block;
  margin-top: 2px;
}

.cad > p {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--text-body);
}

.specs {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-soft);
}
.specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14.5px;
  padding: 7px 0;
}
.specs .k {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.02em;
  flex: none;
}
.specs .v {
  font-weight: 500;
  color: var(--text);
  text-align: right;
}
.specs .v .mono {
  font-family: var(--mono);
  font-size: 13.5px;
}

.rotation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.rotation span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-body);
  background: var(--bg-inset);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 9px;
  white-space: nowrap;
}
.rotation span b {
  color: var(--red-deep);
  font-weight: 600;
}

.touchpoints {
  margin-top: 26px;
  font-size: 15px;
  color: var(--text-body);
  text-align: center;
}
.touchpoints b {
  color: var(--text);
  font-weight: 600;
}

.event {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 38px;
  margin-top: 42px;
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 740px) {
  .event { flex-direction: column; align-items: stretch; gap: 26px; padding: 28px 24px; }
}

.event-date {
  flex: none;
  width: 122px;
  height: 122px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.event-date .mon {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
}
.event-date .day {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 12px;
}
.event-date .dow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
@media (max-width: 740px) {
  .event-date {
    width: 100%;
    height: 62px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding-right: 18px;
  }
  .event-date .mon { width: auto; padding: 6px 12px; align-self: stretch; display: flex; align-items: center; }
  .event-date .day { margin-top: 0; font-size: 30px; }
  .event-date .dow { margin-bottom: 0; }
}

.event-body { flex: 1; min-width: 0; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 20px;
  font-size: 14.5px;
  color: var(--text-body);
}
.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.meta-row svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-mute);
  flex: none;
}

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: var(--red-tint);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.event-body h3 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.event-body p {
  margin: 0 0 22px;
  color: var(--text-body);
  font-size: 15.5px;
  max-width: 52ch;
}

.summit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 22px;
  padding: 20px 24px;
  background: var(--bg-inset);
  border: 1px dashed #CFD5DD;
  border-radius: 8px;
}
.summit .cad-icon {
  background: #fff;
  border-color: var(--line);
  margin-top: 1px;
}
.summit .cad-icon svg { stroke: var(--text-mute); }
.summit h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.summit .tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2px 7px;
}
.summit p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ---------- about / disclosure ---------- */

.about-copy { max-width: 64ch; }
.about-copy p {
  color: var(--text-body);
  font-size: 17px;
  margin: 0 0 18px;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--text); font-weight: 600; }

.disclose {
  margin-top: 38px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow-sm);
  max-width: 64ch;
}
.disclose .hd {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.disclose p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-body);
}

.disclose-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.disclose-list li {
  position: relative;
  padding: 0 0 0 22px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-body);
}
.disclose-list li:last-child { margin-bottom: 0; }
.disclose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.disclose-list strong { color: var(--text); font-weight: 600; }

.disclose-foot {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px !important;
  color: var(--text-mute) !important;
}

/* ---------- ground rules teaser (home) ---------- */

.rules-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}
@media (max-width: 900px) {
  .rules-teaser { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .rules-teaser { grid-template-columns: 1fr; }
}

.rule-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 20px 20px 22px;
}
.rule-chip .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.rule-chip strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}
.rule-chip span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}

.teaser-cta {
  margin-top: 28px;
}

/* ---------- page hero (subpages) ---------- */

.page-hero {
  padding: 76px 0 64px;
  border-top: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% -20%, var(--red-tint) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 20px;
}
.page-hero .lede {
  margin-left: 0;
  max-width: 58ch;
  text-align: left;
}

.crumb {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  transition: color 0.15s ease;
}
.crumb:hover { color: var(--red); }

/* ---------- rules (subpage) ---------- */

.rule {
  display: flex;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-soft);
}
.rule:last-of-type { border-bottom: 0; }
@media (max-width: 640px) {
  .rule { flex-direction: column; gap: 14px; padding: 28px 0; }
}

.rule-num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-tint);
  border: 1px solid rgba(204, 0, 0, 0.16);
  color: var(--red);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-body { flex: 1; min-width: 0; }
.rule-body h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin: 6px 0 10px;
}
.rule-body p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}
.rule-body p:last-child { margin-bottom: 0; }
.rule-body strong { color: var(--text); font-weight: 600; }

.pull {
  margin: 16px 0 0;
  padding: 16px 20px;
  background: var(--bg-inset);
  border-left: 2px solid var(--red);
  border-radius: 0 6px 6px 0;
  font-size: 15px !important;
  line-height: 1.6 !important;
}
.pull .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 5px;
}

/* two-column do / don't */

.ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 760px) {
  .ledger { grid-template-columns: 1fr; }
}

.ledger-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 28px;
}
.ledger-col.yes { border-top: 3px solid var(--green); }
.ledger-col.no  { border-top: 3px solid var(--red); }

.ledger-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.ledger-col.yes h3 { color: var(--green); }
.ledger-col.no  h3 { color: var(--red); }
.ledger-col h3 svg { width: 16px; height: 16px; flex: none; }

.ledger-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ledger-col li {
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 11px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}
.ledger-col li:last-child { margin-bottom: 0; }
.ledger-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  font-size: 13px;
}
.ledger-col.yes li::before { content: "+"; color: var(--green); }
.ledger-col.no  li::before { content: "\2212"; color: var(--red); }

/* agenda timeline */

.agenda {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
.agenda li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}
.agenda li:last-child { margin-bottom: 0; }
.agenda .t {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  flex: none;
  width: 78px;
}
.agenda .a strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
}
.agenda .a span {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.55;
}

/* closing CTA band */

.band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 72px 0;
  text-align: center;
}
.band h2 { margin-bottom: 14px; }
.band p {
  color: var(--text-body);
  font-size: 16.5px;
  max-width: 52ch;
  margin: 0 auto 28px;
}

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

footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 46px 0 56px;
}
.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.foot .brand { font-size: 16px; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
}
.foot-links a { text-decoration: none; transition: color 0.15s ease; }
.foot-links a:hover { color: var(--red); }

.fine {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 70ch;
  margin: 0;
}
.fine + .fine { margin-top: 8px; }
