:root {
  --cream: #F8F5EC;
  --cream-2: #F2EDDF;
  --cream-3: #ECE6D4;
  --ink: #1A1815;
  --ink-2: #2B2722;
  --ink-soft: #4A453E;
  --muted: #8A8275;
  --muted-2: #B5AD9E;
  --line: #1A18151A;
  --line-2: #1A18150F;
  --sage: #3F5A4A;
  --sage-2: #5A7766;
  --sage-soft: #C9D2C6;
  --sage-bg: #E5E9DF;
  --clay: #B86A4B;
  --shadow-card: 0 1px 0 rgba(26, 24, 21, 0.04), 0 1px 2px rgba(26, 24, 21, 0.04);
  --shadow-mock: 0 30px 60px -20px rgba(26, 24, 21, 0.18), 0 12px 24px -16px rgba(26, 24, 21, 0.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16px;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* shared icon sizes */
svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 245, 236, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .15s;
}
.nav.is-scrolled { box-shadow: 0 1px 0 rgba(26, 24, 21, 0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.brand-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sage-2), var(--sage) 70%);
  box-shadow: inset -2px -3px 6px rgba(0,0,0,0.18), inset 2px 2px 5px rgba(255,255,255,0.18);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 14.5px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .15s, color .15s;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream-2); }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.arr { width: 14px; height: 14px; }

/* ---------- HERO ---------- */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--sage);
  background: var(--sage-bg); padding: 7px 14px; border-radius: 999px;
  border: 1px solid #3F5A4A1F;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: dotPulse 2s ease-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

.hero h1 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(42px, 5.2vw, 72px); line-height: 1.02;
  letter-spacing: -0.025em; margin: 22px 0 22px; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--sage); font-weight: 400; }
.hero h1 .underline { background-image: linear-gradient(transparent 65%, #C9D2C680 65%); background-repeat: no-repeat; }

.hero-sub { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 520px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }

.hero-tools { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tool-chip {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink-soft); font-size: 13px; font-weight: 500;
  background: var(--cream-2); padding: 7px 12px; border-radius: 8px;
  border: 1px solid var(--line-2);
}
.tool-chip svg { width: 14px; height: 14px; color: var(--sage); }

/* hero visual */
.hero-visual { position: relative; height: 520px; }
.mock-window {
  position: absolute; background: #FDFCF7;
  border-radius: 14px; border: 1px solid var(--line);
  box-shadow: var(--shadow-mock); overflow: hidden;
}
.mw-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid var(--line-2); background: #FAF7EE;
}
.mw-dot { width: 10px; height: 10px; border-radius: 50%; background: #E0DACA; }
.mw-title {
  margin-left: 10px; font-size: 11.5px; color: var(--muted);
  font-weight: 500; display: inline-flex; align-items: center; gap: 6px;
}
.mw-icon { width: 13px; height: 13px; color: var(--sage); }
.mw-body { padding: 16px 18px; }

.mock-main { top: 30px; left: 0; width: 400px; z-index: 3; transform: rotate(-1.2deg); animation: floaty 6s ease-in-out infinite; }
.mock-cal { bottom: 60px; right: 0; width: 240px; z-index: 2; transform: rotate(1.8deg); animation: floaty 7s ease-in-out infinite reverse; }
.mock-task { bottom: 0; left: 80px; width: 270px; z-index: 1; transform: rotate(-0.8deg); animation: floaty 8s ease-in-out infinite; }
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(var(--rot,-1.2deg)); }
  50% { transform: translateY(-6px) rotate(var(--rot,-1.2deg)); }
}
.mock-main { --rot: -1.2deg; }
.mock-cal { --rot: 1.8deg; }
.mock-task { --rot: -0.8deg; }

.email-from { display: flex; justify-content: space-between; margin-bottom: 8px; }
.email-from .name { font-size: 13px; font-weight: 600; }
.email-from .time { font-size: 11px; color: var(--muted); }
.email-subject { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.typing-block { padding: 8px 0; }
.t-line { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.t-strike { text-decoration: line-through; color: var(--muted); font-style: italic; }

.clio-suggest {
  margin-top: 14px;
  background: linear-gradient(180deg, #ECF1E8, #E5E9DF);
  border: 1px solid #3F5A4A26;
  border-radius: 10px;
  padding: 12px 14px;
}
.clio-suggest .head {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600;
  color: var(--sage); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.head-icon { width: 12px; height: 12px; color: var(--sage); }
.clio-suggest .head .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); position: relative;
}
.clio-suggest .head .pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--sage); opacity: 0.4; animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.clio-suggest .body { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; min-height: 54px; }
.clio-suggest .body b { color: var(--sage); font-weight: 600; }
.caret { display: inline-block; width: 1px; background: var(--sage); margin-left: 1px; animation: caretBlink 1s steps(2) infinite; color: transparent; }
@keyframes caretBlink { 50% { opacity: 0; } }
.clio-suggest .actions { display: flex; gap: 6px; margin-top: 10px; }
.chip-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; padding: 5px 10px; border-radius: 6px;
  background: #FFF; border: 1px solid var(--line-2); color: var(--ink-2);
  font-weight: 500;
}
.chip-btn svg { width: 11px; height: 11px; }
.chip-btn.primary { background: var(--ink); color: #fff; border-color: var(--ink); }

.cal-event {
  border-left: 3px solid var(--sage);
  padding: 8px 12px; background: #F4F1E5;
  border-radius: 0 6px 6px 0; margin-bottom: 10px;
}
.cal-event .t { font-size: 10.5px; color: var(--muted); margin-bottom: 2px; font-family: "JetBrains Mono", monospace; }
.cal-event .n { font-size: 12.5px; font-weight: 500; }
.check-pop {
  display: flex; align-items: center; gap: 8px;
  background: #ECF1E8; padding: 8px 10px; border-radius: 8px;
  font-size: 12px; color: var(--sage); font-weight: 600;
  animation: popIn .8s 0.6s both;
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85); }
  60% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.cp-circle {
  width: 22px; height: 22px; border-radius: 50%; background: var(--sage);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
}
.cp-circle svg { width: 12px; height: 12px; }

.quality-mini { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.quality-mini .lbl { font-family: "JetBrains Mono", monospace; font-size: 9.5px; color: var(--muted); }
.quality-mini .bar { flex: 1; height: 5px; background: #E0DACA; border-radius: 3px; overflow: hidden; }
.quality-mini .pct { font-size: 10.5px; color: var(--sage); font-weight: 600; }
.task-mini { font-size: 12px; color: var(--ink-soft); line-height: 1.45; }
.task-mini b { color: var(--ink); }

.anim-fill { height: 100%; background: var(--sage); border-radius: 3px; width: 0; animation: fillIn 1.6s 0.4s ease-out forwards; }
.anim-fill[style*="--w"] { animation-name: fillTo; }
@keyframes fillIn { to { width: 86%; } }
@keyframes fillTo { to { width: var(--w); } }

/* ---------- STRIP ---------- */
.strip { padding: 28px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--cream-2); }
.strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.strip-label { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.strip-tools { display: flex; gap: 24px; flex-wrap: wrap; }
.strip-tools span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.strip-tools svg { color: var(--sage); width: 15px; height: 15px; }

/* ---------- SECTIONS ---------- */
section { padding: 96px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px;
}
.se-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.section-eyebrow.light { color: var(--sage-soft); }
.section-title {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(34px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 22px; max-width: 880px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-lede { font-size: 17px; line-height: 1.55; color: var(--ink-soft); max-width: 600px; margin-bottom: 48px; }

/* ---------- PROBLEM ---------- */
.problem { background: var(--cream); border-top: 1px solid var(--line-2); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.problem-card {
  background: #FDFCF7; border: 1px solid var(--line);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(26,24,21,.18); }
.p-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sage-bg); color: var(--sage); margin-bottom: 16px;
}
.p-icon svg { width: 20px; height: 20px; }
.problem-card h3 {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 20px; line-height: 1.25; letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.problem-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* ---------- HOW ---------- */
.how { background: var(--ink); color: var(--cream); }
.how .section-title { color: var(--cream); }
.how .section-lede { color: #C5BFAF; }
.how-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.how-step {
  background: #FFFFFF08; border: 1px solid #FFFFFF14;
  border-radius: 14px; padding: 24px;
  transition: background .15s, border-color .15s;
}
.how-step:hover { background: #FFFFFF12; border-color: #FFFFFF24; }
.how-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: #3F5A4A40; color: var(--sage-soft); margin-bottom: 16px;
}
.how-icon svg { width: 20px; height: 20px; }
.how-step .lvl {
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  color: var(--sage-soft); margin-bottom: 10px; letter-spacing: 0.06em;
}
.how-step h4 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: 20px; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--cream); margin: 0 0 8px;
}
.how-step p { font-size: 13.5px; color: #B8B1A2; line-height: 1.55; margin: 0; }

/* ---------- PRODUCTS ---------- */
.products { background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: #FDFCF7; border: 1px solid var(--line);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(26,24,21,.18); }
.product-card.feature { grid-column: span 3; }
.card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--sage-bg); color: var(--sage);
}
.card-icon svg { width: 18px; height: 18px; }
.product-card .ptag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--sage); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-card h3 {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.product-card.feature h3 { font-size: 28px; }
.product-card .lede { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; }
.product-card .demo { margin-top: auto; }

.demo-email, .demo-after, .demo-cal, .demo-slack, .demo-task, .demo-teammap, .demo-hr {
  background: var(--cream-2); border: 1px solid var(--line-2);
  border-radius: 10px; padding: 14px;
}
.product-card.feature .demo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.demo-label svg { width: 11px; height: 11px; color: var(--sage); }
.demo-text { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.demo-strike { text-decoration: line-through; color: var(--muted); font-style: italic; }
.demo-after { background: #FDFCF7; }
.demo-after .demo-label { color: var(--sage); }
.demo-after .demo-text { color: var(--ink-2); }
.demo-after .demo-text b { color: var(--sage); font-weight: 600; }

.demo-cal { background: #FDFCF7; }
.agree-row {
  display: flex; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line-2);
  font-size: 12.5px;
}
.agree-row:last-child { border-bottom: 0; }
.agree-row .who { flex-shrink: 0; width: 70px; color: var(--sage); font-weight: 500; }
.agree-row .what { color: var(--ink-2); }
.agree-row .when { color: var(--muted); font-size: 11px; font-family: "JetBrains Mono", monospace; margin-left: auto; flex-shrink: 0; }

.demo-slack { background: #FDFCF7; }
.slack-actioncard {
  background: linear-gradient(180deg, #ECF1E8, #E5E9DF);
  border-left: 3px solid var(--sage);
  border-radius: 0 8px 8px 0;
  padding: 11px 13px;
}
.slack-actioncard .label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.slack-actioncard .label svg { width: 11px; height: 11px; }
.slack-actioncard .msg { font-size: 12.5px; color: var(--ink-2); margin-bottom: 8px; line-height: 1.45; }
.slack-actioncard .btns { display: flex; gap: 6px; }
.slack-actioncard .b {
  font-size: 11px; padding: 4px 9px; border-radius: 5px;
  background: #FFF; border: 1px solid var(--line-2); color: var(--ink-2); font-weight: 500;
}
.slack-actioncard .b.primary { background: var(--ink); color: #fff; border-color: var(--ink); }

.demo-task { background: #FDFCF7; }
.task-quality {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream-2); padding: 7px 10px; border-radius: 6px;
  margin-bottom: 10px;
}
.task-bar { flex: 1; height: 5px; background: #E0DACA; border-radius: 3px; overflow: hidden; }
.task-quality .lbl { font-size: 10px; color: var(--muted); font-family: "JetBrains Mono", monospace; }
.task-quality .pct { font-size: 10.5px; color: var(--sage); font-weight: 600; }
.task-detail { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); }
.task-detail b { color: var(--sage); font-weight: 600; }
.task-meta-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.task-meta-row .pill {
  font-size: 10.5px; padding: 3px 8px; border-radius: 999px;
  background: var(--sage-bg); color: var(--sage); font-weight: 500;
  border: 1px solid #3F5A4A1F;
}

.demo-teammap { background: #FDFCF7; }
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tm-person { background: var(--cream-2); border-radius: 8px; padding: 10px; text-align: center; }
.tm-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage-soft); color: var(--sage);
  margin: 0 auto 5px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.tm-name { font-size: 11.5px; font-weight: 600; }
.tm-arch { font-size: 9.5px; color: var(--muted); font-family: "JetBrains Mono", monospace; margin-top: 1px; }
.tm-friction {
  margin-top: 10px; font-size: 12px; color: var(--ink-soft);
  background: var(--cream-2); padding: 8px 11px; border-radius: 6px;
  border-left: 3px solid var(--clay); line-height: 1.45;
}
.tm-friction b { color: var(--clay); font-weight: 600; }

/* HR row */
.hr-row {
  margin-top: 28px;
  background: #FDFCF7; border: 1px solid var(--line);
  border-radius: 16px; padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
  box-shadow: var(--shadow-card);
}
.hr-left h3 {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.015em; margin: 4px 0 10px;
}
.hr-left .lede { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.55; }
.hr-checks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.hr-checks li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.hr-checks svg { width: 14px; height: 14px; color: var(--sage); }

.demo-hr { background: var(--cream-2); }
.hr-title { font-family: "Fraunces", serif; font-size: 16px; font-weight: 500; }
.hr-sub { font-size: 10.5px; color: var(--muted); font-family: "JetBrains Mono", monospace; margin: 4px 0 14px; letter-spacing: 0.08em; }
.hr-bar { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 12px; }
.hr-bar .lbl { display: inline-flex; align-items: center; gap: 6px; width: 90px; color: var(--ink-soft); }
.hr-bar .lbl svg { width: 13px; height: 13px; color: var(--sage); }
.hr-bar-wrap { flex: 1; height: 6px; background: #E0DACA; border-radius: 3px; overflow: hidden; }
.hr-bar .val { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--ink); font-weight: 500; }

/* ---------- DIFF ---------- */
.diff { background: var(--cream-2); }
.diff-table {
  background: #FDFCF7; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; max-width: 980px;
}
.diff-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-2); }
.diff-row:first-child { border-top: 0; }
.diff-cell { padding: 20px 26px; font-size: 14.5px; line-height: 1.45; }
.diff-cell.left { color: var(--muted); border-right: 1px solid var(--line-2); }
.diff-cell.right { color: var(--ink); font-weight: 500; }
.diff-cell.right b { color: var(--sage); font-weight: 600; }
.diff-head {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream-3); border-bottom: 1px solid var(--line);
}
.diff-head > div {
  padding: 14px 26px; font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.diff-head > div:first-child { border-right: 1px solid var(--line-2); }
.diff-head > div:last-child { color: var(--sage); }
.dh-icon { width: 13px; height: 13px; }

/* ---------- PRICING ---------- */
.pricing { background: var(--ink); color: var(--cream); }
.pricing .section-title { color: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 36px; }
.price-card {
  background: #FFFFFF08; border: 1px solid #FFFFFF14;
  border-radius: 14px; padding: 24px; position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.badge {
  position: absolute; top: -10px; left: 24px;
  background: var(--sage); color: #fff;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 9px; border-radius: 999px;
}
.price-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: #3F5A4A40; color: var(--sage-soft); margin-bottom: 14px;
}
.price-icon svg { width: 17px; height: 17px; }
.price-card.featured .price-icon { background: var(--sage-bg); color: var(--sage); }
.price-card .pname { font-family: "Fraunces", serif; font-weight: 500; font-size: 22px; margin-bottom: 4px; letter-spacing: -0.01em; }
.price-card .pwho { font-size: 12px; color: #968F80; margin-bottom: 18px; line-height: 1.4; }
.price-card.featured .pwho { color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.price-card li { font-size: 13px; color: #C5BFAF; padding: 5px 0; display: flex; gap: 8px; line-height: 1.4; }
.price-card.featured li { color: var(--ink-2); }
.price-card li::before { content: ""; flex-shrink: 0; width: 12px; height: 1px; background: var(--sage-soft); margin-top: 9px; }
.pcta {
  width: 100%; padding: 10px; border-radius: 8px;
  background: transparent; border: 1px solid #FFFFFF26; color: var(--cream);
  font-family: inherit; font-size: 13px; font-weight: 500;
  text-align: center; cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.pcta:hover { background: #FFFFFF12; }
.price-card.featured .pcta { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- FINAL CTA ---------- */
.finalcta { background: var(--cream); padding: 110px 0 90px; text-align: center; }
.finalcta .wrap { max-width: 720px; margin: 0 auto; }
.finalcta h2 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(38px, 4.4vw, 60px); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 18px;
}
.finalcta h2 em { font-style: italic; color: var(--sage); }
.finalcta p { font-size: 17px; color: var(--ink-soft); margin: 0 auto 28px; max-width: 540px; line-height: 1.55; }
.finalcta .ctas { display: inline-flex; gap: 12px; }
.trust-row {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-2);
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.trust-row svg { width: 14px; height: 14px; color: var(--sage); }

/* ---------- FOOTER ---------- */
footer { background: var(--cream); border-top: 1px solid var(--line); padding: 32px 0; }
.foot { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 14px; }
.foot-links { display: flex; gap: 24px; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .how-flow { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.feature { grid-column: span 2; }
  .product-card.feature .demo { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .hr-row { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 460px; }
  .nav-links { display: none; }
  section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-flow { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.feature { grid-column: span 1; }
  .price-grid { grid-template-columns: 1fr; }
  .diff-row, .diff-head { grid-template-columns: 1fr; }
  .diff-cell.left { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .mock-main { width: 320px; }
  .mock-cal { width: 200px; }
  .mock-task { width: 220px; left: 20px; }
}

/* ===== Team Map wide row ===== */
.tm-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 36px 36px;
  margin-top: 28px;
}
.tm-row-head { margin-bottom: 24px; max-width: 760px; }
.tm-row-head h3 {
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
  color: var(--ink);
}
.tm-row-head h3 em { font-style: italic; color: var(--sage-2); }
.tm-row-head .lede { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.tm-canvas {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.05fr;
  gap: 16px;
  align-items: stretch;
}
.tm-side, .tm-graph {
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.tm-legend { display: flex; flex-direction: column; gap: 11px; }
.tm-leg-row { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; line-height: 1.42; }
.tm-leg-row .tm-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.tm-leg-row b { display: block; font-weight: 600; color: var(--ink); margin-bottom: 1px; }
.tm-leg-row span { color: var(--ink-soft); }

.tm-health { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.tm-health-h { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--ink-soft); margin-bottom: 4px; }
.tm-health-sub { font-size: 11px; color: var(--ink-soft); margin-bottom: 10px; }
.tm-health-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 6px;
  align-items: center;
  padding: 5px 0;
  font-size: 12px;
}
.tm-health-row.tm-health-th { font-size: 9px; font-weight: 700; letter-spacing: .08em; color: var(--ink-soft); text-transform: uppercase; padding: 0 0 4px; border-bottom: 1px solid var(--line-2); }
.tm-health-row.tm-health-th span { text-align: center; }
.tm-h-name { color: var(--ink); font-weight: 500; }
.tm-h-cell { padding: 3px 6px; border-radius: 5px; font-weight: 600; text-align: center; display: inline-flex; flex-direction: column; align-items: center; line-height: 1.1; }
.tm-h-cell i { font-style: normal; font-size: 9px; font-weight: 500; opacity: .85; }
.tm-h-cell.tm-lo { background: #d8efe2; color: #1a6c3f; }
.tm-h-cell.tm-mod { background: #fff1d2; color: #8a5a08; }
.tm-h-cell.tm-hi { background: #fcd9dc; color: #7a1f25; }

.tm-graph { display: flex; flex-direction: column; }
.tm-graph-leg { display: flex; gap: 14px; justify-content: center; font-size: 11px; color: var(--ink-soft); margin-bottom: 4px; }
.tm-graph-leg span { display: inline-flex; align-items: center; gap: 5px; }
.tm-graph-leg i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.tm-graph-svg { width: 100%; height: auto; display: block; flex: 1; min-height: 300px; }
.tm-risks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.tm-risk-card { padding: 8px 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 11px; }
.tm-risk-card b { display: block; color: var(--ink); margin-bottom: 2px; font-weight: 600; }
.tm-risk-card span { color: var(--ink-soft); }

.tm-dyn-h { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--ink-soft); margin-bottom: 12px; }
.tm-dyn-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.tm-dyn-card.tm-dyn-hi { border-left-color: #e2434b; }
.tm-dyn-card.tm-dyn-mid { border-left-color: #f0a430; }
.tm-dyn-tag { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 6px; }
.tm-dyn-card h5 { font-family: "Fraunces", serif; font-size: 16px; margin: 0 0 6px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.tm-dyn-card p { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 8px; }
.tm-dyn-card p b { color: var(--ink); font-weight: 600; }
.tm-dyn-sub { font-size: 9px; font-weight: 700; letter-spacing: .12em; color: var(--ink-soft); margin: 8px 0 4px; }

@media (max-width: 980px) {
  .tm-canvas { grid-template-columns: 1fr; }
  .tm-row { padding: 24px 22px 26px; }
}
