/* ============================================================
   Kumuao AI — brand stylesheet
   Warm earth tones, generous type, calm rhythm.
   ============================================================ */

:root {
  /* Earth-tone palette (per brand brief: warm, not cold-tech blue) */
  --cream:        #FDF8F0;
  --cream-2:      #F6EFE2;
  --cream-3:      #EFE5D2;
  --ink:          #2D1B0E;     /* warm dark brown */
  --ink-2:        #4A3422;
  --ink-3:        #7A6651;
  --terracotta:   #C25E3C;
  --terracotta-d: #A04A2D;
  --ochre:        #D4A574;
  --gold:         #E8A951;
  --leaf:         #7A9E5C;     /* "safe" positive */
  --leaf-d:       #5C7E45;
  --rose:         #D97757;
  --border:       rgba(45, 27, 14, 0.12);
  --border-2:     rgba(45, 27, 14, 0.20);
  --shadow:       0 1px 2px rgba(45,27,14,.04), 0 8px 24px rgba(45,27,14,.06);
  --shadow-lg:    0 2px 4px rgba(45,27,14,.06), 0 24px 60px rgba(45,27,14,.12);
  --radius:       14px;
  --radius-lg:    22px;
  --maxw:         1180px;
}

/* ----------------------- base ----------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--terracotta-d); text-decoration: none; }
a:hover { color: var(--terracotta); }
em { font-style: italic; color: var(--terracotta-d); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----------------------- typography ----------------------- */
h1, h2, h3, h4, h5 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-2); }
h5 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
p  { color: var(--ink-2); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ----------------------- buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 14px 24px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(194,94,60,.28);
}
.btn--primary:hover { background: var(--terracotta-d); color: #fff; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink-2);
}
.btn--ghost:hover { color: var(--ink); }

/* ----------------------- nav ----------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 240, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.brand__name { font-family: "Fraunces", serif; font-size: 1.25rem; letter-spacing: -.01em; }
.brand__dot { color: var(--terracotta); }
.nav__links {
  display: flex;
  gap: 26px;
}
.nav__links a {
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 500;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: 10px; }

/* hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .15s ease;
}
.nav__hamburger:hover { background: rgba(45,27,14,.06); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 240, 0.97);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 28px 20px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(45,27,14,.08);
    z-index: 49;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta .btn--ghost { display: none; }
}

/* ----------------------- hero ----------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.orb--1 { width: 520px; height: 520px; left: -160px; top: -120px; background: radial-gradient(circle, #E8A951 0%, transparent 65%); }
.orb--2 { width: 460px; height: 460px; right: -120px; top: 40px; background: radial-gradient(circle, #C25E3C 0%, transparent 65%); opacity: .35; }
.orb--3 { width: 380px; height: 380px; left: 35%; bottom: -180px; background: radial-gradient(circle, #7A9E5C 0%, transparent 65%); opacity: .25; }

.hero__inner { position: relative; z-index: 1; max-width: 980px; }
.hero__title { margin: 8px 0 18px; }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 760px;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin: 0;
}
.hero__stats div { margin: 0; }
.hero__stats dt {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}
.hero__stats dd { margin: 6px 0 0; color: var(--ink-3); font-size: .92rem; }
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------- trust strip ----------------------- */
.trust { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--cream-2); }
.trust__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__label { color: var(--ink-3); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.trust__logos {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__logos li {
  font-family: "Fraunces", serif;
  color: var(--ink-2);
  font-size: 1.05rem;
  letter-spacing: .01em;
}

/* ----------------------- sections ----------------------- */
.section { padding: 96px 0; }
.section--bench { background: var(--ink); color: #f3e9d8; }
.section--bench h2, .section--bench h3, .section--bench .eyebrow { color: #fff; }
.section--bench .eyebrow { color: var(--ochre); }
.section--bench .lede { color: #d8c7ad; }
.section--pricing { background: var(--cream); }

.section__head { max-width: 820px; margin: 0 0 48px; }
.section__head h2 { margin-bottom: 16px; }
.lede { font-size: 1.1rem; color: var(--ink-2); }

/* ----------------------- grids ----------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--products { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid--3, .grid--products { grid-template-columns: 1fr; } }

/* ----------------------- problem cards ----------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: 10px; }
.card--problem h3::before {
  content: "—";
  color: var(--terracotta);
  margin-right: 10px;
}

/* ----------------------- product cards ----------------------- */
.prod {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.prod--accent {
  background: linear-gradient(180deg, #fff 0%, #FBF1E0 100%);
  border-color: rgba(212, 165, 116, 0.5);
}
.prod__tag {
  align-self: flex-start;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-d);
  background: rgba(194, 94, 60, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
}
.prod h3 { margin: 0; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.prod__tier {
  font-family: "Inter", sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.prod__sub { color: var(--ink-2); margin: 0; }
.prod__link {
  margin-top: auto;
  font-weight: 600;
  font-size: .92rem;
}
.codeline {
  background: var(--ink);
  color: var(--ochre);
  padding: 10px 12px;
  border-radius: 8px;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: .8rem;
  margin-top: auto;
  overflow-x: auto;
}

/* checklists */
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checks li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: .94rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  background: var(--leaf);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: .85;
}

/* ----------------------- benchmark ----------------------- */
.bench__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: #d8c7ad;
  font-size: .85rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s ease;
}
.tab:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.tab.is-active {
  background: var(--ochre);
  color: var(--ink);
  border-color: var(--ochre);
}

.bench__table {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bench__row {
  display: grid;
  grid-template-columns: 40px 1.6fr .9fr .9fr .8fr .8fr .8fr .6fr;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .92rem;
}
.bench__row:last-child { border-bottom: none; }
.bench__row--head {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8a280;
  background: rgba(0,0,0,.18);
}
.bench__row .num { text-align: right; font-variant-numeric: tabular-nums; }

.model-name { display: flex; flex-direction: column; gap: 2px; }
.model-name strong { color: #fff; font-weight: 600; }
.model-name span { color: #a89177; font-size: .78rem; }

.model-tag {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 7px;
  font-family: "Inter", sans-serif;
  position: relative;
  top: -1px;
}
.model-tag--upcoming {
  background: rgba(232, 169, 81, .18);
  color: var(--ochre);
  border: 1px solid rgba(232, 169, 81, .40);
}
.bench__row--upcoming { opacity: .88; }

.score-bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  margin-top: 5px;
  overflow: hidden;
}
.score-bar > i {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf) 0%, var(--ochre) 100%);
}
.score { display: flex; flex-direction: column; gap: 2px; align-items: flex-end; }
.score b { font-weight: 600; color: #fff; }

.grade {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1rem;
}
.grade.A { background: var(--leaf); color: #fff; }
.grade.B { background: var(--ochre); color: var(--ink); }
.grade.C { background: var(--rose); color: #fff; }
.grade.D { background: #B23E2A; color: #fff; }
.grade.F { background: #6e2418; color: #fff; }

.bench__note { color: #a89177; font-size: .85rem; margin-top: 14px; }
.bench__oss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 28px;
  border: 1px solid rgba(200,180,143,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.bench__oss-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bench__oss-icon { flex-shrink: 0; color: #c8b48f; opacity: .8; }
.bench__oss-text strong { display: block; color: #f3e9d8; font-size: 1.05rem; margin-bottom: 5px; font-weight: 600; }
.bench__oss-text span { font-size: .9rem; color: #a89177; line-height: 1.5; }
.bench__oss-btn {
  flex-shrink: 0;
  padding: 11px 22px;
  border: 1.5px solid rgba(200,180,143,.45);
  border-radius: 8px;
  color: #f3e9d8;
  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.bench__oss-btn:hover { background: rgba(200,180,143,.12); border-color: rgba(200,180,143,.75); color: #fff; }
@media (max-width: 640px) {
  .bench__oss { flex-direction: column; align-items: flex-start; }
  .bench__oss-btn { width: 100%; text-align: center; }
}

@media (max-width: 900px) {
  .bench__row { grid-template-columns: 28px 1.4fr .8fr .6fr; }
  .bench__row > :nth-child(5),
  .bench__row > :nth-child(6),
  .bench__row > :nth-child(7) { display: none; }
}

/* dimensions grid */
.dims { margin-top: 56px; }
.dims__title { color: #fff; margin-bottom: 18px; }
.dims__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dims__grid li {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dims__num {
  font-family: "Fraunces", serif;
  color: var(--ochre);
  font-size: 1.1rem;
}
.dims__grid strong { color: #fff; font-weight: 600; font-size: .98rem; }
.dims__grid span { color: #b9a684; font-size: .85rem; }
@media (max-width: 980px) { .dims__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dims__grid { grid-template-columns: 1fr; } }


/* ----------------------- pricing ----------------------- */
.pricing { align-items: stretch; }
.price {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: var(--shadow);
}
.price--featured {
  background: linear-gradient(180deg, #2D1B0E 0%, #4A3422 100%);
  color: #f3e9d8;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price--featured .price__name,
.price--featured .price__amt { color: #fff; }
.price--featured .price__rate { color: var(--ochre); }
.price--featured .checks li { color: #d8c7ad; }
.price--featured .checks li::before { background: var(--ochre); }
.price__badge {
  position: absolute;
  top: -12px; left: 26px;
  background: var(--ochre);
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.price__name {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.price__amt {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}
.price__amt span { font-size: .9rem; font-family: "Inter", sans-serif; color: var(--ink-3); font-weight: 400; margin-left: 6px; }
.price__rate {
  font-family: "JetBrains Mono", monospace;
  font-size: .82rem;
  color: var(--ink-3);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.pricing__notes {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.pricing__notes h4 { margin-bottom: 6px; color: var(--terracotta-d); }
.pricing__notes p { font-size: .92rem; margin: 0; }
@media (max-width: 860px) { .pricing__notes { grid-template-columns: 1fr; } }


/* ----------------------- cta ----------------------- */
.cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at top, #F6EFE2 0%, var(--cream) 70%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 { margin-bottom: 16px; }
.cta p { font-size: 1.1rem; margin-bottom: 32px; }
.cta__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.cta__form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
}
.cta__form input:focus { border-color: var(--terracotta); }
.cta__fine { margin-top: 22px; font-size: .85rem; color: var(--ink-3); }
@media (max-width: 560px) {
  .cta__form { flex-direction: column; }
  .cta__form input, .cta__form .btn { width: 100%; }
}

/* ----------------------- footer ----------------------- */
.footer { background: var(--ink); color: #c8b48f; padding-top: 72px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .brand { color: #fff; }
.footer .brand__name { color: #fff; }
.footer__tagline { color: #a89177; font-size: .92rem; margin-top: 14px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols h5 { color: #fff; margin-bottom: 16px; }
.footer__cols a {
  display: block;
  color: #c8b48f;
  font-size: .92rem;
  padding: 4px 0;
  transition: color .15s ease;
}
.footer__cols a:hover { color: #fff; }
.footer__legal {
  padding: 22px 0;
  font-size: .82rem;
  color: #8a7355;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   v1-only additions: ribbon, Family section, how-it-works
   ============================================================ */

/* ----------------------- roadmap ribbon ----------------------- */
.ribbon {
  position: sticky;
  top: 0;
  z-index: 55;          /* above nav (z-index: 50) */
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--ochre) 100%);
  color: #fff;
  font-size: .88rem;
}

/* When the ribbon is present, push the nav's sticky point down by the ribbon height
   so they stack rather than overlap. 40px ≈ ribbon's rendered height. */
.ribbon + .nav {
  top: 40px;
}
.ribbon__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.ribbon__inner strong { font-weight: 600; }
.ribbon__back {
  color: #fff;
  font-weight: 600;
  background: rgba(0,0,0,.18);
  padding: 5px 12px;
  border-radius: 999px;
  transition: background .15s ease;
}
.ribbon__back:hover { background: rgba(0,0,0,.32); color: #fff; }

/* ----------------------- Kumuao Family section ----------------------- */
.section--family {
  background: var(--cream-2);
  background-image:
    radial-gradient(circle at 10% 0%, rgba(232,169,81,.10), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(122,158,92,.08), transparent 40%);
}

.family { display: flex; flex-direction: column; gap: 80px; }

.family__row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.family__row--reverse .family__copy { order: 2; }
.family__row--reverse .family__visual { order: 1; }
@media (max-width: 860px) {
  .family__row, .family__row--reverse { grid-template-columns: 1fr; gap: 28px; }
  .family__row--reverse .family__copy { order: unset; }
  .family__row--reverse .family__visual { order: unset; }
}

.family__copy h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.family__copy p { margin-bottom: 18px; font-size: 1.02rem; }
.family__num {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: .9rem;
  color: var(--terracotta-d);
  background: rgba(194,94,60,.10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.family__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------------------- phone mock ----------------------- */
.phone {
  width: 280px;
  background: #fff;
  border-radius: 36px;
  padding: 14px 12px 22px;
  box-shadow:
    0 1px 2px rgba(45,27,14,.06),
    0 30px 60px rgba(45,27,14,.18),
    inset 0 0 0 2px rgba(45,27,14,.06);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 1;
}
.phone__top {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 6px 16px 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink);
}
.phone__screen {
  background: var(--cream);
  border-radius: 24px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
}
.phone__hd small { color: var(--ink-3); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.phone__hd h4 { font-family: "Fraunces", serif; font-size: 1.2rem; text-transform: none; letter-spacing: 0; color: var(--ink); margin: 4px 0 0; }
.phone__input {
  margin-top: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .8rem;
  color: var(--ink-3);
}

/* topic cards inside phone */
.topic {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--border);
}
.topic strong { display: block; font-size: .88rem; color: var(--ink); font-weight: 600; }
.topic span { display: block; font-size: .72rem; color: var(--ink-3); margin-top: 2px; }
.topic__dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.topic--ok    .topic__dot { background: var(--leaf); }
.topic--note  .topic__dot { background: var(--ochre); }
.topic--watch .topic__dot { background: var(--rose); }

/* chat bubbles */
.bubble {
  border-radius: 16px;
  padding: 10px 14px;
  font-size: .85rem;
  line-height: 1.45;
  max-width: 92%;
}
.bubble--user {
  background: var(--ink);
  color: #f3e9d8;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble--kumuao {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble--kumuao strong { display: block; color: var(--terracotta-d); margin-bottom: 6px; font-weight: 600; }
.bubble--kumuao ul { padding-left: 18px; margin: 8px 0; }
.bubble--kumuao li { font-size: .8rem; color: var(--ink-2); }
.bubble--small { font-size: .82rem; }

.phone--chat .phone__screen { gap: 8px; }

/* profile chips for family-assistant mock */
.profiles { display: flex; flex-direction: column; gap: 6px; }
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: .82rem;
  opacity: .7;
}
.profile.is-active { opacity: 1; border-color: var(--ochre); box-shadow: 0 0 0 2px rgba(232,169,81,.25); }
.profile strong { display: block; font-weight: 600; color: var(--ink); font-size: .88rem; }
.profile small { color: var(--ink-3); font-size: .72rem; }
.profile__av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: .9rem;
}

/* monthly report card */
.report {
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(45,27,14,.14);
  padding: 22px;
}
.report__head { margin-bottom: 16px; }
.report__head small { color: var(--ink-3); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.report__head h4 { font-family: "Fraunces", serif; font-size: 1.3rem; text-transform: none; letter-spacing: 0; color: var(--ink); margin: 4px 0 0; }
.report__stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: .85rem;
}
.report__stat span { color: var(--ink-3); }
.report__stat b { font-weight: 600; color: var(--ink); font-family: "Fraunces", serif; font-size: 1.05rem; }
.report__sugg {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}
.report__sugg strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta-d); margin-bottom: 6px; }
.report__sugg p { font-size: .85rem; margin: 0; color: var(--ink-2); }

/* ----------------------- how-it-works ----------------------- */
.section--how { background: var(--cream); }
.how {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: how;
}
.how li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.how__num {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ochre);
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.how h3 { font-size: 1.15rem; margin-bottom: 8px; }
.how p { font-size: .92rem; margin: 0; }
@media (max-width: 900px) { .how { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how { grid-template-columns: 1fr; } }

/* pricing note (single) for v1 page */
.pricing__note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-3);
  font-size: .9rem;
}

/* ----------------------- bridge CTA (problem → benchmark) ----------------------- */
.bridge {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bridge__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.bridge__inner p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 640px) {
  .bridge__inner { flex-direction: column; align-items: flex-start; }
}

/* ----------------------- family__num color variants ----------------------- */
.family__num--kids {
  color: var(--leaf-d);
  background: rgba(122, 158, 92, .13);
}
.family__num--monthly {
  color: #7a5200;
  background: rgba(232, 169, 81, .18);
}

/* ============================================================
   Roadmap page
   ============================================================ */

/* ----------------------- status dots ----------------------- */
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}
.dot--shipped { background: var(--leaf); }
.dot--build   { background: var(--ochre); box-shadow: 0 0 0 4px rgba(232,169,81,.18); }
.dot--planned { background: var(--terracotta); }
.dot--vision  { background: transparent; border: 2px dashed var(--terracotta); }

/* ----------------------- roadmap hero ----------------------- */
.rm-hero {
  position: relative;
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,169,81,.18), transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(194,94,60,.10), transparent 55%),
    var(--cream);
  border-bottom: 1px solid var(--border);
}
.rm-hero__title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin: 8px 0 18px;
  max-width: 940px;
}
.rm-hero__sub {
  font-size: 1.1rem;
  max-width: 760px;
  color: var(--ink-2);
  margin-bottom: 28px;
}

.rm-hero__caveat {
  font-size: .95rem;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--ochre);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 28px;
  max-width: 820px;
}
.rm-hero__caveat strong { color: var(--ink); }
.rm-hero__caveat em { color: var(--terracotta-d); font-style: normal; font-weight: 600; }

/* ----------------------- roadmap product glossary ----------------------- */
.rm-glossary {
  margin-bottom: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.rm-glossary__title {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
}
.rm-glossary__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin: 0;
}
.rm-glossary__grid > div {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.rm-glossary__grid > div:nth-child(1),
.rm-glossary__grid > div:nth-child(2) { border-top: none; }
.rm-glossary__grid dt {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 4px;
}
.rm-glossary__grid dd {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .rm-glossary__grid { grid-template-columns: 1fr; }
  .rm-glossary__grid > div:nth-child(2) { border-top: 1px solid var(--border); }
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.legend__item {
  display: inline-flex;
  align-items: center;
  font-size: .9rem;
  color: var(--ink-2);
  font-weight: 500;
}

.rm-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  margin: 0;
}
.rm-hero__stats div { margin: 0; }
.rm-hero__stats dt {
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rm-hero__stats dd {
  margin: 6px 0 0;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 720px) {
  .rm-hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------- phase strip ----------------------- */
.section--phases { background: var(--cream); padding: 80px 0; }
.phases {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
}
.phases::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-2) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.phase {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--terracotta);
  z-index: 2;
}
.phase--now::before    { border-color: var(--ochre); background: var(--ochre); box-shadow: 0 0 0 5px rgba(232,169,81,.25); }
.phase--next::before   { border-color: var(--terracotta); background: var(--terracotta); }
.phase--planned::before { border-color: var(--terracotta); background: var(--cream); }
.phase--vision::before { border-color: var(--ink-3); border-style: dashed; background: var(--cream); }

.phase--now {
  background: linear-gradient(180deg, #FBF1E0 0%, #fff 100%);
  border-color: rgba(232,169,81,.55);
  box-shadow: 0 6px 20px rgba(232,169,81,.18);
}
.phase__when {
  display: block;
  margin-top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-weight: 600;
}
.phase--vision .phase__when { color: var(--ink-3); }
.phase h3 {
  font-size: 1.1rem;
  margin: 4px 0 6px;
}
.phase p { font-size: .9rem; margin: 0 0 10px; color: var(--ink-2); }
.phase__gate {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--ink-2);
  font-weight: 500;
}
.phase__gate::before { content: "✓ "; color: var(--leaf-d); font-weight: 700; }

@media (max-width: 1080px) {
  .phases { grid-template-columns: repeat(3, 1fr); }
  .phases::before { display: none; }
}
@media (max-width: 640px) {
  .phases { grid-template-columns: 1fr; }
}

/* ----------------------- swimlane chart ----------------------- */
.section--swim { background: var(--ink); color: #f3e9d8; padding: 96px 0; }
.section--swim h2, .section--swim .eyebrow { color: #fff; }
.section--swim .eyebrow { color: var(--ochre); }
.section--swim .lede { color: #d8c7ad; }
.section--swim em { color: var(--ochre); font-style: normal; font-weight: 600; }

.swim {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow-x: auto;
}

.swim__head, .swim__row {
  display: grid;
  grid-template-columns: 200px repeat(6, 1fr);
  align-items: stretch;
  min-width: 980px;
}
.swim__head {
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 12px 4px;
}
.swim__corner { /* spacer */ }
.swim__col {
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b8a280;
  padding: 0 10px;
  border-left: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.swim__col em {
  display: block;
  font-style: normal;
  color: var(--ochre);
  font-size: .65rem;
  margin-top: 2px;
  font-weight: 600;
}

.swim__row {
  padding: 14px 4px;
  border-top: 1px solid rgba(255,255,255,.05);
  min-height: 64px;
}
.swim__row:first-of-type { border-top: none; }

.swim__label {
  padding: 4px 16px 4px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.10);
}
.swim__label strong {
  display: block;
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1rem;
}
.swim__label span {
  color: #a89177;
  font-size: .78rem;
  margin-top: 2px;
}

.swim__cells {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}
.bar {
  grid-column: calc(var(--start)) / span var(--span);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease;
  cursor: default;
}
.bar:hover { transform: translateY(-1px); filter: brightness(1.1); }
.bar--shipped { background: var(--leaf); color: #fff; border-color: var(--leaf-d); }
.bar--build   { background: var(--ochre); color: var(--ink); border-color: #BC8F49; box-shadow: 0 0 0 1px rgba(232,169,81,.4), 0 0 18px rgba(232,169,81,.25); }
.bar--planned { background: rgba(194,94,60,.18); color: #F7C7B4; border-color: rgba(194,94,60,.45); }
.bar--vision  { background: transparent; color: #c8b48f; border: 1px dashed rgba(200,180,143,.50); }

.swim__today {
  position: absolute;
  top: 56px;
  bottom: 18px;
  /* 200px label column, then column 1 of 6 — today sits inside Q2 '26 column.
     We approximate: label width 200px + ~(col_width / 2). */
  left: calc(200px + (100% - 216px) / 12);
  width: 2px;
  background: linear-gradient(180deg, var(--ochre) 0%, transparent 100%);
  pointer-events: none;
}
.swim__today span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ochre);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.swim__note {
  color: #a89177;
  font-size: .9rem;
  margin-top: 18px;
  max-width: 760px;
}
.swim__note em { color: var(--ochre); font-style: normal; font-weight: 600; }

@media (max-width: 980px) {
  .swim__today { display: none; }
  .swim {
    -webkit-overflow-scrolling: touch;
  }
  .swim::after {
    content: "← scroll to see full timeline →";
    display: block;
    text-align: center;
    color: #a89177;
    font-size: .75rem;
    letter-spacing: .08em;
    padding: 10px 8px 4px;
    text-transform: uppercase;
  }
}

/* ----------------------- phase detail (milestone cards) ----------------------- */
.section--detail {
  background: var(--cream-2);
  padding: 64px 0;
}
.section--detail .section__head { margin-bottom: 28px; }

/* Card: full-width stack — header banner on top, milestones below */
.ph {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Header banner: chip + title on one line, goal as subtitle */
.ph__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--cream-2);
}
.ph__chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.ph__head h3 {
  font-size: 1.2rem;
  margin: 0;
  flex: 1;
  min-width: 140px;
}
.ph__goal {
  flex-basis: 100%;
  color: var(--ink-3);
  font-size: .88rem;
  margin: 0;
}

/* Milestone list: full card width */
.ph__list {
  list-style: none;
  padding: 0 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.m {
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 3px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.m:first-child { border-top: none; }
/* badge spans both rows so it stays vertically pinned to the top-left */
.m__badge {
  grid-column: 1;
  grid-row: 1 / 3;
}
.m strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
/* description now lives in col 2 row 2 — full 1fr width */
.m > span:last-child {
  grid-column: 2;
  grid-row: 2;
  color: var(--ink-2);
  font-size: .9rem;
}

.m__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  align-self: start;
  margin-top: 2px;
}
.m--shipped .m__badge { background: var(--leaf); color: #fff; }
.m--build   .m__badge { background: var(--ochre); color: var(--ink); box-shadow: 0 0 0 3px rgba(232,169,81,.20); }
.m--planned .m__badge { background: rgba(194,94,60,.15); color: var(--terracotta-d); }
.m--vision  .m__badge { background: transparent; color: var(--ink-3); border: 1px dashed var(--border-2); }

@media (max-width: 640px) {
  .ph__head { padding: 14px 18px; gap: 6px 10px; }
  .ph__list { padding: 0 18px; }
  .m {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 4px;
  }
  .m__badge  { grid-column: 1; grid-row: 1; align-self: start; }
  .m strong  { grid-column: 1; grid-row: 2; }
  .m > span:last-child { grid-column: 1; grid-row: 3; }
}

/* ----------------------- bets ----------------------- */
.section--bets { background: var(--cream); }
.bets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bet {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.bet__num {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  background: rgba(194,94,60,.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}
.bet h3 { font-size: 1.35rem; margin: 4px 0 12px; }
.bet p { font-size: .95rem; margin: 0 0 12px; }
.bet__risk {
  margin-top: 14px !important;
  padding: 14px 16px;
  background: var(--cream-2);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 8px 8px 0;
  font-size: .88rem;
  color: var(--ink-2);
}
.bet__risk strong { color: var(--terracotta-d); }
@media (max-width: 860px) { .bets { grid-template-columns: 1fr; } }

/* ----------------------- if we're wrong ----------------------- */
.section--risk { background: var(--cream-2); }
.risk {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.risk__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  border-left: 4px solid var(--terracotta);
  box-shadow: var(--shadow);
}
.risk__card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.risk__card p { font-size: .95rem; margin: 0; }
@media (max-width: 860px) { .risk { grid-template-columns: 1fr; } }

/* ----------------------- changelog ----------------------- */
.section--log { background: var(--cream); padding-bottom: 60px; }
.log {
  list-style: none;
  padding: 0; margin: 0;
  border-left: 2px solid var(--border);
  padding-left: 24px;
}
.log li {
  position: relative;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.log li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 20px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--terracotta);
}
.log li:first-child::before { background: var(--ochre); box-shadow: 0 0 0 2px var(--ochre); }
.log time {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: .8rem;
  color: var(--ink-3);
  margin-right: 14px;
}
.log strong { font-family: "Fraunces", serif; color: var(--ink); font-weight: 600; margin-right: 6px; }
.log span { color: var(--ink-2); font-size: .92rem; }
.log__note {
  margin-top: 22px;
  color: var(--ink-3);
  font-size: .9rem;
}
