:root {
    --ink: #1f2933;
    --muted: #5d6978;
    --line: #dce3ea;
    --paper: #ffffff;
    --soft: #f4f7f6;
    --soft-green: #e6f0eb;
    --green: #2f6f5e;
    --green-dark: #234f44;
    --blue: #255f85;
    --blue-dark: #183c5c;
    --blue-soft: #eaf3fb;
    --gold: #b9822b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--blue);
    color: white;
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.site-menu {
    position: relative;
}

.site-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    list-style: none;
}

.site-menu summary::-webkit-details-marker {
    display: none;
}

.site-menu summary span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}

.site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(290px, calc(100vw - 36px));
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 18px 46px rgba(31, 41, 51, 0.16);
    font-size: 15px;
}

.site-nav a {
    color: var(--ink);
    padding: 10px 12px;
    border-radius: 6px;
}

.site-nav a[aria-current="page"] {
    color: var(--blue-dark);
    background: var(--blue-soft);
}

.site-nav a:hover {
    background: var(--soft);
    text-decoration: none;
}

.section {
    padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.section.alt {
    background: var(--soft);
}

.journey-section {
    background:
        radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0) 66%),
        linear-gradient(180deg, #f8fbff 0%, #eef6fb 58%, #f6f8fb 100%);
    border-top: 1px solid rgba(201, 223, 240, 0.55);
    border-bottom: 1px solid rgba(220, 227, 234, 0.75);
}

.inner {
    max-width: 1120px;
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(26px, 5vw, 70px);
    min-height: calc(86vh - 68px);
    padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px);
    background:
        linear-gradient(135deg, #f7fbff 0%, #eaf3fb 48%, #f8fafc 100%);
    color: var(--ink);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 710px;
}

.eyebrow {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    margin: 0 0 12px;
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(34px, 5vw, 58px);
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
}

h3 {
    font-size: 20px;
}

.lead {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--muted);
    margin: 0 0 24px;
}

.hero .lead,
.hero .trust-row span {
    color: var(--muted);
}

.hero .eyebrow {
    color: #bfe3d3;
}

.hero-badge {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 12px;
    border: 1px solid #c9dff0;
    border-radius: 6px;
    background: white;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.hero-workflow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 0;
    max-width: 620px;
}

.hero-workflow span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid #c9dff0;
    border-radius: 6px;
    background: white;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 700;
}

.hero-media {
    position: relative;
    z-index: 1;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.18);
}

.hero-media video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #111827;
}

.hero-media-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 16px;
    background: white;
    color: var(--ink);
}

.hero-media-caption strong {
    white-space: nowrap;
}

.hero-media-caption span {
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.copy {
    color: var(--muted);
    max-width: 760px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 11px 18px;
    font-weight: 700;
    border: 1px solid var(--blue);
}

.button.primary {
    background: var(--blue);
    color: white;
}

.button.secondary {
    color: var(--blue);
    background: white;
}

.button.disabled {
    color: #6b7280;
    background: #eef0f2;
    border-color: #cfd6dd;
    cursor: not-allowed;
}

.button:hover {
    text-decoration: none;
}

.media-frame video,
.media-frame img {
    width: 100%;
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111827;
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.14);
}

.hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    background: #111827;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.trust-row span {
    display: block;
    border-left: 3px solid var(--blue);
    padding: 2px 0 2px 12px;
    color: var(--muted);
    font-size: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

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

.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 22px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.card img {
    width: 100%;
    display: block;
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-bottom: 16px;
}

.journey-title {
    font-size: clamp(22px, 2.4vw, 30px);
    max-width: 720px;
}

.jstage {
    position: relative;
    width: 100%;
    height: 470px;
    margin: 42px auto 0;
    overflow: hidden;
}

.jwrap {
    position: relative;
    width: 660px;
    height: 470px;
    margin: 0 auto;
    transform-origin: top center;
}

.jwrap svg.pipes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.pipe {
    fill: none;
    stroke: #d7dde2;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.water {
    fill: none;
    stroke: url(#liquid);
    stroke-width: 6.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 1s ease, opacity 0.4s;
}

.sheen {
    fill: none;
    stroke: #e2f0fe;
    stroke-width: 6.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    stroke-dasharray: 0.14 0.86;
    stroke-dashoffset: 1;
}

.seg.flowing .water,
.seg.filled .water {
    opacity: 1;
    stroke-dashoffset: 0;
}

.seg.flowing .sheen {
    opacity: 0.8;
    animation: sheen 1.8s linear infinite;
}

@keyframes sheen {
    from { stroke-dashoffset: 1; }
    to { stroke-dashoffset: 0; }
}

.jnode {
    position: absolute;
    width: 86px;
    height: 86px;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
    transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.25), opacity 0.5s;
    will-change: transform;
}

.jnode.shown {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.jnode.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.32);
}

.jnode img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(31, 41, 51, 0.13));
}

#node-suppliers img {
    transform: scale(1.36);
}

#node-recipes img,
#node-pricing img,
#node-sales img,
#node-dashboard img {
    transform: scale(1.22);
}

#node-batches img {
    transform: scale(1.12);
}

#node-ingredients img {
    transform: scale(0.88);
}

#node-labels img {
    transform: scale(0.74);
}

#node-stock,
#node-products {
    width: 88px;
    height: 88px;
}

#node-ingredients {
    width: 82px;
    height: 82px;
}

#node-suppliers {
    width: 96px;
    height: 96px;
}

.cap {
    position: absolute;
    width: 96px;
    opacity: 0;
    transition: opacity 0.45s;
    pointer-events: none;
}

.cap strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.cap em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.2;
    margin-top: 1px;
}

.cap.show {
    opacity: 1;
}

.cap.left {
    transform: translate(-100%, -50%);
    text-align: right;
}

.cap.right {
    transform: translate(0, -50%);
    text-align: left;
}

.cap.below {
    transform: translate(-50%, 0);
    text-align: center;
    width: 120px;
}

.journey-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
        "suppliers stock recipes"
        "ingredients stock recipes"
        "pricing batches products"
        "labels sales dashboard";
    gap: 34px 58px;
    margin-top: 40px;
    padding: 18px 0 8px;
}

.journey-card {
    position: relative;
    z-index: 2;
    min-height: 142px;
    display: grid;
    gap: 9px;
    justify-items: center;
    align-content: center;
    text-align: center;
    padding: 8px;
    opacity: 0.9;
    transform: scale(1);
    transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
    will-change: transform;
}

.journey-card:focus {
    outline: 3px solid #98c5e4;
    outline-offset: 3px;
    border-radius: 8px;
}

.journey-card::after {
    display: none;
}

.journey-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.journey-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.4;
    max-width: 220px;
}

.journey-card:hover,
.journey-card:focus,
.journey-card:focus-within {
    opacity: 1;
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 14px 20px rgba(31, 41, 51, 0.14));
}

.suppliers { grid-area: suppliers; }
.ingredients { grid-area: ingredients; }
.stock { grid-area: stock; }
.recipes { grid-area: recipes; }
.products { grid-area: products; }
.batches { grid-area: batches; }
.pricing { grid-area: pricing; }
.labels { grid-area: labels; }
.sales { grid-area: sales; }
.dashboard { grid-area: dashboard; }

.journey-pipe {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.pipe-casing,
.pipe-water {
    fill: none;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pipe-casing {
    stroke: #b8d4df;
    stroke-width: 8;
    opacity: 0.52;
}

.pipe-branch {
    stroke-width: 7;
}

.pipe-water {
    stroke: #2aa7c8;
    stroke-width: 4;
    stroke-dasharray: 18 300;
    stroke-dashoffset: 0;
    opacity: 0;
}

.journey-map.is-animating .pipe-water {
    opacity: 0.95;
    animation: waterTravel 14s linear infinite;
}

.journey-map.is-animating .journey-card {
    animation: journeySpotlight 14s ease-in-out infinite;
}

.journey-map.is-animating .journey-card[data-step="2"] { animation-delay: 1.35s; }
.journey-map.is-animating .journey-card[data-step="3"] { animation-delay: 2.7s; }
.journey-map.is-animating .journey-card[data-step="4"] { animation-delay: 4.05s; }
.journey-map.is-animating .journey-card[data-step="5"] { animation-delay: 5.4s; }
.journey-map.is-animating .journey-card[data-step="6"] { animation-delay: 6.75s; }
.journey-map.is-animating .journey-card[data-step="7"] { animation-delay: 8.1s; }
.journey-map.is-animating .journey-card[data-step="8"] { animation-delay: 9.45s; }
.journey-map.is-animating .journey-card[data-step="9"] { animation-delay: 10.8s; }

@keyframes journeySpotlight {
    0%, 9% {
        opacity: 1;
        transform: scale(1.12) translateY(-6px);
        filter: drop-shadow(0 18px 24px rgba(31, 41, 51, 0.16));
    }
    13%, 100% {
        opacity: 0.9;
        transform: scale(1);
        filter: none;
    }
}

@keyframes waterTravel {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -318; }
}

.mini-graphic {
    width: 74px;
    height: 74px;
    position: relative;
    border-radius: 12px;
    background: var(--blue-soft);
    box-shadow: 0 16px 26px rgba(31, 41, 51, 0.12);
}

.mini-graphic span {
    position: absolute;
    display: block;
    border-radius: 4px;
}

.graphic-suppliers span:nth-child(1) { width: 34px; height: 22px; left: 10px; top: 20px; background: #d8eaf7; }
.graphic-suppliers span:nth-child(2) { width: 18px; height: 18px; left: 12px; top: 10px; background: #2aa77f; border-radius: 50%; }
.graphic-suppliers span:nth-child(3) { width: 18px; height: 6px; right: 8px; top: 13px; background: #8dd7c4; }

.graphic-ingredients { background: #fff2d8; }
.graphic-ingredients span:nth-child(1) { width: 20px; height: 35px; left: 9px; top: 14px; background: #d2a154; border-radius: 6px 6px 3px 3px; }
.graphic-ingredients span:nth-child(2) { width: 23px; height: 30px; right: 9px; top: 19px; background: #bfe6d8; }
.graphic-ingredients span:nth-child(3) { width: 28px; height: 9px; left: 15px; top: 9px; background: #e6be70; }

.graphic-stock { background: #fff3d9; }
.graphic-stock span:nth-child(1) { width: 25px; height: 22px; left: 10px; top: 14px; background: #f2b84b; }
.graphic-stock span:nth-child(2) { width: 26px; height: 22px; right: 9px; bottom: 11px; background: #ffd071; }
.graphic-stock span:nth-child(3) { width: 20px; height: 8px; right: 11px; top: 12px; background: #c7d2dc; }

.graphic-recipes span:nth-child(1) { width: 34px; height: 38px; left: 12px; top: 10px; background: #d8f1ea; }
.graphic-recipes span:nth-child(2) { width: 25px; height: 5px; left: 17px; top: 18px; background: #5ec5ad; }
.graphic-recipes span:nth-child(3) { width: 18px; height: 5px; left: 17px; top: 30px; background: #8dd7c4; }

.graphic-products { background: #fff2d8; }
.graphic-products span:nth-child(1) { width: 36px; height: 36px; left: 11px; top: 12px; background: #f6c15b; }
.graphic-products span:nth-child(2) { width: 4px; height: 36px; left: 27px; top: 12px; background: #2aa77f; }
.graphic-products span:nth-child(3) { width: 36px; height: 4px; left: 11px; top: 27px; background: #df9e35; }

.graphic-batches span:nth-child(1) { width: 16px; height: 16px; left: 9px; top: 23px; background: #f2b84b; }
.graphic-batches span:nth-child(2) { width: 16px; height: 16px; left: 29px; top: 23px; background: #8dd7c4; }
.graphic-batches span:nth-child(3) { width: 16px; height: 16px; right: 0; top: 23px; background: #2aa77f; }

.graphic-pricing { background: #fff2d8; }
.graphic-pricing span:nth-child(1) { width: 38px; height: 28px; left: 9px; top: 15px; background: #ffc86b; border-radius: 4px; }
.graphic-pricing span:nth-child(2) { width: 8px; height: 8px; left: 13px; top: 25px; background: white; border-radius: 50%; }
.graphic-pricing span:nth-child(3) { width: 14px; height: 4px; right: 10px; top: 27px; background: #9b6b1f; }

.graphic-labels span:nth-child(1) { width: 38px; height: 28px; left: 10px; top: 16px; background: #d8f1ea; }
.graphic-labels span:nth-child(2) { width: 17px; height: 17px; left: 16px; top: 22px; background: #1d695b; border-radius: 1px; }
.graphic-labels span:nth-child(3) { width: 15px; height: 5px; right: 11px; top: 23px; background: #8dd7c4; }

.graphic-sales span:nth-child(1) { width: 34px; height: 12px; left: 12px; top: 17px; background: #2aa77f; border-radius: 50%; }
.graphic-sales span:nth-child(2) { width: 34px; height: 12px; left: 12px; top: 28px; background: #8dd7c4; border-radius: 50%; }
.graphic-sales span:nth-child(3) { width: 34px; height: 12px; left: 12px; top: 39px; background: #bfe6d8; border-radius: 50%; }

.graphic-dashboard span:nth-child(1) { width: 8px; height: 26px; left: 14px; bottom: 12px; background: #8dd7c4; }
.graphic-dashboard span:nth-child(2) { width: 8px; height: 38px; left: 28px; bottom: 12px; background: #2aa77f; }
.graphic-dashboard span:nth-child(3) { width: 8px; height: 24px; right: 13px; bottom: 12px; background: #8dd7c4; }

.price-strip {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: center;
    border: 1px solid #c9dff0;
    border-radius: 8px;
    background: var(--blue-soft);
    padding: clamp(22px, 4vw, 34px);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
}

.compact-media img {
    max-height: 360px;
    object-fit: contain;
    background: #f8fafc;
}

.price-strip h2,
.price-strip p {
    margin-bottom: 0;
}

.price-strip > p {
    color: var(--ink);
    font-size: 1.05rem;
}

.final-cta {
    text-align: center;
}

.final-cta .copy,
.final-cta .actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-list li {
    padding: 10px 0 10px 26px;
    position: relative;
    color: var(--muted);
    border-bottom: 1px solid #edf1f4;
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 4px;
    top: 19px;
}

.page-hero {
    background: var(--soft-green);
    padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.page-hero .inner {
    max-width: 900px;
}

.features-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #eef6fb 0%, #f8fbff 58%, #f6f8fb 100%);
}

.feature-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.feature-overview span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid #c9dff0;
    border-radius: 6px;
    background: white;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 700;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
    margin-top: 34px;
}

.module-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: white;
}

.module-card img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(31, 41, 51, 0.12));
}

.module-card h3 {
    margin-bottom: 7px;
}

.module-card p {
    margin: 0 0 13px;
    color: var(--muted);
}

.module-card ul {
    margin: 0;
    padding-left: 18px;
}

.module-card li {
    margin: 5px 0;
    color: var(--ink);
}

.module-blue {
    background: linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
    border-color: #c9dff0;
}

.module-green {
    background: linear-gradient(180deg, #ffffff 0%, #eef8f4 100%);
    border-color: #cbe6da;
}

.module-amber {
    background: linear-gradient(180deg, #ffffff 0%, #fff6e6 100%);
    border-color: #f1d6a8;
}

.feature-summary {
    max-width: 880px;
}

.notice {
    border-left: 4px solid var(--blue);
    background: #eef6fb;
    padding: 16px 18px;
    color: var(--ink);
    margin: 22px 0;
}

.price-box {
    max-width: 680px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: white;
}

.price {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    margin: 14px 0;
}

.form-grid {
    display: grid;
    gap: 14px;
    max-width: 720px;
}

label {
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 11px 12px;
    font: inherit;
}

textarea {
    min-height: 150px;
}

.legal {
    max-width: 900px;
}

.legal h2 {
    font-size: 24px;
    margin-top: 32px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #f8faf9;
}

.site-footer p {
    margin: 4px 0 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 860px) {
    .site-header,
    .site-footer {
        align-items: center;
        flex-direction: row;
    }

    .brand small {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 46px;
        padding-bottom: 52px;
    }

    .grid,
    .grid.two,
    .trust-row,
    .feature-list,
    .module-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        grid-template-columns: 86px 1fr;
        min-height: auto;
        padding: 18px;
    }

    .module-card img {
        width: 82px;
        height: 82px;
    }

    .hero-media-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .hero-media-caption span {
        text-align: left;
    }

    .journey-map {
        grid-template-columns: 1fr;
        grid-template-areas:
            "suppliers"
            "ingredients"
            "stock"
            "recipes"
            "products"
            "batches"
            "pricing"
            "labels"
            "sales"
            "dashboard";
        gap: 18px;
        padding-left: 0;
        padding-right: 0;
    }

    .journey-pipe {
        display: none;
    }

    .journey-map::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 34px;
        bottom: 34px;
        width: 7px;
        border-radius: 999px;
        background: #b8d4df;
        opacity: 0.42;
        transform: translateX(-50%);
        pointer-events: none;
        z-index: 0;
    }

    .price-strip {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (hover: hover) and (pointer: fine) {
    .journey-card p {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 160ms ease, opacity 160ms ease;
    }

    .journey-card:hover p,
    .journey-card:focus p,
    .journey-card:focus-within p {
        max-height: 90px;
        opacity: 1;
    }
}

@media (max-width: 860px), (hover: none), (pointer: coarse) {
    .journey-card p {
        max-height: none;
        overflow: visible;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jnode {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .cap {
        opacity: 1;
    }

    .water,
    .sheen {
        display: none;
    }

    .journey-map.is-animating .pipe-water,
    .journey-map.is-animating .journey-card {
        animation: none;
    }

    .pipe-water {
        display: none;
    }

    .journey-card {
        opacity: 1;
        transition: none;
    }
}
