:root {
    --ink: #14221c;
    --ink-soft: #40524a;
    --cream: #f4f0e7;
    --paper: #fffdf8;
    --line: #d8d6ca;
    --coral: #ff654f;
    --coral-dark: #dd422e;
    --mint: #b7e8d0;
    --lime: #d9f479;
    --blue: #9ecbe8;
    --shadow: 0 24px 70px rgba(20, 34, 28, 0.13);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    background: var(--ink);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.4rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    width: min(1320px, calc(100% - 48px));
    height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(20, 34, 28, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: max-content;
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.brand-mark {
    width: 2rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 14%;
    background: var(--coral);
    color: white;
    font-size: 0.9rem;
    transform: rotate(-8deg);
}

.brand-mark + span {
    transform: translateY(-1px);
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.site-nav a,
.header-link,
.site-footer nav a {
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a,
.site-footer nav a {
    color: var(--ink-soft);
}

.header-link {
    justify-self: end;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid var(--coral);
}

.site-nav a:hover,
.site-footer nav a:hover {
    color: var(--coral-dark);
}

.hero {
    width: min(1320px, calc(100% - 48px));
    min-height: 720px;
    margin: 0 auto;
    padding: 6.5rem 0 7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
}

.eyebrow {
    margin: 0 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--coral-dark);
    font-family: "Manrope", sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 1.85rem;
    height: 2px;
    background: currentColor;
}

.eyebrow.light {
    color: var(--mint);
}

h1, h2, h3, p {
    margin-top: 0;
}

h1, h2, h3 {
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.045em;
}

h1 {
    max-width: 850px;
    margin-bottom: 1.6rem;
    font-size: clamp(3.4rem, 6.3vw, 6.6rem);
    line-height: 0.98;
}

.hero-intro {
    max-width: 690px;
    margin-bottom: 2rem;
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 1.5vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.3rem;
    border: 1px solid var(--ink);
    border-radius: 0.45rem;
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--ink);
    color: white;
    box-shadow: 5px 5px 0 var(--coral);
}

.button-primary:hover {
    box-shadow: 7px 7px 0 var(--coral);
}

.button-secondary {
    background: transparent;
}

.button-secondary:hover {
    background: var(--paper);
}

.trust-list {
    margin: 2.4rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.7rem;
    list-style: none;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.trust-list li::before {
    content: "";
    width: 0.46rem;
    height: 0.46rem;
    margin-right: 0.55rem;
    display: inline-block;
    border-radius: 50%;
    background: var(--coral);
}

.hero-system {
    position: relative;
    padding: 1.2rem;
    border: 1px solid rgba(20, 34, 28, 0.22);
    border-radius: 1rem;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.hero-system::before {
    content: "";
    position: absolute;
    inset: 1rem -1rem -1rem 1rem;
    z-index: -1;
    border-radius: 1rem;
    background: var(--mint);
}

.system-header {
    padding: 0.1rem 0.2rem 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #237850;
}

.live-indicator i {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #31a36f;
    box-shadow: 0 0 0 4px rgba(49, 163, 111, 0.13);
}

.source-stack {
    padding: 1.7rem 0.2rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.source-stack span,
.product-tags span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    text-align: center;
    font-size: 0.69rem;
    font-weight: 700;
}

.source-stack span {
    padding: 0.55rem 0.3rem;
}

.flow-line {
    width: 1px;
    height: 2rem;
    margin: 0 auto;
    position: relative;
    background: var(--line);
}

.flow-line span {
    position: absolute;
    bottom: -1px;
    left: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--ink-soft);
    border-bottom: 1px solid var(--ink-soft);
    transform: rotate(45deg);
}

.system-core {
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-radius: 0.7rem;
    background: var(--ink);
    color: white;
}

.core-mark {
    width: 2.7rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 16%;
    background: var(--coral);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    transform: rotate(-8deg);
}

.system-core strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
}

.system-core p {
    margin: 0.1rem 0 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.75rem;
}

.flow-line-down {
    height: 2.1rem;
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}

.output-grid article {
    min-height: 94px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: #faf8f2;
}

.output-grid article:nth-child(2) { background: #eff8f2; }
.output-grid article:nth-child(3) { background: #eef5f9; }
.output-grid small { color: var(--ink-soft); font-size: 0.64rem; text-transform: uppercase; }
.output-grid strong { font-family: "Manrope", sans-serif; font-size: 0.78rem; line-height: 1.25; }

.section {
    padding: 8.5rem max(24px, calc((100vw - 1320px) / 2));
}

.section-heading {
    max-width: 880px;
    margin-bottom: 4rem;
}

.section-heading h2,
.data-copy h2,
.cta-section h2 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.5rem, 4.6vw, 4.8rem);
    line-height: 1.04;
}

.section-heading > p:last-child,
.split-heading > p,
.data-copy > p:last-child {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.platform {
    background: var(--paper);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.capability-card {
    min-height: 300px;
    padding: 1.7rem 1.7rem 2rem;
    border-right: 1px solid var(--line);
}

.capability-card:last-child {
    border-right: 0;
}

.card-number,
.product-index {
    display: block;
    color: var(--coral-dark);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.capability-card h3 {
    margin: 5rem 0 0.8rem;
    font-size: 1.55rem;
}

.capability-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.lifecycle {
    background:
        linear-gradient(rgba(20, 34, 28, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 34, 28, 0.035) 1px, transparent 1px),
        var(--cream);
    background-size: 34px 34px;
}

.lifecycle-figure {
    margin: 0;
    padding: clamp(1.2rem, 3vw, 2.2rem);
    border: 1px solid rgba(20, 34, 28, 0.22);
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow);
}

.lifecycle-figure figcaption {
    padding: 0 0.25rem 1.6rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.lifecycle-figure figcaption strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.lifecycle-figure figcaption span {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.flowchart {
    --flow-gap: clamp(1.2rem, 3vw, 3rem);
    min-height: 980px;
    padding: 3rem 3.5rem;
    position: relative;
    display: grid;
    grid-template-columns: minmax(130px, 0.7fr) minmax(250px, 390px) minmax(230px, 0.85fr);
    grid-template-rows: auto 42px auto 48px auto 52px auto 52px auto 52px auto 52px auto;
    column-gap: var(--flow-gap);
    align-items: center;
    justify-content: center;
}

.flow-node {
    padding: 1rem 1.2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    background: white;
}

.flow-node strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.94rem;
    line-height: 1.35;
}

.flow-node small {
    margin-top: 0.28rem;
    color: var(--ink-soft);
    font-size: 0.76rem;
    line-height: 1.45;
}

.flow-kicker {
    margin-bottom: 0.32rem;
    color: var(--coral-dark);
    font-family: "Manrope", sans-serif;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.flow-source {
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-self: center;
    width: min(100%, 280px);
}

.flow-worker { grid-column: 2; grid-row: 3; }
.flow-change { grid-column: 2; grid-row: 5; }
.flow-no-refresh { grid-column: 3; grid-row: 5; }
.flow-logic { grid-column: 2; grid-row: 7; }
.flow-ai-review { grid-column: 3; grid-row: 7; }
.flow-ingest { grid-column: 2; grid-row: 9; }
.flow-ingest-note { grid-column: 3; grid-row: 9; }
.flow-validation { grid-column: 2; grid-row: 11; }
.flow-needs-review { grid-column: 3; grid-row: 11; }
.flow-production { grid-column: 2; grid-row: 13; }

.flow-action {
    border: 2px solid var(--coral);
}

.flow-decision {
    padding: 1.15rem 2.5rem;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.flow-decision::before,
.flow-decision::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.flow-decision::before {
    background: var(--line);
}

.flow-decision::after {
    inset: 1px;
    z-index: -1;
    background: white;
}

.flow-decision .flow-kicker {
    margin-bottom: 0.1rem;
}

.flow-review {
    border-color: var(--blue);
    background: #f2f8fb;
}

.flow-review .flow-kicker {
    color: #2378a9;
}

.flow-outcome {
    align-items: center;
    background: #faf8f2;
    text-align: center;
}

.flow-production {
    align-items: center;
    border: 2px solid var(--ink);
    background: var(--ink);
    color: white;
    text-align: center;
}

.flow-production .flow-kicker {
    color: var(--mint);
}

.flow-production small {
    color: rgba(255,255,255,0.64);
}

.flow-connector {
    width: 1px;
    height: 100%;
    position: relative;
    z-index: 1;
    justify-self: center;
    background: var(--ink-soft);
}

.flow-connector::after {
    content: "";
    position: absolute;
    left: -3px;
    bottom: 1px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--ink-soft);
    border-bottom: 1px solid var(--ink-soft);
    transform: rotate(45deg);
}

.flow-connector span {
    position: absolute;
    top: 50%;
    left: 0.8rem;
    padding: 0 0.25rem;
    background: var(--paper);
    color: var(--ink-soft);
    font-size: 0.68rem;
    transform: translateY(-50%);
}

.connector-source { grid-column: 2; grid-row: 2; }
.connector-worker { grid-column: 2; grid-row: 4; }
.connector-change { grid-column: 2; grid-row: 6; }
.connector-logic { grid-column: 2; grid-row: 8; }
.connector-ingest { grid-column: 2; grid-row: 10; }
.connector-validation { grid-column: 2; grid-row: 12; }

.flow-no-refresh::before,
.flow-ai-review::before,
.flow-needs-review::before {
    content: "";
    width: var(--flow-gap);
    height: 1px;
    position: absolute;
    top: 50%;
    right: 100%;
    background: var(--ink-soft);
}

.flow-no-refresh::after,
.flow-ai-review::after,
.flow-needs-review::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: calc(50% - 4px);
    left: -7px;
    border-top: 1px solid var(--ink-soft);
    border-right: 1px solid var(--ink-soft);
    transform: rotate(45deg);
}

.branch-label {
    z-index: 3;
    align-self: center;
    justify-self: end;
    margin-right: calc(-1 * var(--flow-gap) / 2 - 0.6rem);
    padding: 0 0.35rem;
    background: var(--paper);
    color: var(--ink-soft);
    font-size: 0.68rem;
}

.branch-change { grid-column: 2; grid-row: 5; }
.branch-logic { grid-column: 2; grid-row: 7; }
.branch-validation { grid-column: 2; grid-row: 11; }

.flow-note {
    padding-left: 1rem;
    display: grid;
    gap: 0.28rem;
    border-left: 2px solid var(--mint);
    color: var(--ink-soft);
    font-size: 0.74rem;
}

.flow-loop {
    position: absolute;
    top: 114px;
    bottom: 50px;
    left: 1rem;
    width: calc((100% - min(100%, 390px)) / 2 - 3rem);
    min-width: 46px;
    border-top: 1px dashed rgba(20, 34, 28, 0.45);
    border-bottom: 1px dashed rgba(20, 34, 28, 0.45);
    border-left: 1px dashed rgba(20, 34, 28, 0.45);
    pointer-events: none;
}

.flow-loop::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: -4px;
    right: -1px;
    border-top: 1px solid var(--ink-soft);
    border-right: 1px solid var(--ink-soft);
    transform: rotate(45deg);
}

.flow-loop span {
    position: absolute;
    left: 0.7rem;
    bottom: 0.7rem;
    color: var(--ink-soft);
    font-size: 0.64rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: 1.05fr 0.7fr;
    align-items: end;
    gap: 6rem;
}

.split-heading h2 {
    margin-bottom: 0;
}

.split-heading > p {
    margin-bottom: 0.55rem;
}

.product-list {
    border-top: 1px solid rgba(20, 34, 28, 0.2);
}

.product-card {
    min-height: 300px;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 0.35fr 1.3fr 0.8fr;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(20, 34, 28, 0.2);
}

.product-index {
    align-self: start;
    padding-top: 0.3rem;
}

.product-body {
    max-width: 720px;
}

.product-type {
    margin-bottom: 0.35rem;
    color: var(--coral-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-body h3 {
    margin-bottom: 0.6rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.product-body > p:not(.product-type) {
    margin-bottom: 1.4rem;
    color: var(--ink-soft);
}

.product-body a {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
    text-underline-offset: 0.3rem;
    text-decoration-color: var(--coral);
    text-decoration-thickness: 2px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.product-tags span {
    padding: 0.55rem 0.8rem;
}

.product-community { --product-color: var(--mint); }
.product-local { --product-color: var(--lime); }
.product-commerce { --product-color: var(--blue); }
.product-card { position: relative; }
.product-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: var(--product-color);
    transition: width 300ms ease;
}
.product-card:hover::after { width: 100%; }

.data-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(4rem, 9vw, 9rem);
    background: var(--ink);
    color: white;
}

.data-copy > p:last-child {
    color: rgba(255,255,255,0.62);
}

.data-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.data-features article {
    min-height: 200px;
    padding: 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.16);
    border-left: 1px solid rgba(255,255,255,0.16);
}

.data-features strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
}

.data-features p {
    margin: 2.7rem 0 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.84rem;
}

.process {
    background: var(--paper);
}

.process-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    counter-reset: process;
}

.process-list li {
    min-height: 230px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-right: 0;
}

.process-list li:last-child {
    border-right: 1px solid var(--line);
}

.process-list li > span {
    color: var(--coral-dark);
    font-size: 0.7rem;
    font-weight: 800;
}

.process-list strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
}

.process-list p {
    margin: 0.5rem 0 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.cta-section {
    min-height: 560px;
    padding: 8rem max(24px, calc((100vw - 1050px) / 2));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--coral-dark);
    color: white;
}

.cta-section h2 {
    max-width: 900px;
}

.cta-section > p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255,255,255,0.76);
    font-size: 1.08rem;
}

.button-light {
    margin-top: 1rem;
    border-color: white;
    background: white;
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
}

.site-footer {
    min-height: 150px;
    padding: 2.5rem max(24px, calc((100vw - 1320px) / 2));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    background: var(--paper);
}

.site-footer p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.site-footer nav {
    justify-self: end;
    display: flex;
    gap: 1.5rem;
}

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

@media (max-width: 1000px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        padding-top: 5rem;
    }

    .hero-system {
        width: min(620px, calc(100% - 1rem));
        justify-self: center;
    }

    .capability-grid,
    .process-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-card:nth-child(2) {
        border-right: 0;
    }

    .capability-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .process-list li:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .process-list li:nth-child(n+3) {
        border-top: 0;
    }

    .split-heading,
    .data-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .flowchart {
        padding-right: 1rem;
        padding-left: 2.5rem;
        grid-template-columns: minmax(230px, 1fr) minmax(210px, 0.8fr);
    }

    .flow-source,
    .flow-worker,
    .flow-change,
    .flow-logic,
    .flow-ingest,
    .flow-validation,
    .flow-production,
    .connector-source,
    .connector-worker,
    .connector-change,
    .connector-logic,
    .connector-ingest,
    .connector-validation,
    .branch-change,
    .branch-logic,
    .branch-validation {
        grid-column: 1;
    }

    .flow-no-refresh,
    .flow-ai-review,
    .flow-ingest-note,
    .flow-needs-review {
        grid-column: 2;
    }

    .flow-loop {
        display: none;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .site-header,
    .hero {
        width: min(100% - 32px, 1320px);
    }

    .site-header {
        height: 74px;
    }

    .header-link {
        font-size: 0.75rem;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0 5rem;
    }

    h1 {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .trust-list {
        gap: 0.8rem 1.2rem;
    }

    .hero-system {
        width: calc(100% - 0.8rem);
        padding: 0.9rem;
    }

    .source-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .output-grid {
        grid-template-columns: 1fr;
    }

    .output-grid article {
        min-height: 72px;
    }

    .section {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .section-heading {
        margin-bottom: 2.8rem;
    }

    .capability-grid,
    .process-list,
    .data-features {
        grid-template-columns: 1fr;
    }

    .capability-card,
    .capability-card:nth-child(2) {
        min-height: 240px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .capability-card:last-child {
        border-bottom: 0;
    }

    .capability-card h3 {
        margin-top: 3.3rem;
    }

    .split-heading {
        gap: 1.2rem;
    }

    .lifecycle-figure {
        padding: 1rem;
    }

    .lifecycle-figure figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
    }

    .flowchart {
        min-height: 0;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .flow-node,
    .flow-source {
        width: min(100%, 420px);
        align-self: center;
    }

    .flow-decision {
        padding: 1.25rem 2.7rem;
    }

    .flow-connector {
        width: 1px;
        height: 42px;
        flex: 0 0 42px;
    }

    .flow-no-refresh,
    .flow-ai-review,
    .flow-ingest-note,
    .flow-needs-review {
        margin: 0.65rem 0 1rem;
    }

    .flow-no-refresh::before,
    .flow-ai-review::before,
    .flow-needs-review::before {
        content: "If no";
        width: auto;
        height: auto;
        margin-bottom: 0.35rem;
        display: block;
        position: static;
        background: transparent;
        color: var(--coral-dark);
        font-family: "Manrope", sans-serif;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .flow-no-refresh::after,
    .flow-ai-review::after,
    .flow-needs-review::after,
    .branch-label {
        display: none;
    }

    .flow-note {
        width: min(100%, 420px);
        align-self: center;
    }

    .product-card {
        grid-template-columns: 2.5rem 1fr;
        gap: 0.8rem;
    }

    .product-tags {
        grid-column: 2;
        justify-content: flex-start;
    }

    .data-features article {
        min-height: 170px;
        border-left: 0;
    }

    .data-features p {
        margin-top: 1.8rem;
    }

    .process-list li,
    .process-list li:nth-child(2),
    .process-list li:nth-child(n+3) {
        min-height: 190px;
        border: 1px solid var(--line);
        border-bottom: 0;
    }

    .process-list li:last-child {
        border-bottom: 1px solid var(--line);
    }

    .cta-section {
        min-height: 530px;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .site-footer {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 1rem;
    }

    .site-footer nav {
        justify-self: start;
        flex-wrap: wrap;
    }
}

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