/* project-state-suite — landing
 * Atomic47 Labs design system applied.
 * Montserrat for headings, Calibri for body. Yellow + charcoal. No rounded rects.
 */

@import url("brand/colors_and_type.css");

:root {
  /* Page-local semantic aliases mapped onto A47 tokens */
  --paper:    var(--a47-white);
  --paper-2:  var(--a47-paper);          /* warm off-white surface */
  --paper-3:  var(--a47-charcoal-10);    /* slightly sunken */
  --ink:      var(--a47-charcoal);
  --ink-2:    var(--a47-charcoal-90);
  --mid:      var(--a47-charcoal-70);
  --mid-2:    var(--a47-charcoal-50);
  --rule:     var(--a47-charcoal-20);
  --rule-soft:var(--a47-charcoal-10);

  --accent:       var(--a47-light-blue-aa); /* AA teal for text/marks */
  --accent-soft:  var(--a47-light-blue);
  --amber:        var(--a47-yellow-600);
  --terracotta:   var(--a47-rose);
  --brand-yellow: var(--a47-yellow);

  --serif: var(--font-heading);  /* Montserrat — display/heading */
  --mono:  var(--font-mono);
  --body:  var(--font-body);     /* Calibri stack — body */

  --max: 1200px;
  --col: 1080px;
  --read: 640px;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 192px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--paper); }

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
a:hover { border-bottom-color: var(--ink); color: var(--ink); }

/* ---------- Layout primitives ---------- */

.page { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-7); }
@media (max-width: 720px) { .page { padding: 0 var(--s-5); } }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.rule-soft { height: 1px; background: var(--rule-soft); border: 0; margin: 0; }

.eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mid);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }

.measure { max-width: var(--read); }

/* ---------- Top bar ---------- */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--s-7);
  max-width: var(--max); margin: 0 auto;
  gap: var(--s-4);
}
@media (max-width: 720px) { .topbar-inner { padding: 12px var(--s-5); } }

.brand-lockup {
  display: flex; align-items: center; gap: 14px;
  border: 0;
}
.brand-lockup:hover { border: 0; }
.brand-logo { display: block; height: 36px; width: auto; }
.brand-divider { width: 1px; height: 22px; background: var(--rule); }
.brand-product {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.brand-product .product-mark { color: var(--accent); margin-right: 6px; }

.topbar-meta {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topbar-meta .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--brand-yellow);
  margin-right: 8px; vertical-align: 1px;
}

/* ---------- Hero ---------- */

.hero { padding: var(--s-10) 0 var(--s-9); }
@media (max-width: 720px) { .hero { padding: var(--s-8) 0 var(--s-7); } }

.hero-meta { display: flex; gap: var(--s-5); align-items: baseline; margin-bottom: var(--s-7); flex-wrap: wrap; }
.hero-meta .sep { color: var(--rule); }

.h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: var(--s-6);
  color: var(--ink);
}
.h1 em {
  font-style: italic; color: var(--ink);
  background-image: linear-gradient(var(--brand-yellow), var(--brand-yellow));
  background-repeat: no-repeat;
  background-size: 100% 0.18em;
  background-position: 0 1.05em;
}

.lede {
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: var(--s-7);
}
.lede strong { font-weight: 600; color: var(--ink); }

.cta-row { display: flex; gap: var(--s-5); align-items: center; flex-wrap: wrap; }

.btn {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  background: var(--brand-yellow);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 0;
  border: 1px solid var(--brand-yellow);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--a47-yellow-600); border-color: var(--a47-yellow-600); color: var(--ink); }
.btn:active { background: var(--a47-yellow-600); }
.btn .arrow { font-family: var(--serif); font-weight: 500; font-size: 15px; }

.btn-dark {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-2); border-color: var(--ink-2); color: var(--paper); }

.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--rule);
  font-family: var(--serif); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 18px;
}
.btn-ghost:hover { background: var(--a47-charcoal-10); border-color: var(--ink); }

.cta-aside { font-family: var(--mono); font-size: 12px; color: var(--mid); }

/* ---------- Section frame ---------- */

.section { padding: var(--s-9) 0; }
@media (max-width: 720px) { .section { padding: var(--s-7) 0; } }

.section-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
  align-items: baseline;
}
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: var(--s-3); margin-bottom: var(--s-6); } }
.section-label {
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); padding-top: 12px;
}
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.015em;
  max-width: 22ch;
}
.section-title em {
  font-style: italic; color: var(--ink);
  background-image: linear-gradient(var(--brand-yellow), var(--brand-yellow));
  background-repeat: no-repeat;
  background-size: 100% 0.16em;
  background-position: 0 1.05em;
}

/* ---------- Problem section ---------- */

.problem-grid { display: grid; grid-template-columns: 180px 1fr; gap: var(--s-6); }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-body p { font-family: var(--body); font-size: 19px; line-height: 1.5; max-width: 60ch; color: var(--ink-2); }
.problem-body p:first-child { font-size: 21px; line-height: 1.45; color: var(--ink); }
.problem-body p + p { margin-top: 1em; }
.problem-body em { font-style: italic; }

.consequence-list {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
@media (max-width: 720px) { .consequence-list { grid-template-columns: 1fr; } }
.consequence {
  padding: var(--s-5) var(--s-5) var(--s-5) 0;
  border-bottom: 1px solid var(--rule);
}
.consequence:nth-child(odd) { padding-right: var(--s-6); border-right: 1px solid var(--rule); }
.consequence:nth-child(even) { padding-left: var(--s-6); }
@media (max-width: 720px) {
  .consequence:nth-child(odd) { border-right: 0; padding-right: 0; }
  .consequence:nth-child(even) { padding-left: 0; }
}
.consequence-num {
  font-family: var(--mono); font-size: 11px; color: var(--mid); letter-spacing: 0.08em;
}
.consequence-text {
  font-family: var(--body); font-size: 16px; line-height: 1.45;
  margin-top: 6px; color: var(--ink);
}

/* ---------- Architecture section ---------- */

.arch-intro {
  font-family: var(--body); font-size: 19px; line-height: 1.5;
  max-width: 64ch; color: var(--ink-2); margin-bottom: var(--s-8);
}
.arch-intro em { font-style: italic; }

.arch-stack {
  display: grid;
  grid-template-columns: 200px 1fr 380px;
  gap: 0;
  border-top: 1px solid var(--ink);
}
@media (max-width: 980px) { .arch-stack { grid-template-columns: 140px 1fr; } .arch-yaml { display: none; } }
@media (max-width: 600px) { .arch-stack { grid-template-columns: 1fr; } }

.arch-row { display: contents; }
.arch-cell {
  padding: var(--s-6) var(--s-5);
  border-bottom: 1px solid var(--rule);
}
.arch-num {
  font-family: var(--serif); font-weight: 500;
  font-size: 13px; color: var(--mid);
  letter-spacing: 0.04em;
  border-right: 1px solid var(--rule);
}
.arch-num .layer {
  display: block; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 6px; color: var(--ink);
  font-weight: 500;
}

.arch-body { border-right: 1px solid var(--rule); }
@media (max-width: 980px) { .arch-body { border-right: 0; } }
.arch-name {
  font-family: var(--mono); font-size: 17px; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.arch-name .accent { color: var(--accent); font-weight: 500; }
.arch-desc {
  font-family: var(--body); font-size: 16px; line-height: 1.5;
  color: var(--ink-2); max-width: 52ch; margin-bottom: 10px;
}
.arch-q {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 14px; color: var(--mid);
}
.arch-q::before {
  content: "answers — "; font-style: normal;
  font-family: var(--serif); font-weight: 500;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid-2); margin-right: 4px;
}

.arch-yaml { background: var(--paper-2); padding: var(--s-5); }

.flow-note {
  margin-top: var(--s-6);
  display: flex; gap: var(--s-5); align-items: baseline;
  font-family: var(--mono); font-size: 12px; color: var(--mid); letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.flow-note .arrow { color: var(--accent); }

/* ---------- Code / YAML blocks ---------- */

.code {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-2);
  white-space: pre;
  overflow-x: auto;
}
.code .k { color: var(--mid); }
.code .s { color: var(--ink); }
.code .c { color: var(--mid-2); font-style: italic; }
.code .a { color: var(--accent); }
.code .am { color: var(--amber); }
.code .te { color: var(--terracotta); }
.code .dim { color: var(--mid-2); }

/* ---------- Who-it's-for ---------- */

.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
@media (max-width: 820px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-col { padding: var(--s-7) var(--s-6); }
.fit-col + .fit-col { border-left: 1px solid var(--rule); }
@media (max-width: 820px) { .fit-col + .fit-col { border-left: 0; border-top: 1px solid var(--rule); } }
.fit-head { display: flex; align-items: baseline; gap: var(--s-3); margin-bottom: var(--s-5); }
.fit-mark {
  font-family: var(--mono); font-size: 14px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.fit-mark.yes { background: var(--brand-yellow); color: var(--ink); font-weight: 700; }
.fit-mark.no  { background: var(--ink); color: var(--paper); font-weight: 700; }
.fit-title {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; font-style: italic;
}
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li {
  padding: 14px 0; border-top: 1px solid var(--rule-soft);
  font-family: var(--body); font-size: 16px; line-height: 1.45;
  color: var(--ink-2);
}
.fit-list li strong { color: var(--ink); font-weight: 600; }
.fit-list li:first-child { border-top: 0; padding-top: 0; }

/* ---------- Partner offer ---------- */

.offer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
@media (max-width: 820px) { .offer { grid-template-columns: 1fr; } }
.offer-item { padding: var(--s-6) var(--s-5); border-top: 1px solid var(--rule); }
.offer-item + .offer-item { border-left: 1px solid var(--rule); }
@media (max-width: 820px) { .offer-item + .offer-item { border-left: 0; } }
.offer-num {
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; color: var(--mid); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
}
.offer-title {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; line-height: 1.2; margin-bottom: 10px;
  color: var(--ink);
}
.offer-title em {
  font-style: italic;
  background-image: linear-gradient(var(--brand-yellow), var(--brand-yellow));
  background-repeat: no-repeat;
  background-size: 100% 0.16em;
  background-position: 0 1.05em;
}
.offer-text {
  font-family: var(--body); font-size: 15px; line-height: 1.5; color: var(--ink-2);
}

/* ---------- About ---------- */

.about-grid { display: grid; grid-template-columns: 200px 1fr; gap: var(--s-6); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-body p {
  font-family: var(--body); font-size: 18px; line-height: 1.55;
  max-width: 60ch; color: var(--ink-2);
}
.about-body p + p { margin-top: 1em; }
.about-card {
  margin-top: var(--s-6);
  padding: var(--s-5);
  border: 1px solid var(--rule);
  background: var(--paper-2);
  display: grid; grid-template-columns: 56px 1fr; gap: var(--s-4);
  align-items: center;
  max-width: 480px;
}
.about-portrait {
  width: 56px; height: 56px;
  background: var(--brand-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.about-name { font-family: var(--serif); font-weight: 500; font-size: 16px; }
.about-role {
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; color: var(--mid); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 4px;
}
.about-mail { font-family: var(--mono); font-size: 12px; color: var(--mid); margin-top: 6px; }
.about-mail a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
}

/* ---------- Aside callout (sidebar copy) ---------- */
.aside-callout {
  font-family: var(--mono); font-size: 12px; color: var(--mid);
  letter-spacing: 0.02em; line-height: 1.7;
}
.aside-callout strong { color: var(--ink); font-weight: 600; }

/* ---------- Application form ---------- */

.apply-wrap {
  background: var(--ink);
  color: var(--paper);
  margin: var(--s-9) 0 0;
  padding: var(--s-9) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 720px) { .apply-wrap { margin: var(--s-7) 0 0; padding: var(--s-7) 0; } }

.apply-wrap .section-label { color: var(--a47-charcoal-50); }
.apply-wrap .apply-h2 { color: var(--paper); }
.apply-wrap .apply-lede { color: var(--a47-charcoal-20); }
.apply-wrap .apply-meta { color: var(--a47-charcoal-50); }

.apply-page { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-7); }
@media (max-width: 720px) { .apply-page { padding: 0 var(--s-5); } }

.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: start; }
@media (max-width: 980px) { .apply-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.apply-intro .section-label { padding-top: 0; }
.apply-h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.05;
  letter-spacing: -0.015em; margin: 14px 0 var(--s-5);
}
.apply-h2 em { font-style: italic; color: var(--brand-yellow); }
.apply-lede {
  font-family: var(--body); font-size: 17px; line-height: 1.55;
  max-width: 44ch; margin-bottom: var(--s-5);
}
.apply-meta {
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.55;
  display: flex; flex-direction: column; gap: 8px;
}
.apply-meta-row { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: baseline; }
.apply-meta-row .dot {
  width: 6px; height: 6px;
  background: var(--brand-yellow);
  display: inline-block; align-self: center;
}

/* form (on dark background) */
.form { display: flex; flex-direction: column; gap: var(--s-5); }
.field-label {
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; color: var(--a47-charcoal-20);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px; display: flex; justify-content: space-between; align-items: baseline;
}
.field-label .opt {
  color: var(--a47-charcoal-50); text-transform: none;
  letter-spacing: 0.02em; font-weight: 400;
}
.input, .textarea {
  width: 100%;
  font-family: var(--body); font-size: 16px;
  background: var(--ink-2);
  border: 1px solid var(--a47-charcoal-70);
  color: var(--paper);
  padding: 12px 14px;
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: var(--a47-charcoal-50); }
.textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.input:focus, .textarea:focus {
  outline: 0; border-color: var(--brand-yellow); background: var(--ink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--serif); font-weight: 500; font-size: 12px;
  padding: 8px 12px;
  border: 1px solid var(--a47-charcoal-70);
  background: var(--ink-2);
  cursor: pointer; user-select: none;
  letter-spacing: 0.04em;
  transition: all var(--dur-fast) var(--ease-out);
  color: var(--a47-charcoal-20);
  border-radius: 0;
}
.chip:hover { border-color: var(--a47-charcoal-50); color: var(--paper); }
.chip.on {
  background: var(--brand-yellow); color: var(--ink); border-color: var(--brand-yellow);
}
.chip .mark { display: inline-block; width: 10px; color: var(--brand-yellow); }
.chip.on .mark { color: var(--ink); }

.size-row {
  display: flex; gap: 0;
  border: 1px solid var(--a47-charcoal-70);
  background: var(--ink-2);
}
.size-opt {
  flex: 1;
  font-family: var(--serif); font-weight: 500;
  font-size: 12px; padding: 12px 8px; text-align: center; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  letter-spacing: 0.04em; color: var(--a47-charcoal-20);
  border-right: 1px solid var(--a47-charcoal-70);
}
.size-opt:last-child { border-right: 0; }
.size-opt:hover { background: var(--ink); color: var(--paper); }
.size-opt.on { background: var(--brand-yellow); color: var(--ink); }

.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); margin-top: var(--s-3); flex-wrap: wrap;
}
.form-foot-note {
  font-family: var(--mono); font-size: 11px;
  color: var(--a47-charcoal-50); letter-spacing: 0.04em;
}

.thanks {
  background: var(--ink-2);
  border: 1px solid var(--a47-charcoal-70);
  padding: var(--s-7);
  text-align: left;
  color: var(--paper);
}
.thanks-mark {
  font-family: var(--serif); font-weight: 500;
  font-size: 12px; color: var(--brand-yellow);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--s-4);
}
.thanks h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 30px; line-height: 1.1; margin-bottom: var(--s-4);
  color: var(--paper);
}
.thanks h3 em { font-style: italic; color: var(--brand-yellow); }
.thanks p {
  font-family: var(--body); font-size: 16px;
  color: var(--a47-charcoal-20); max-width: 44ch;
}
.thanks-receipt {
  font-family: var(--mono); font-size: 11px;
  color: var(--a47-charcoal-50); margin-top: var(--s-5);
  padding-top: var(--s-4); border-top: 1px solid var(--a47-charcoal-70);
  display: flex; justify-content: space-between;
}

/* ---------- Footer ---------- */

.footer {
  padding: var(--s-7) 0 var(--s-6);
  background: var(--ink);
  color: var(--paper);
  margin-top: 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-4);
}
.footer .brand-lockup .brand-product { color: var(--paper); }
.footer .brand-lockup .brand-divider { background: var(--a47-charcoal-70); }
.footer-meta {
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; color: var(--a47-charcoal-50); letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-meta a {
  color: var(--a47-charcoal-20);
  border-bottom: 1px solid var(--a47-charcoal-70);
}
.footer-meta a:hover { color: var(--brand-yellow); border-bottom-color: var(--brand-yellow); }

/* ---------- Health dots ---------- */
.health { display: inline-block; width: 8px; height: 8px; vertical-align: 1px; margin-right: 6px; }
.health.green { background: var(--accent); }
.health.amber { background: var(--amber); }
.health.red { background: var(--terracotta); }

/* terminal-ish briefing block */
.briefing {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: var(--s-5);
}
.briefing-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif); font-weight: 500;
  font-size: 11px; color: var(--mid);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: var(--s-3); border-bottom: 1px solid var(--rule-soft);
  margin-bottom: var(--s-4);
}
.briefing-line {
  font-family: var(--mono); font-size: 12.5px; line-height: 1.85; color: var(--ink-2);
}
.briefing-line .tag { color: var(--mid); }
.briefing-line .due { color: var(--terracotta); }
.briefing-line .ok  { color: var(--accent); }
.briefing-line .am  { color: var(--amber); }

/* small reveal for hero on load */
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.rise { animation: rise 700ms var(--ease-out) both; }
.rise.d1 { animation-delay: 80ms; }
.rise.d2 { animation-delay: 160ms; }
.rise.d3 { animation-delay: 240ms; }
.rise.d4 { animation-delay: 320ms; }
