:root {
  /* Neeve palette */
  --bg: #faf7f1;
  --bg-subtle: #f3ede0;
  --ink: #1a1620;
  --ink-body: #3a3440;
  --ink-muted: #6a6270;
  --ink-subtle: #8a828e;
  --rule: #e5ddc9;
  --rule-strong: #cfc6b0;

  --purple: #320555;
  --purple-button: hsl(259, 42%, 40%);
  --purple-button-hover: hsl(259, 42%, 32%);
  --purple-light: hsl(274, 17%, 58%);

  --gold: #c09b2d;
  --gold-soft: #c8aa20;

  /* Type */
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1120px;
  --container-narrow: 860px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad-y: clamp(4rem, 9vh, 7rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink-body);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}
a:hover { border-bottom-color: var(--purple); }

img { max-width: 100%; display: block; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(250, 247, 241, 0.72);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 247, 241, 0.92);
  border-bottom-color: var(--rule);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand { border: none; display: flex; align-items: center; }
.nav-brand img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.nav-links a {
  color: inherit;
  border: none;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple-button);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 160ms var(--ease);
}
.nav-cta:hover { background: var(--purple-button-hover); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

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

main { padding-top: 64px; }

.section,
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--pad-x);
}

.rule {
  max-width: calc(var(--container) - 2 * var(--pad-x));
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--rule);
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0 0 1.5rem 0;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem 0;
}

h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
h1 .accent { color: var(--purple); font-style: italic; font-weight: 500; display: inline-block; margin-top: 0.18em; }

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  line-height: 1.2;
  max-width: 42ch;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

p { margin: 0 0 1.15rem 0; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 52ch;
  font-style: italic;
}

.section-intro {
  color: var(--ink-muted);
  margin-bottom: 2.25rem;
  max-width: 55ch;
}

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

.hero {
  padding-top: clamp(5rem, 14vh, 9rem);
  padding-bottom: clamp(6rem, 15vh, 11rem);
}
.hero h1 { margin-bottom: 2.25rem; }

/* ---------- Continuity ---------- */

#continuity h2 { max-width: 48ch; }
#continuity p { max-width: 72ch; text-align: justify; }

/* ---------- What we do ---------- */

.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 2rem;
}
.what-item h3 { margin-bottom: 0.6rem; color: var(--purple); }
.what-item p { font-size: 0.98rem; line-height: 1.6; text-align: justify; }

@media (max-width: 680px) {
  .what-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Where we work ---------- */

.where-list {
  margin: 2rem 0 0 0;
  padding: 0;
  max-width: 52rem;
}
.where-list > div {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
}
.where-list > div:last-child { border-bottom: 1px solid var(--rule); }
.where-list dt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
}
.where-list dd {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}
@media (max-width: 680px) {
  .where-list > div { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ---------- Outcomes ---------- */

.outcome {
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
}
.outcome:last-child { border-bottom: 1px solid var(--rule); }
.outcome-kicker {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f575e;
  margin: 0 0 1rem 0;
  font-weight: 500;
  max-width: none;
}
.outcome-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.outcome-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.outcome-stats strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--purple);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.outcome-stats span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
@media (max-width: 820px) {
  .outcome-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 440px) {
  .outcome-stats { grid-template-columns: 1fr; }
}

/* ---------- Customer voice ---------- */

.voice {
  background: var(--bg-subtle);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.voice > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.voice blockquote {
  margin: 0 auto;
  padding: 1.5rem var(--pad-x);
  max-width: var(--container);
  border-top: 1px solid var(--rule);
}
.voice blockquote:last-of-type { border-bottom: 1px solid var(--rule); }
.voice blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 0.5rem;
  max-width: 55ch;
}
.voice blockquote cite {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  font-style: normal;
  font-weight: 500;
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.steps h3 { color: var(--ink); margin-bottom: 0.5rem; }
.steps p { color: var(--ink-muted); font-size: 0.98rem; text-align: justify; }

@media (max-width: 680px) {
  .steps li { grid-template-columns: 1fr; gap: 0.4rem; }
  .step-num { font-size: 1.2rem; }
}

/* ---------- Rumi / Recognized / Relationship ---------- */

.rumi-sub { display: inline-block; margin-top: 0.35em; }
.rumi-links { display: flex; gap: 2rem; margin-top: 1.25rem; }

.rumi-assistants-copy {
  margin-top: 2.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink-body);
}

.rumi-assistants {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.rumi-assistants .link-arrow {
  font-size: 0.95rem;
}

.link-arrow {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--purple);
  font-size: 1rem;
  border-bottom: 1px solid var(--purple-light);
  padding-bottom: 2px;
}
.link-arrow span { transition: transform 160ms var(--ease); display: inline-block; margin-left: 0.25em; }
.link-arrow:hover span { transform: translateX(3px); }

.recognized-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.recognized-list li {
  border-top: 2px solid var(--gold);
  padding-top: 1.25rem;
}
.recognized-list h3 { color: var(--ink); margin-bottom: 0.5rem; }
.recognized-list p { color: var(--ink-muted); font-size: 0.94rem; }
@media (max-width: 820px) {
  .recognized-list { grid-template-columns: 1fr; gap: 1.5rem; }
}

.relationship { text-align: left; }
.relationship .statement {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: none;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- CTA ---------- */

.cta h2 { margin-bottom: 1rem; }
.cta-lede {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 55ch;
  margin-bottom: 2rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.cta-assistants {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.cta-assistant p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

.btn-primary, .btn-ghost {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 160ms var(--ease);
  text-decoration: none;
  display: inline-block;
}
.btn-primary { background: var(--purple-button); color: #fff; }
.btn-primary:hover { background: var(--purple-button-hover); border-color: transparent; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.btn-primary, .btn-ghost { border-bottom: 1px solid transparent; }

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

.footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
}
.footer-brand {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-logo { height: 28px; width: auto; flex-shrink: 0; }
.footer-note {
  font-size: 0.82rem;
  color: var(--ink-subtle);
  line-height: 1.5;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--pad-x) 1rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a5260;
  margin-bottom: 0.75rem;
}
.footer-col p { margin: 0 0 0.5rem 0; font-size: 0.85rem; color: #9e96a2; }
.footer-col a { color: var(--ink-subtle); }
.footer-col a:hover { color: var(--purple); }
.footer-base {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--pad-x);
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
  color: var(--ink-subtle);
}
.footer-base p { margin: 0; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Modal ---------- */

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 32, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 180ms var(--ease);
}
.modal-panel {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(26, 22, 32, 0.18);
  animation: panelIn 220ms var(--ease);
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  font-family: var(--sans);
}
.modal-close:hover { color: var(--ink); }
.modal h2 { margin-bottom: 0.75rem; }
.modal-lede { color: var(--ink-muted); margin-bottom: 1.5rem; font-size: 0.98rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Form ---------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 0.7rem 0.85rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px hsla(259, 42%, 40%, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 6rem; }
.contact-form .btn-primary { margin-top: 0.5rem; align-self: flex-start; }
.form-status {
  font-size: 0.88rem;
  margin: 0;
  min-height: 1.2em;
  color: var(--ink-muted);
}
.form-status.is-success { color: #3a6b2d; }
.form-status.is-error { color: #a53424; }

/* ---------- Systems hub ---------- */

.systems-hub {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) var(--pad-x) clamp(5rem, 9vh, 7rem);
}
.systems-hub h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.systems-hub .lede { margin-bottom: 2.5rem; max-width: 60ch; }

.systems-grid {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

a.system-card {
  display: block;
  padding: 2.25rem 0;
  border-top: 1px solid var(--rule);
  color: inherit;
  border-bottom: none;
}
a.system-card:hover { border-bottom: none; }
a.system-card:last-of-type { border-bottom: 1px solid var(--rule); }

.system-kicker {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f575e;
  font-weight: 500;
  margin: 0 0 0.85rem 0;
  max-width: none;
}
a.system-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem 0;
  transition: color 160ms var(--ease);
}
a.system-card:hover h3 { color: var(--purple); }

.system-card-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.75rem;
  max-width: 56rem;
}
.system-card-stats li { display: flex; flex-direction: column; gap: 0.3rem; }
.system-card-stats strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--purple);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.system-card-stats span {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.view-system {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--purple);
  border-bottom: 1px solid var(--purple-light);
  padding-bottom: 2px;
}
.view-system span {
  display: inline-block;
  margin-left: 0.25em;
  transition: transform 160ms var(--ease);
}
a.system-card:hover .view-system span { transform: translateX(3px); }

@media (max-width: 820px) {
  .system-card-stats { grid-template-columns: repeat(2, 1fr); gap: 0.85rem 1.25rem; }
}
@media (max-width: 440px) {
  .system-card-stats { grid-template-columns: 1fr; }
}

/* ---------- System detail page ---------- */

.system-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4.5rem, 11vh, 7rem) var(--pad-x) clamp(2.5rem, 6vh, 4rem);
}
.system-hero .breadcrumb {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-subtle);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.04em;
}
.system-hero .breadcrumb a {
  color: var(--ink-muted);
  border-bottom: 1px solid transparent;
}
.system-hero .breadcrumb a:hover {
  color: var(--purple);
  border-bottom-color: var(--purple-light);
}
.system-hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.015em;
  max-width: 28ch;
  margin-bottom: 0.75rem;
}
.system-subtitle {
  font-family: var(--serif);
  font-style: italic;
  color: var(--purple);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.4;
  margin: 0 0 1.5rem 0;
  max-width: 50ch;
}
.system-hero .lede { margin-top: 1rem; max-width: 65ch; }

.system-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 4rem) var(--pad-x);
}
.system-section h2 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  max-width: 56ch;
}
.system-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 65ch;
}
.system-section p {
  color: var(--ink-body);
  max-width: 70ch;
  font-size: 0.98rem;
  text-align: justify;
}

.system-outcomes-grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
  max-width: 60rem;
}
.system-outcomes-grid li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--rule);
}
.system-outcomes-grid strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--purple);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.system-outcomes-grid span {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
@media (max-width: 820px) {
  .system-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .system-outcomes-grid { grid-template-columns: 1fr; }
}

.system-pdf {
  margin-top: 0.5rem;
}
.system-pdf .pdf-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--purple);
  border: 1px solid var(--rule-strong);
  padding: 0.7rem 1.15rem;
  border-radius: 2px;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.system-pdf .pdf-link:hover {
  border-color: var(--purple);
  background: rgba(50, 5, 85, 0.04);
}
.system-pdf .pdf-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-subtle);
  margin-top: 0.6rem;
}

.system-nav-back {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.92rem;
}

/* Outcome blocks on the homepage become anchor links to detail pages */
a.outcome {
  display: block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: background 160ms var(--ease);
}
a.outcome:hover {
  background: rgba(50, 5, 85, 0.025);
  border-bottom-color: var(--rule);
}
a.outcome:hover .outcome-kicker { color: var(--purple); }
.outcome-cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--purple);
}
.outcome-cta span {
  display: inline-block;
  margin-left: 0.25em;
  transition: transform 160ms var(--ease);
}
a.outcome:hover .outcome-cta span { transform: translateX(3px); }

/* ---------- Reveal animation ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero + .rule + [data-reveal] {
  transition-delay: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
