/* ============================================================
   Cacti Therapeutics — Design System
   Palette derived from the Cacti brand: deep desert-dusk navy,
   sage green, terracotta bloom, steel-blue bloom, warm sand.
   ============================================================ */

:root {
  /* Brand */
  --navy:        #15273d;
  --navy-900:    #0f1d2e;
  --navy-800:    #1b3148;
  --navy-700:    #244260;
  --sage:        #6f8b82;
  --sage-light:  #93a89f;
  --sage-dark:   #546b63;
  --terracotta:  #c2733e;
  --terracotta-light: #d98e5c;
  --steel:       #5b9bb0;
  --steel-light: #84bccd;
  --sand:        #e7ddcf;
  --sand-50:     #f6f1e9;
  --sand-100:    #efe7da;

  /* Ink */
  --ink:         #1d2733;
  --ink-soft:    #45525f;
  --cloud:       #e9eef1;
  --cloud-soft:  #b9c6cd;
  --muted:       #8ea0a6;

  /* Tokens */
  --maxw: 1180px;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -22px rgba(8, 20, 33, .55);
  --shadow-soft: 0 10px 30px -18px rgba(8, 20, 33, .4);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--terracotta);
  opacity: .8;
}
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: var(--ink-soft); }
.serif-accent { font-family: var(--serif); font-style: italic; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; overflow: hidden; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

/* Section themes */
.bg-navy  { background: var(--navy); color: var(--cloud); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy .lead { color: var(--cloud-soft); }
.bg-sand  { background: var(--sand-50); }
.bg-sand-2 { background: var(--sand-100); }
.bg-white { background: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(150%) blur(14px);
  background: rgba(15, 29, 46, .82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 72px;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { height: 38px; width: auto; }
.brand img.brand-logo { height: 30px; width: auto; }
@media (max-width: 420px){ .brand img.brand-logo { height: 26px; } }
.brand-text { font-family: var(--serif); font-size: 1.42rem; color: #fff; letter-spacing: .01em; }
.brand-text sup { font-size: .5em; color: var(--sage-light); top: -1em; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  color: var(--cloud-soft);
  font-size: .92rem; font-weight: 500;
  padding: .55rem .7rem; border-radius: 9px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--terracotta); border-radius: 2px;
}
.nav-cta {
  background: var(--terracotta); color: #fff !important;
  padding: .6rem 1.1rem !important; border-radius: 999px !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--terracotta-light) !important; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; color: #fff;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--navy-900);
    padding: 1rem 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .85rem .6rem; font-size: 1.02rem; }
  .nav-cta { text-align: center; margin-top: .5rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-light); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-800); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-dark); }
.btn svg { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--terracotta);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow:hover { gap: .7rem; border-color: var(--terracotta); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: var(--cloud);
  padding: clamp(4.5rem, 11vw, 8.5rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% 10%, rgba(91,155,176,.22), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(111,139,130,.28), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--terracotta-light); font-weight: 400; }
.hero-sub { margin-top: 1.4rem; max-width: 48ch; color: var(--cloud-soft); font-size: clamp(1.05rem,1.6vw,1.25rem); }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-media {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,29,46,.55));
}
.hero-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(15,29,46,.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  padding: .7rem 1rem; border-radius: 14px;
}
.hero-badge img { height: 34px; }
.hero-badge span { font-size: .82rem; color: var(--cloud); line-height: 1.3; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16/11; order: -1; }
}

/* Bloom watermark */
.bloom-mark {
  position: absolute; opacity: .06; pointer-events: none; z-index: 1;
  width: clamp(260px, 40vw, 560px);
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--navy-800); padding: 1.6rem 1.4rem; }
.stat b { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: #fff; display: block; line-height: 1; }
.stat b .unit { font-size: .55em; color: var(--terracotta-light); }
.stat span { font-size: .86rem; color: var(--cloud-soft); display: block; margin-top: .5rem; }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Section header ---------- */
.sec-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: .8rem; }
.sec-head p { margin-top: 1rem; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid rgba(29,39,51,.09);
  border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(194,115,62,.4); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .card-ico {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--sand-100); color: var(--terracotta);
}
.card .card-ico svg { width: 25px; height: 25px; }
.card.on-navy { background: var(--navy-800); border-color: rgba(255,255,255,.09); box-shadow: none; }
.card.on-navy h3 { color: #fff; }
.card.on-navy p { color: var(--cloud-soft); }
.card.on-navy .card-ico { background: rgba(255,255,255,.07); color: var(--steel-light); }

.tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--sage-dark); background: rgba(111,139,130,.14);
  padding: .28rem .7rem; border-radius: 999px;
}

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split-media { position: relative; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

.figure-cap { font-size: .82rem; color: var(--muted); margin-top: .7rem; font-style: italic; }

/* checklist */
.checks { display: grid; gap: .85rem; margin-top: 1.5rem; }
.checks li { display: flex; gap: .8rem; align-items: flex-start; }
.checks li svg { flex: none; width: 22px; height: 22px; color: var(--sage); margin-top: 2px; }
.bg-navy .checks li svg { color: var(--steel-light); }

/* ---------- Pipeline table ---------- */
.pipeline { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.pipeline-row {
  display: grid; grid-template-columns: 1.4fr 1.6fr 2fr;
  gap: 1rem; padding: 1.25rem 1.4rem; align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
.pipeline-row:first-child { border-top: 0; background: rgba(255,255,255,.04); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cloud-soft); }
.pipeline-row:not(:first-child):nth-child(even){ background: rgba(255,255,255,.02); }
.pipeline .prog { height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.pipeline .prog i { display: block; height: 100%; background: linear-gradient(90deg, var(--sage), var(--terracotta)); border-radius: 999px; }
.pipeline .stage { font-size: .8rem; color: var(--cloud-soft); margin-top: .45rem; }
.pipeline b { color: #fff; font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.pipeline small { color: var(--steel-light); }
@media (max-width: 720px){
  .pipeline-row { grid-template-columns: 1fr; gap: .5rem; }
  .pipeline-row:first-child { display: none; }
}

/* ---------- Audience pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.pill {
  border: 1px solid rgba(29,39,51,.16); border-radius: 999px;
  padding: .5rem 1rem; font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  background: #fff;
}
.bg-navy .pill { border-color: rgba(255,255,255,.18); color: var(--cloud); background: rgba(255,255,255,.04); }

/* ---------- Book list ---------- */
.book { display: flex; gap: 1.1rem; }
.book-spine {
  flex: none; width: 64px; height: 92px; border-radius: 6px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  box-shadow: var(--shadow-soft); position: relative;
  display: grid; place-items: center; color: #fff;
}
.book-spine.t2 { background: linear-gradient(135deg, var(--terracotta), #9c5526); }
.book-spine.t3 { background: linear-gradient(135deg, var(--steel), #3d7388); }
.book-spine.t4 { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }
.book-spine svg { width: 26px; height: 26px; opacity: .85; }
.book h4 { font-family: var(--serif); font-size: 1.12rem; }
.book .author { font-size: .88rem; color: var(--terracotta); font-weight: 600; }
.book p { font-size: .92rem; color: var(--ink-soft); margin-top: .4rem; }

/* ---------- Resource / article rows ---------- */
.res-row {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid rgba(29,39,51,.09);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.res-row:hover { border-color: rgba(194,115,62,.45); transform: translateX(3px); }
.res-row .res-ico { flex: none; width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: var(--sand-100); color: var(--sage-dark); }
.res-row .res-ico svg { width: 22px; height: 22px; }
.res-row h4 { font-size: 1.05rem; }
.res-row .meta { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .25rem; }
.res-row p { font-size: .92rem; color: var(--ink-soft); margin-top: .3rem; }

/* ---------- Video cards ---------- */
.video {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid rgba(29,39,51,.09); box-shadow: var(--shadow-soft);
}
.video .thumb {
  aspect-ratio: 16/9; position: relative;
  background: linear-gradient(135deg, var(--navy-700), var(--navy));
  display: grid; place-items: center;
}
.video .thumb .play {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center;
  color: var(--terracotta);
}
.video .thumb .play svg { width: 24px; height: 24px; margin-left: 3px; }
.video .v-body { padding: 1.2rem 1.3rem 1.4rem; }
.video .v-body .tag { margin-bottom: .6rem; }
.video h4 { font-size: 1.08rem; }
.video p { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; }

/* ---------- Team ---------- */
.person { text-align: center; }
.person .avatar {
  width: 132px; height: 132px; border-radius: 50%; margin: 0 auto 1rem;
  object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-soft);
  background: var(--sand-100);
}
.person h4 { font-size: 1.15rem; }
.person .role { color: var(--terracotta); font-weight: 600; font-size: .88rem; margin: .2rem 0 .5rem; }
.person p { font-size: .88rem; color: var(--ink-soft); }
.person.dark h4 { color: #fff; }
.person.dark p { color: var(--cloud-soft); }

/* ---------- Callout / quote ---------- */
.quote { max-width: 60ch; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.28; font-weight: 500; }
.quote .by { margin-top: 1.3rem; font-size: .95rem; color: var(--terracotta); font-weight: 600; }
.bg-navy .quote blockquote { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: 26px; padding: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff; text-align: center;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band .bloom-mark { right: -60px; top: -40px; opacity: .1; }

/* ---------- Inquiry / form ---------- */
.form-card {
  background: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(29,39,51,.09); box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border-radius: 11px;
  border: 1px solid rgba(29,39,51,.18); background: var(--sand-50);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(194,115,62,.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }

/* ---------- Disclaimer / note ---------- */
.note {
  border-left: 3px solid var(--sage); background: rgba(111,139,130,.1);
  padding: 1.1rem 1.3rem; border-radius: 0 12px 12px 0; font-size: .9rem; color: var(--ink-soft);
}
.note.warn { border-color: var(--terracotta); background: rgba(194,115,62,.09); }
.bg-navy .note { background: rgba(255,255,255,.05); color: var(--cloud-soft); }

/* ---------- Steps / timeline ---------- */
.steps { display: grid; gap: 1.4rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step .num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem;
  background: var(--terracotta); color: #fff;
}
.step h4 { font-size: 1.1rem; margin-bottom: .25rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }
.bg-navy .step p { color: var(--cloud-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--cloud-soft); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 34ch; }
.site-footer h5 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1rem; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { font-size: .92rem; transition: color .2s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--muted);
}
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--navy); color: var(--cloud); padding: clamp(3.5rem,8vw,6rem) 0 clamp(3rem,6vw,4.5rem); }
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(80% 120% at 95% 0%, rgba(91,155,176,.2), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; max-width: 18ch; }
.page-hero p { color: var(--cloud-soft); max-width: 60ch; margin-top: 1.2rem; font-size: clamp(1.05rem,1.6vw,1.25rem); }
.breadcrumb { font-size: .82rem; color: var(--cloud-soft); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Misc utilities ---------- */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.gap-sm{gap:.6rem}
.flex { display:flex; } .flex-wrap{flex-wrap:wrap} .items-center{align-items:center}
.divider { height:1px; background: rgba(29,39,51,.1); margin: 2.5rem 0; }
.bg-navy .divider { background: rgba(255,255,255,.1); }
.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
