/* ==========================================================================
   MSP Growth OS — staging site styles
   Source of truth: Figma "Website-Design" (file 7SCdPU00LcXJvVkJXo3tKQ)
   ========================================================================== */

/* ---- Design tokens (from Figma) ---------------------------------------- */
:root {
  --navy: #1b425c;
  --navy-2: #24526e;
  --rust: #b45a3a;
  --rust-dark: #9a4529;
  --peach: #f09468;
  --green: #2e7d5b;

  --bg-gray: #e8eaed;
  --text: #465465;
  --muted: #5c6062;
  --muted-light: #aeb8c6;
  --footer-link: #b6c0cd;
  --copyright: #a3afbe;
  --placeholder: #9aa3ae;

  --border: #d5dae1;
  --border-dark: #c3cad4;
  --border-light: #e4e8ed;
  --border-form: #e2e6eb;
  --bar: #c8d2dc;

  --shadow-btn: 0 10px 24px rgba(7, 19, 33, 0.35);
  --shadow-card: 0 24px 60px rgba(7, 19, 33, 0.45);
  --shadow-form: 0 24px 60px rgba(7, 19, 33, 0.35);

  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1152px;   /* 1440 frame minus 144px each side */
  --gutter: 24px;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ---- Layout helpers ---------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (min-width: 1440px) {
  .wrap { max-width: calc(var(--wrap) + 2 * 144px); padding-left: 144px; padding-right: 144px; }
}

.bg-navy  { background: var(--navy); }
.bg-gray  { background: var(--bg-gray); }
.bg-white { background: #fff; }

.two-col {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.two-col > * { flex: 1 1 0; min-width: 0; }

/* ---- Typography -------------------------------------------------------- */
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
}
.eyebrow--peach { color: var(--peach); }
.eyebrow--muted { color: var(--muted); }

.h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.66px;
  color: var(--navy);
}
.h2--white { color: #fff; }

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
}
.lead--light { color: var(--muted-light); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.56px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--peach); outline-offset: 2px; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--rust); color: #fff; }
.btn--primary:hover { background: var(--rust-dark); }
.btn--shadow { box-shadow: var(--shadow-btn); }

.btn--ghost { border-color: rgba(255, 255, 255, 0.22); color: #fff; }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.5); }

.btn--outline-rust { border-color: var(--rust); color: var(--rust); }
.btn--outline-rust:hover { background: rgba(180, 90, 58, 0.08); }

.btn--outline-gray { border-color: var(--border-dark); color: var(--navy); }
.btn--outline-gray:hover { border-color: var(--navy); }

.btn--lg { height: 52px; padding: 0 30px; }
.btn--md { height: 48px; padding: 0 26px; }
.btn--sm { height: 46px; padding: 0 24px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Nav --------------------------------------------------------------- */
.nav { background: var(--navy); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo img { width: 153px; height: 30px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.78px;
  color: var(--muted-light);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; }
.nav__link--static { cursor: default; }
.nav__link--static:hover { color: var(--muted-light); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform 0.2s ease;
}
.nav__toggle span::before,
.nav__toggle span::after { content: ""; position: absolute; left: 0; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 88px;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px var(--gutter) 28px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav { position: relative; }
  .nav.is-open .nav__links { display: flex; }
  .nav.is-open .nav__toggle span { background: transparent; }
  .nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }
}

/* ---- Footer ------------------------------------------------------------ */
.footer { background: var(--navy); padding: 56px 0 48px; }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  color: var(--footer-link);
}
.footer__links a:hover, .footer__links a[aria-current="page"] { color: #fff; }
.footer__rule { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 40px 0 26px; }
.footer__copy { font-size: 13px; color: var(--copyright); }

/* ---- Shared section pieces -------------------------------------------- */
.section { padding: 96px 0; }

.card {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 24px;
}
.card__title { font-size: 19px; font-weight: 800; color: var(--navy); }
.card__body  { font-size: 16px; line-height: 1.5; color: var(--text); margin-top: 10px; }

/* ==========================================================================
   HOME
   ========================================================================== */

/* Hero */
.hero { background: var(--navy); padding: 104px 0 112px; }
.hero__inner { display: flex; gap: 80px; align-items: center; }
.hero__left { flex: 1 1 0; min-width: 0; }
.hero__title {
  margin-top: 24px;
  font-size: 74px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -1.85px;
  color: #fff;
}
.hero__lead {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted-light);
}
.hero__tag {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.hero__ctas { margin-top: 42px; }

/* Weekly scorecard card */
.scorecard {
  flex: 0 0 470px;
  width: 470px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.scorecard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--navy-2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.76px;
}
.scorecard__badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  letter-spacing: 0.88px;
}
.scorecard__body { padding: 24px; }
.scorecard__stats { display: flex; gap: 18px; }
.scorecard__stat { flex: 1 1 0; }
.scorecard__num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.64px;
  color: var(--navy);
}
.scorecard__label {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.1px;
  color: var(--muted);
}
.scorecard__rule { height: 1px; background: var(--border-light); }
.scorecard__rule--stats { margin: 22px 0; }
.scorecard__chart-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.54px;
  color: var(--muted);
}
.scorecard__chart-label .up { color: var(--rust-dark); letter-spacing: 0.88px; }
.scorecard__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 96px;
  margin-top: 12px;
}
.scorecard__bars span {
  flex: 1 1 0;
  background: var(--bar);
  border-radius: 2px 2px 0 0;
}
.scorecard__bars span.hot { background: var(--rust); }
.scorecard__table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.scorecard__table th {
  padding: 0 0 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--muted);
  text-align: right;
  border-bottom: 1px solid var(--border-light);
}
.scorecard__table th:first-child { text-align: left; }
.scorecard__table td {
  padding: 11px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  border-bottom: 1px solid var(--border-light);
}
.scorecard__table td:first-child { text-align: left; }
.scorecard__table td:last-child, .scorecard__table th:last-child { white-space: nowrap; }
.scorecard__table th + th, .scorecard__table td + td { padding-left: 10px; }
.status {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.72px;
}
.status img { width: 7px; height: 7px; }
.status--on { color: var(--green); }
.status--below { color: var(--rust-dark); }
.scorecard__rule--foot { margin: 20px 0 16px; }
.scorecard__note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.66px;
  color: var(--muted);
}

/* Who it's for */
.who__inner { display: flex; gap: 80px; align-items: flex-start; }
.who__left { flex: 0 0 510px; width: 510px; }
.who__left .h2 { margin-top: 18px; }
.who__left .lead { margin-top: 24px; }
.who__right { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.who__row { display: flex; gap: 20px; }
.who__row .card { flex: 1 1 0; min-width: 0; }

/* The Growth OS */
.os .h2 { margin-top: 18px; }
.os .lead { margin-top: 16px; max-width: 904px; }
.os__steps { display: flex; gap: 24px; margin-top: 48px; }
.step {
  flex: 1 1 0;
  min-width: 0;
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--border);
}
.step__num { font-size: 13px; font-weight: 800; letter-spacing: 1.04px; color: var(--rust); }
.step__title { margin-top: 16px; font-size: 26px; font-weight: 800; line-height: 1.15; color: var(--navy); }
.step__body  { margin-top: 12px; font-size: 17px; line-height: 1.55; color: var(--text); }
.step--dark { background: var(--navy); border-color: var(--navy); }
.step--dark .step__num { color: var(--peach); }
.step--dark .step__title { color: #fff; }
.step--dark .step__body { color: var(--muted-light); }
.ramp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  padding: 26px 30px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
}
.ramp p { flex: 1 1 0; font-size: 18px; font-weight: 600; line-height: 1.5; color: var(--navy); }

/* Proof */
.proof__eyebrow-row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.proof__eyebrow-row .eyebrow--muted { font-size: 11px; letter-spacing: 1.54px; }
.proof .h2 { margin-top: 18px; }
.proof__stats { display: flex; gap: 24px; margin-top: 48px; }
.stat-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 28px;
  border: 1px dashed var(--border-dark);
  border-radius: 5px;
}
.stat-card__num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.04px;
  color: var(--rust);
}
.stat-card__body { margin-top: 14px; font-size: 17px; line-height: 1.5; }
.quote {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 36px 40px;
  border-radius: 5px;
  background: var(--bg-gray);
}
.quote__photo {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #8e97a3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #2b3745;
}
.quote__text { font-size: 22px; font-weight: 600; line-height: 1.45; color: var(--navy); }
.quote__who  { margin-top: 16px; font-size: 13px; font-weight: 800; letter-spacing: 0.78px; color: var(--muted); }
.quote .btn  { margin-top: 24px; }

/* Straight talk */
.talk .h2 { margin-top: 20px; }
.talk .lead { margin-top: 24px; }
.talk .btn { margin-top: 30px; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  padding: 18px 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.checklist li:last-child { border-bottom: 0; }

/* Closing CTA */
.closing { background: var(--navy); padding-bottom: 100px; }
.closing__rule { height: 1px; background: rgba(255, 255, 255, 0.1); margin-bottom: 76px; }
.closing .h2 { margin-top: 20px; }
.closing__right p { font-size: 19px; line-height: 1.55; color: var(--muted-light); }
.closing .btn-row { margin-top: 34px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-hero { background: var(--navy); padding: 96px 0 100px; }
.about-hero__title {
  margin-top: 24px;
  max-width: 1000px;
  font-size: 66px;
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -1.65px;
  color: #fff;
}
.about-hero__lead {
  margin-top: 30px;
  max-width: 780px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--footer-link);
}

.people { padding: 96px 0 60px; }
.people__head { display: flex; align-items: center; gap: 80px; }
.people__head > div { flex: 1 1 0; min-width: 0; }
.people__head .lead { margin-top: 18px; }
.people__rule { height: 1px; background: var(--border); margin: 40px 0 26px; }
.people__stats { display: flex; gap: 64px; }
.people__stat { width: 100px; }
.people__stat b {
  display: block;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.88px;
  color: var(--navy);
}
.people__stat span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.78px;
  color: var(--muted);
  white-space: nowrap;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 52px;
  margin-top: 60px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 40px;
  left: 187px;          /* 150 date col + 37 = centre of the 76px dot column */
  width: 2px;
  background: #e2e6eb;
}
.entry { display: flex; align-items: flex-start; }
.entry__date {
  flex: 0 0 150px;
  padding: 26px 28px 0 0;
  text-align: right;
  white-space: nowrap;
}
.entry__date .eyebrow { font-size: 12px; letter-spacing: 1.68px; }
.entry__date span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.entry__date .eyebrow + span { margin-top: 6px; }
.entry__dot { flex: 0 0 76px; width: 76px; height: 46px; position: relative; }
.entry__dot img { width: 76px; height: 46px; }
.entry__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 26px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
}
.avatar {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.26px;
  color: var(--muted);
}
.entry__name { font-size: 24px; font-weight: 800; line-height: 1.2; color: var(--navy); }
.entry__role { margin-top: 6px; font-size: 14px; font-weight: 800; letter-spacing: 1.12px; color: var(--rust); text-transform: uppercase; }
.entry__bio  { margin-top: 14px; font-size: 16px; font-style: italic; line-height: 1.6; color: var(--muted); }

.about-cta { background: var(--navy); padding: 88px 0; }
.about-cta__inner { display: flex; gap: 80px; align-items: flex-start; }
.about-cta__inner > * { flex: 1 1 0; min-width: 0; }
.about-cta p { font-size: 19px; line-height: 1.55; color: var(--muted-light); }
.about-cta .btn-row { margin-top: 32px; }

/* ==========================================================================
   CORE VALUES
   ========================================================================== */
.values-cover { padding: 80px 0 56px; }
.values-cover__title {
  font-size: 104px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4.16px;
  color: var(--navy);
}
.values-cover__row { display: flex; gap: 80px; align-items: flex-start; margin-top: 44px; }
.values-cover__intro { flex: 1 1 0; min-width: 0; font-size: 26px; line-height: 1.45; color: var(--navy); }
.salte {
  flex: 0 0 420px;
  width: 420px;
  padding-left: 26px;
  border-left: 3px solid var(--rust);
}
.salte__word { margin-top: 14px; font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: 1.12px; color: var(--navy); }
.salte__note { margin-top: 16px; font-size: 16px; line-height: 1.6; color: var(--muted); }

.value { padding: 76px 0; border-top: 1px solid var(--border-dark); }
.value--no-rule { border-top: 0; }
.value__inner { display: flex; gap: 72px; align-items: flex-start; }
.value__letter {
  flex: 0 0 200px;
  width: 200px;
  font-size: 130px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -3.9px;
  text-align: right;
  color: var(--rust);
}
.value__content { flex: 1 1 0; min-width: 0; }
.value__title { font-size: 46px; font-weight: 800; line-height: 1.08; letter-spacing: -0.92px; color: var(--navy); }
.value__sub { margin-top: 22px; max-width: 820px; font-size: 22px; font-weight: 600; line-height: 1.5; color: var(--navy); }
.value__cols { display: flex; gap: 44px; margin-top: 26px; max-width: 880px; }
.value__cols p { flex: 1 1 0; min-width: 0; font-size: 17px; line-height: 1.65; color: var(--text); }

.colophon { padding: 72px 0 88px; }
.colophon__rule { height: 3px; background: var(--navy); margin-bottom: 36px; }
.colophon__title { margin-top: 14px; font-size: 38px; font-weight: 800; line-height: 1.12; letter-spacing: -0.76px; color: var(--navy); }
.colophon__body { font-size: 18px; line-height: 1.6; color: var(--text); }
.colophon .btn-row { margin-top: 30px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-hero { background: var(--navy); padding: 88px 0 96px; }
.contact-hero__inner { display: flex; gap: 72px; align-items: flex-start; }
.contact-hero__left { flex: 1 1 0; min-width: 0; }
.contact-hero__title {
  margin-top: 22px;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.55px;
  color: #fff;
}
.contact-hero__lead { margin-top: 26px; font-size: 19px; line-height: 1.55; color: var(--muted-light); }
.contact-hero__rule { height: 1px; background: rgba(255, 255, 255, 0.12); margin: 44px 0 34px; }
.contact-hero .eyebrow--steps { letter-spacing: 1.92px; }
.steps { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.steps__item { display: flex; gap: 18px; }
.steps__num { flex: 0 0 30px; font-size: 15px; font-weight: 800; color: var(--peach); }
.steps__title { font-size: 19px; font-weight: 800; color: #fff; }
.steps__body { margin-top: 5px; font-size: 16px; line-height: 1.6; color: var(--muted-light); }
.callout {
  margin-top: 30px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--rust);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

.form-card {
  flex: 0 0 560px;
  width: 560px;
  padding: 36px;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-form);
}
.form-card__title { font-size: 24px; font-weight: 800; letter-spacing: -0.24px; color: var(--navy); }
.form-card__sub { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.form-row { display: flex; gap: 16px; margin-top: 16px; }
.form-row:first-of-type { margin-top: 26px; }
.field { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.field label, .field-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--text);
  text-transform: uppercase;
}
.input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}
.input::placeholder { color: var(--placeholder); }
.input:focus { outline: 2px solid var(--rust); outline-offset: -1px; border-color: var(--rust); }
select.input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%235c6062' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
textarea.input { height: 88px; padding: 12px 14px; resize: vertical; }
.form-rule { height: 1px; background: var(--border-form); margin: 26px 0; }
.form-rule + .form-row { margin-top: 0; }
.field-label--chips { display: block; margin-top: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--border-dark);
  border-radius: 19px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.chip input:checked + span { background: #fbf6f3; border-color: var(--rust); color: var(--rust-dark); font-weight: 700; }
.chip input:focus-visible + span { outline: 2px solid var(--rust); outline-offset: 2px; }
.field-label--textarea { display: block; margin-top: 22px; margin-bottom: 7px; }
.field--single { margin-top: 20px; }
.form-submit { width: 100%; height: 54px; margin-top: 26px; font-size: 15px; letter-spacing: 0.6px; border: 0; }
.form-note { margin-top: 14px; font-size: 13px; line-height: 1.5; text-align: center; color: var(--muted); }

.not-ready { padding: 80px 0; }
.not-ready__inner { display: flex; gap: 72px; align-items: flex-start; }
.not-ready__title {
  flex: 0 0 300px;
  width: 300px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.45px;
  color: var(--navy);
}
.not-ready__cards { flex: 1 1 0; min-width: 0; display: flex; gap: 24px; }
.not-ready__cards .card { flex: 1 1 0; min-width: 0; padding: 26px; }
.not-ready__cards .card__body { line-height: 1.6; }
.card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.56px;
  color: var(--rust);
}
.card__link:hover { color: var(--rust-dark); }

/* ==========================================================================
   TERMS
   ========================================================================== */
.masthead { padding: 64px 0 48px; border-bottom: 1px solid var(--border); }
.masthead__title { font-size: 56px; font-weight: 800; line-height: 1.02; letter-spacing: -1.4px; color: var(--navy); }
.masthead__rule { height: 1px; background: var(--border); margin: 28px 0 22px; }
.meta { display: flex; flex-wrap: wrap; gap: 52px; }
.meta__label { font-size: 11px; font-weight: 800; letter-spacing: 1.76px; color: var(--muted); text-transform: uppercase; }
.meta__value { margin-top: 6px; font-size: 15px; font-weight: 700; color: var(--navy); }

.agreement { padding: 56px 0; background: var(--bg-gray); border-bottom: 1px solid var(--border); }
.agreement__title { font-size: 26px; font-weight: 800; line-height: 1.2; letter-spacing: -0.26px; color: var(--navy); }
.agreement p { max-width: 900px; margin-top: 18px; font-size: 17px; line-height: 1.7; }
.agreement .agreement__title + p { margin-top: 24px; }

.terms-body { padding: 64px 0 88px; }
.terms-body__inner { display: flex; gap: 72px; align-items: flex-start; }
.toc {
  flex: 0 0 300px;
  width: 300px;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.toc__title { font-size: 12px; font-weight: 800; letter-spacing: 1.92px; color: var(--rust); }
.toc ol { list-style: none; margin: 12px 0 0; padding: 0; border-top: 1px solid var(--border); }
.toc li { border-bottom: 1px solid var(--border); }
.toc a {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
.toc a:hover { color: var(--rust); }
.toc a b { flex: 0 0 26px; font-size: 12px; font-weight: 800; color: var(--rust); }
.sections { flex: 1 1 0; min-width: 0; max-width: 780px; }
.tsection { margin-bottom: 40px; scroll-margin-top: 24px; }
.tsection__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.tsection__num { font-size: 15px; font-weight: 800; color: var(--rust); }
.tsection__title { font-size: 26px; font-weight: 800; line-height: 1.2; letter-spacing: -0.26px; color: var(--navy); }
.tsection p { font-size: 17px; line-height: 1.7; color: var(--text); }
.tsection p + p { margin-top: 18px; }

/* ==========================================================================
   RESPONSIVE
   Figma only specifies desktop; these breakpoints are ours.
   ========================================================================== */
@media (max-width: 1100px) {
  .hero__title { font-size: 60px; }
  .hero__inner { flex-direction: column; align-items: stretch; }
  .scorecard { width: 100%; flex-basis: auto; max-width: 560px; }
  .who__inner { flex-direction: column; }
  .who__left { width: 100%; flex-basis: auto; }
  .os__steps { flex-direction: column; }
  .proof__stats { flex-wrap: wrap; }
  .stat-card { flex-basis: calc(50% - 12px); }
  .contact-hero__inner { flex-direction: column; }
  .form-card { width: 100%; flex-basis: auto; }
  .not-ready__inner { flex-direction: column; gap: 32px; }
  .not-ready__title { width: auto; flex-basis: auto; }
  .values-cover__title { font-size: 80px; letter-spacing: -3px; }
  .values-cover__row { flex-direction: column; gap: 40px; }
  .salte { width: 100%; flex-basis: auto; }
  .about-hero__title { font-size: 54px; }
}

@media (max-width: 860px) {
  .eyebrow, .entry__date, .people__stat span { white-space: normal; }
  .section { padding: 72px 0; }
  .hero { padding: 72px 0 80px; }
  .hero__title { font-size: 46px; letter-spacing: -1px; }
  .h2 { font-size: 34px; }
  .two-col, .about-cta__inner, .people__head, .terms-body__inner { flex-direction: column; gap: 40px; }
  .who__row { flex-direction: column; }
  .who__row .card { height: auto; }
  .ramp { flex-direction: column; align-items: flex-start; }
  .quote { flex-direction: column; align-items: flex-start; }
  .stat-card { flex-basis: 100%; }
  .closing__rule { margin-bottom: 56px; }
  .footer__top { flex-direction: column; }
  .footer__links { justify-content: flex-start; }

  .about-hero { padding: 72px 0; }
  .about-hero__title { font-size: 42px; letter-spacing: -1px; }
  .people { padding: 72px 0 48px; }
  .timeline::before { left: 14px; }
  .entry { flex-wrap: wrap; }
  .entry__date { flex: 1 1 auto; order: 2; padding: 14px 0 0 44px; text-align: left; }
  .entry__dot { flex: 0 0 30px; width: 30px; height: 30px; order: 1; }
  .entry__dot img { width: 30px; height: 30px; object-fit: none; object-position: center; }
  .entry__card { flex: 1 1 100%; order: 3; margin-left: 44px; margin-top: 8px; flex-direction: column; }

  .values-cover__title { font-size: 56px; letter-spacing: -2px; }
  .values-cover__intro { font-size: 21px; }
  .value { padding: 56px 0; }
  .value__inner { flex-direction: column; gap: 24px; }
  .value__letter { width: auto; flex-basis: auto; text-align: left; font-size: 96px; }
  .value__title { font-size: 34px; }
  .value__cols { flex-direction: column; gap: 18px; }
  .colophon__title { font-size: 30px; }

  .contact-hero { padding: 64px 0 72px; }
  .contact-hero__title { font-size: 42px; letter-spacing: -1px; }
  .form-card { padding: 24px; }
  .form-row { flex-direction: column; }
  .not-ready__cards { flex-direction: column; }

  .masthead__title { font-size: 40px; }
  .meta { gap: 28px; }
  .toc { position: static; width: 100%; flex-basis: auto; max-height: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .h2 { font-size: 30px; }
  .btn-row .btn { width: 100%; }
  .scorecard__num { font-size: 26px; }
  .stat-card__num { font-size: 44px; }
  .values-cover__title { font-size: 44px; }
}
