:root { --sky: #b8912f; }

/* master-brand: two product panels, deliberately equal */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.product { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; background: var(--white); display: flex; flex-direction: column; }
.product .kicker { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: .8em; }
.product h3 { font-size: 1.5rem; margin-bottom: .3em; }
.product .role { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1em; }
.product ul { margin-bottom: 1.4em; }
.product .more { margin-top: auto; font-weight: 600; }

/* diagrams */
figure.diagram { margin: 0 0 8px; }
figure.diagram svg { width: 100%; height: auto; display: block; }
figure.diagram figcaption { color: var(--ink-soft); font-size: .92rem; margin-top: 12px; }

/* responsibility table */
.owns { width: 100%; border-collapse: collapse; font-size: .95rem; }
.owns th, .owns td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.owns thead th { font-family: var(--sans); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.owns tbody th { font-family: var(--serif); font-weight: 600; color: var(--navy); white-space: nowrap; }
.owns .scroll { overflow-x: auto; }

/* stage list */
.stage { border-top: 3px solid var(--navy); padding-top: 20px; margin-bottom: 44px; }
.stage .num { font-family: var(--serif); color: var(--sky); font-weight: 600; letter-spacing: .05em; font-size: .95rem; }
.stage h3 { margin: .3em 0 .4em; font-size: 1.45rem; }
.stage .mix { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; margin-bottom: 1em; background: var(--white); }

/* open question marker: never ships to production */
.needs { border-left: 3px solid #b8912f; background: #fdf8ec; padding: 14px 18px; margin: 20px 0; font-size: .93rem; color: #6b5417; border-radius: 0 var(--radius) var(--radius) 0; }
.needs strong { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4em; color: #8a6a1a; }
.needs p { margin: 0; }

/* home hero: three-statement headline needs more measure than the 16ch default */
.home .hero h1 { max-width: 24ch; }
.home .hero .lede { max-width: 58ch; }

@media (max-width: 860px) { .products { grid-template-columns: 1fr; } }
