/* =============================================================================
   Venture site — design system
   -----------------------------------------------------------------------------
   One stylesheet, no build step, no CDN. Structure:
     1. Brand tokens      ← the only block you normally edit per venture
     2. Derived tokens    ← spacing, type scale, radii (leave alone)
     3. Reset & base
     4. Layout
     5. Typography
     6. Components
     7. Forms
     8. Utilities & motion
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. BRAND TOKENS — edit these ~15 lines, the rest of the system follows
   -------------------------------------------------------------------------- */
:root {
    --brand: #356277;
    /* primary brand colour: buttons, links, dark bands   */
    --brand-strong: #24475a;
    /* hover / deeper band                                */
    --brand-soft: #eef3f6;
    /* tinted surfaces, badges                            */
    --accent: #689ab1;
    /* sparingly: highlights, "popular" tier              */
    --ink: #101820;
    /* body text                                          */
    --ink-muted: #56606b;
    /* secondary text                                     */
    --surface: #ffffff;
    /* page background                                    */
    --surface-alt: #f6f8f9;
    /* alternating section background                     */
    --border: #dfe5e9;
    /* hairlines, card outlines                           */
    --font-display: 'Display', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Body', system-ui, -apple-system, sans-serif;
    --radius: 14px;
    --wrap: 1120px;
    /* max content width                                  */
}

/* -----------------------------------------------------------------------------
   2. DERIVED TOKENS — computed from the block above
   -------------------------------------------------------------------------- */
:root {
    --on-brand: #ffffff;
    --on-brand-muted: rgba(255, 255, 255, .82);
    --hairline-on-brand: rgba(255, 255, 255, .18);
    --surface-on-brand: rgba(255, 255, 255, .07);

    --shadow-sm: 0 1px 2px rgba(16, 24, 32, .06), 0 2px 8px rgba(16, 24, 32, .04);
    --shadow-md: 0 4px 12px rgba(16, 24, 32, .08), 0 12px 32px rgba(16, 24, 32, .08);
    --shadow-lg: 0 12px 32px rgba(16, 24, 32, .12), 0 32px 64px rgba(16, 24, 32, .12);

    /* Fluid type scale: min at 360px, max at 1280px viewport */
    --step-xs: .8125rem;
    --step-sm: .9375rem;
    --step-0: clamp(1rem, .96rem + .2vw, 1.125rem);
    --step-1: clamp(1.125rem, 1.05rem + .35vw, 1.3125rem);
    --step-2: clamp(1.375rem, 1.2rem + .8vw, 1.75rem);
    --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.5rem);
    --step-4: clamp(2.125rem, 1.6rem + 2.4vw, 3.5rem);

    --space-1: .5rem;
    --space-2: .75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4rem;
    --space-8: 6rem;

    color-scheme: light;
}

/* -----------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand);
    text-underline-offset: .18em;
}

a:hover {
    color: var(--brand-strong);
}

:focus-visible {
    /* The accent sits close to the brand blue, so the focus ring uses the darker
       tone — it has to be visible on white and on tinted surfaces alike. */
    outline: 3px solid var(--brand-strong);
    outline-offset: 2px;
    border-radius: 4px;
}

hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: var(--space-6) 0;
}

/* -----------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.wrap--narrow {
    max-width: 760px;
}

.section {
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section--tight {
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

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

.section--brand {
    background: var(--brand);
    color: var(--on-brand);
}

.section--deep {
    background: var(--brand-strong);
    color: var(--on-brand);
}

.section--brand a:not(.btn),
.section--deep a:not(.btn) {
    color: var(--on-brand);
}

.section--brand h2,
.section--deep h2,
.section--brand h3,
.section--deep h3 {
    color: var(--on-brand);
}

.section--brand .lede,
.section--deep .lede,
.section--brand .muted,
.section--deep .muted {
    color: var(--on-brand-muted);
}

.grid {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 960px) {
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .grid--split {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: var(--space-6);
    }

    .grid--aside {
        grid-template-columns: 2fr 3fr;
        align-items: start;
        gap: var(--space-6);
    }
}

.stack>*+* {
    margin-top: var(--space-3);
}

.stack-lg>*+* {
    margin-top: var(--space-5);
}

/* -----------------------------------------------------------------------------
   5. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 var(--space-3);
    letter-spacing: -.015em;
    text-wrap: balance;
}

h1 {
    font-size: var(--step-4);
}

h2 {
    font-size: var(--step-3);
}

h3 {
    font-size: var(--step-2);
}

h4 {
    font-size: var(--step-1);
}

p {
    margin: 0 0 var(--space-3);
}

.eyebrow {
    font-size: var(--step-xs);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: var(--space-2);
}

.section--brand .eyebrow,
.section--deep .eyebrow {
    color: var(--on-brand-muted);
}

.lede {
    font-size: var(--step-1);
    color: var(--ink-muted);
    max-width: 62ch;
}

.muted {
    color: var(--ink-muted);
}

.small {
    font-size: var(--step-sm);
}

.prose {
    max-width: 72ch;
}

/* Legal documents read better with a quieter hierarchy than a landing page. */
.prose h2 {
    font-size: var(--step-2);
    margin-top: var(--space-6);
}

.prose h3 {
    font-size: var(--step-1);
}

.prose h3+p {
    margin-top: var(--space-2);
}

.prose ul,
.prose ol {
    padding-left: 1.25rem;
}

.prose li+li {
    margin-top: .35rem;
}

/* -----------------------------------------------------------------------------
   6. COMPONENTS
   -------------------------------------------------------------------------- */

/* Skip link — first focusable element on every page */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--brand);
    color: var(--on-brand);
    padding: .75rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    min-height: 4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    font-size: var(--step-1);
}

.brand img {
    height: 2rem;
    width: auto;
}

.nav {
    display: none;
    gap: var(--space-5);
    font-size: var(--step-sm);
    font-weight: 600;
}

.nav a {
    color: var(--ink-muted);
    text-decoration: none;
}

.nav a:hover {
    color: var(--brand);
}

@media (min-width: 860px) {
    .nav {
        display: flex;
        align-items: center;
    }
}

/* Buttons — min 44px tap target on every breakpoint */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 2.75rem;
    padding: .75rem 1.4rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: var(--step-0);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: var(--brand);
    color: var(--on-brand);
}

.btn--primary:hover {
    background: var(--brand-strong);
    color: var(--on-brand);
}

.btn--ghost {
    background: transparent;
    color: var(--brand);
    border-color: var(--border);
}

.btn--ghost:hover {
    border-color: var(--brand);
    color: var(--brand-strong);
}

.btn--on-brand {
    background: var(--surface);
    color: var(--brand);
}

.btn--on-brand:hover {
    background: var(--brand-soft);
    color: var(--brand-strong);
}

.btn--outline-brand {
    background: transparent;
    color: var(--on-brand);
    border-color: var(--hairline-on-brand);
}

.btn--outline-brand:hover {
    background: var(--surface-on-brand);
    color: var(--on-brand);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
}

/* Hero */
.hero {
    background:
        radial-gradient(1200px 500px at 15% -10%, var(--brand-soft), transparent 60%),
        var(--surface);
    padding-block: clamp(3rem, 9vw, 6rem);
}

.hero h1 {
    max-width: 18ch;
}

.hero .lede {
    max-width: 54ch;
}

.hero__visual {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}

.trust-line {
    font-size: var(--step-sm);
    color: var(--ink-muted);
    margin-top: var(--space-3);
}

/* Stat bar */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    list-style: none;
    margin: 0;
    padding: 0;
}

.stat {
    text-align: center;
}

.stat__value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--step-3);
    color: var(--brand);
    line-height: 1.1;
}

.section--brand .stat__value,
.section--deep .stat__value {
    color: var(--on-brand);
}

.stat__label {
    font-size: var(--step-xs);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-muted);
}

.section--brand .stat__label,
.section--deep .stat__label {
    color: var(--on-brand-muted);
}

/* Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.card h3 {
    margin-bottom: var(--space-2);
}

.card p:last-child {
    margin-bottom: 0;
}

.section--brand .card,
.section--deep .card {
    background: var(--surface-on-brand);
    border-color: var(--hairline-on-brand);
    box-shadow: none;
    color: var(--on-brand-muted);
}

.card--flat {
    box-shadow: none;
}

/* Icons — inline Lucide glyphs (lucide.dev, ISC licence) sitting in a tinted
   square. The SVG inherits currentColor, so an icon works on light and dark
   sections without a second copy. */
.ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: calc(var(--radius) - 4px);
    background: var(--brand-soft);
    color: var(--brand);
    margin-bottom: var(--space-3);
}

.ico svg {
    width: 1.375rem;
    height: 1.375rem;
}

.section--brand .ico,
.section--deep .ico,
.panel-brand .ico {
    background: var(--surface-on-brand);
    color: var(--on-brand);
}

/* Card head: icon left, status badge right — used where a card carries both. */
.card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.card__head .ico {
    margin-bottom: 0;
}

/* Numbered steps */
.step__number {
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 800;
    opacity: .45;
    line-height: 1;
    margin-bottom: var(--space-2);
}

/* Badge / pill */
.badge {
    display: inline-block;
    padding: .25rem .7rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-strong);
    font-size: var(--step-xs);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
}

.checklist li+li {
    margin-top: .6rem;
}

.checklist li::before {
    content: "→";
    color: var(--brand);
    font-weight: 700;
    flex: none;
}

.checklist--no li::before {
    content: "×";
    color: var(--ink-muted);
}

.section--brand .checklist li::before,
.section--deep .checklist li::before {
    color: var(--on-brand);
}

/* Quote / testimonial */
.quote {
    border-left: 3px solid var(--brand);
    padding-left: var(--space-4);
    font-size: var(--step-1);
}

.quote cite {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--step-sm);
    font-style: normal;
    color: var(--ink-muted);
}

/* Pricing */
.price {
    font-family: var(--font-display);
    font-size: var(--step-3);
    font-weight: 800;
    line-height: 1;
}

.price small {
    font-family: var(--font-body);
    font-size: var(--step-sm);
    font-weight: 400;
    color: var(--ink-muted);
}

.card--featured {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    position: relative;
}

/* FAQ — details/summary, no JS */
.faq {
    border-top: 1px solid var(--border);
}

.section--brand .faq,
.section--deep .faq {
    border-color: var(--hairline-on-brand);
}

.faq details {
    border-bottom: 1px solid var(--border);
    padding: var(--space-3) 0;
}

.section--brand .faq details,
.section--deep .faq details {
    border-color: var(--hairline-on-brand);
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--step-1);
    list-style: none;
    min-height: 2.75rem;
}

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

.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    line-height: 1;
    transition: transform .2s ease;
    flex: none;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details>p {
    margin: var(--space-2) 0 0;
    max-width: 68ch;
}

/* Footer */
.site-footer {
    background: var(--brand-strong);
    color: var(--on-brand-muted);
    padding-block: var(--space-6) var(--space-4);
}

.site-footer a {
    color: var(--on-brand-muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--on-brand);
}

.site-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: space-between;
    align-items: center;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--step-sm);
}

.site-footer__legal {
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--hairline-on-brand);
    font-size: var(--step-xs);
    color: var(--on-brand-muted);
}

/* Language switch on the bilingual legal pages */
.lang-switch {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.lang-switch a {
    padding: .4rem .9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: var(--step-sm);
    font-weight: 600;
    text-decoration: none;
}

.lang-switch a[aria-current="true"] {
    background: var(--brand);
    color: var(--on-brand);
    border-color: var(--brand);
}

/* -----------------------------------------------------------------------------
   7. FORMS
   -------------------------------------------------------------------------- */
.form {
    display: grid;
    gap: var(--space-3);
}

.field>span {
    display: block;
    font-size: var(--step-sm);
    font-weight: 600;
    margin-bottom: .3rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: .7rem .9rem;
    font: inherit;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 6px);
}

.field textarea {
    min-height: 8rem;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand);
    outline: 3px solid var(--brand-soft);
    outline-offset: 0;
}

.field--honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    font-size: var(--step-sm);
    color: var(--ink-muted);
}

/* Inline form feedback (progressive enhancement, see assets/js/form.js) */
.form-status {
    border-radius: calc(var(--radius) - 6px);
    padding: var(--space-3);
    font-size: var(--step-sm);
    border: 1px solid var(--border);
    background: var(--surface-alt);
}

.form-status[hidden] {
    display: none;
}

.form-status--ok {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand-strong);
}

.form-status--error {
    border-color: #c0392b;
    background: #fdecea;
    color: #8e2a20;
}

.form-status ul {
    margin: .4rem 0 0;
    padding-left: 1.1rem;
}

/* -----------------------------------------------------------------------------
   8. UTILITIES & MOTION
   -------------------------------------------------------------------------- */
.center {
    text-align: center;
}

/* Inline style attributes would be blocked by the Content-Security-Policy the
   service sends (style-src 'self'), so every one-off tweak lives here. */
.list-plain {
    list-style: none;
    padding: 0;
}

.btn-row--center {
    justify-content: center;
}

.brand--on-dark {
    color: var(--on-brand);
}


.center .lede,
.center .checklist {
    margin-inline: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mb-0 {
    margin-bottom: 0;
}

.full {
    width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll-reveal: opt-in via .rise, degrades to visible without JS */
.rise {
    opacity: 1;
}

.js .rise {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}

.js .rise.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }

    .js .rise {
        opacity: 1;
        transform: none;
    }
}

@media print {

    .site-header,
    .site-footer,
    .btn {
        display: none;
    }
}

/* =============================================================================
   9. SITE-SPECIFIC — lean.codes only.
   Everything above this line is the shared template and should stay in sync
   with clean-website-template/site/assets/css/site.css. Anything this site
   needs on top lives here, so a diff between the two files stays readable.
   ========================================================================== */

/* The wordmark in the header carries the brand blue; the mark next to it and
   the nav stay neutral so the name is the one coloured element up there. */
.site-header .brand {
    color: var(--brand-strong);
}

/* Hero with the road photograph behind it. It fills roughly three quarters of
   the viewport, and the overlay is kept as light as the type allows: the
   photograph's brightest 1% sits around L=157, so a .34 veil still leaves white
   headings above 5:1 contrast. */
.hero--photo {
    background:
        linear-gradient(rgba(16, 24, 32, .34), rgba(16, 24, 32, .34)),
        url('../img/hero-road.jpg?v=dc67b749') center / cover no-repeat;
    color: var(--on-brand);
    min-height: 76vh;
    min-height: 76svh;
    display: flex;
    align-items: center;
}

.hero--photo>.wrap {
    width: 100%;
}

.hero--photo h1,
.hero--photo .eyebrow {
    color: var(--on-brand);
}

.hero--photo .lede,
.hero--photo .trust-line {
    color: var(--on-brand-muted);
}

.hero--photo h1 {
    max-width: 22ch;
    margin-inline: auto;
}

.hero--photo .lede {
    margin-inline: auto;
}

/* White card carrying the proof numbers, overlapping the photo. It borrows
   .wrap--narrow for its width but is not a .wrap, so it needs its own centring. */
.stat-card {
    margin-inline: auto;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: var(--space-5) var(--space-4);
    margin-top: var(--space-6);
}

/* Case studies: coloured head band plus three labelled columns. */
.case {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.case__head {
    background: var(--brand);
    color: var(--on-brand);
    padding: var(--space-4);
}

.case__head h3 {
    color: var(--on-brand);
    margin-bottom: .25rem;
}

.case__head p {
    margin: 0;
    font-size: var(--step-xs);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-brand-muted);
}

.case__cols {
    display: grid;
    grid-template-columns: 1fr;
}

.case__cols>div {
    padding: var(--space-4);
    border-top: 1px solid var(--border);
}

@media (min-width: 860px) {
    .case__cols {
        grid-template-columns: repeat(3, 1fr);
    }

    .case__cols>div {
        border-top: 0;
        border-left: 1px solid var(--border);
    }

    .case__cols>div:first-child {
        border-left: 0;
    }
}

.case__label {
    font-size: var(--step-xs);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: .5rem;
}

/* Compact tiles for the list of built systems. */
.tile {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: var(--surface-on-brand);
    border: 1px solid var(--hairline-on-brand);
    border-radius: var(--radius);
    padding: var(--space-3) var(--space-4);
}

.tile .ico {
    /* The shared .ico tint is barely visible on the already-light tile surface,
       so the dark section gets a stronger one. */
    margin-bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, .14);
    color: var(--on-brand);
}

.tile .ico svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tile h3 {
    font-size: var(--step-1);
    margin-bottom: .2rem;
    color: var(--on-brand);
}

.tile p {
    margin: 0;
    font-size: var(--step-xs);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-brand-muted);
}

/* Founder portrait. */
.portrait {
    border-radius: var(--radius);
    border: 1px solid var(--hairline-on-brand);
    box-shadow: var(--shadow-md);
    width: 100%;
}

/* Brand-coloured panel used inside a white section (the "see what we built" box). */
.panel-brand {
    background: var(--brand);
    color: var(--on-brand);
    border-radius: var(--radius);
    padding: var(--space-5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-brand h3 {
    color: var(--on-brand);
}

.panel-brand p {
    color: var(--on-brand-muted);
    flex: 1;
}

