:root {
    --green-deep: #234b43;
    --green: #3f7568;
    --green-light: #dfece7;
    --blue: #376480;
    --blue-deep: #294b60;
    --blue-light: #e4edf2;
    --cream: #faf9f5;
    --sand: #f3f0e9;
    --white: #ffffff;
    --text: #243036;
    --muted: #5f6c70;
    --line: #d7dedb;
    --success: #2c6958;
    --danger: #94483d;
    --shadow: 0 16px 38px rgba(35, 75, 67, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 11px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream);
    font-family: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--blue);
    text-decoration-color: rgba(55, 100, 128, .42);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--green-deep);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--green-deep);
    color: white;
    z-index: 1000;
}

.skip-link:focus {
    top: 14px;
}

.sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 245, .94);
    border-bottom: 1px solid rgba(35, 75, 67, .09);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green-deep);
    text-decoration: none;
}

.brand-text {
    display: grid;
    line-height: 1.15;
    gap: 4px;
}

.brand-name {
    font-size: 1.23rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--green-deep);
}

.brand-tag {
    color: var(--muted);
    font-size: .77rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 23px;
}

.site-nav > a:not(.button) {
    font-size: .96rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}

.site-nav > a:not(.button):hover {
    color: var(--green);
}

.site-nav > a[aria-current="page"],
.nav-more.is-current .nav-more-toggle,
.nav-more-menu a[aria-current="page"] {
    color: var(--green);
}

.nav-more {
    position: relative;
}

.nav-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: .96rem;
    font-weight: 600;
    cursor: pointer;
}

.nav-more-toggle:hover,
.nav-more.open .nav-more-toggle {
    color: var(--green);
}

.nav-caret {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease;
}

.nav-more.open .nav-caret {
    margin-top: 4px;
    transform: rotate(225deg);
}

.nav-more-menu {
    display: none;
    position: absolute;
    top: calc(100% + 17px);
    right: -14px;
    z-index: 120;
    width: max-content;
    min-width: 205px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-more.open .nav-more-menu {
    display: grid;
    gap: 3px;
}

.nav-more-menu a {
    padding: 11px 13px;
    border-radius: 8px;
    color: var(--text);
    font-size: .94rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.nav-more-menu a:hover {
    color: var(--green);
    background: var(--green-light);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 10px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--green-deep);
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 23px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 650;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.button-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 10px 20px rgba(63, 117, 104, .18);
}

.button-primary:hover {
    color: white;
    background: var(--green-deep);
    box-shadow: 0 14px 27px rgba(35, 75, 67, .22);
}

.button-secondary {
    background: var(--white);
    border-color: rgba(55, 100, 128, .25);
    color: var(--blue-deep);
}

.button-secondary:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    color: var(--blue-deep);
}

.button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.nav-cta {
    min-height: 46px;
    padding-inline: 21px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 55%;
    height: 100%;
    background:
        radial-gradient(circle at 60% 30%, rgba(55, 100, 128, .14), transparent 46%),
        radial-gradient(circle at 45% 62%, rgba(63, 117, 104, .14), transparent 54%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 62px;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: .78rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 750;
}

.hero h1 {
    margin: 0 0 24px;
    max-width: 650px;
    color: var(--green-deep);
    font-size: clamp(2.65rem, 4.65vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.hero-lead {
    margin: 0 0 34px;
    max-width: 605px;
    font-size: 1.13rem;
    color: var(--muted);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.play-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: relative;
    background: var(--blue-light);
}

.play-dot::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 11px;
    border-left: 9px solid var(--blue);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.credibility-line {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: .94rem;
    padding-left: 18px;
    border-left: 3px solid var(--green-light);
}

.photo-card {
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    background: white;
    border: 1px solid rgba(35, 75, 67, .08);
}

.photo-card img {
    width: 100%;
    height: min(520px, 46vw);
    min-height: 390px;
    object-fit: cover;
}

.photo-card figcaption {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    font-size: .91rem;
    color: var(--muted);
}

.status-pill {
    flex: 0 0 auto;
    display: inline-flex;
    padding: 5px 11px;
    color: var(--green-deep);
    background: var(--green-light);
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 700;
}

.section {
    padding: 86px 0;
}

.split-grid {
    display: grid;
    grid-template-columns: .93fr 1.07fr;
    align-items: center;
    gap: 68px;
}

.problem {
    background: var(--sand);
}

.image-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-panel img {
    height: 440px;
    width: 100%;
    object-fit: cover;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.policy-card h1 {
    color: var(--green-deep);
    letter-spacing: -.045em;
    line-height: 1.15;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    margin: 0 0 20px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
    color: var(--muted);
    margin: 0;
    max-width: 710px;
    font-size: 1.04rem;
}

.pain-points {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 15px;
}

.pain-points li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
    font-weight: 550;
}

.pain-points li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 3px;
    width: 14px;
    height: 14px;
    border: 2px solid var(--blue);
    border-radius: 50%;
}

.centered {
    text-align: center;
    max-width: 770px;
    margin: 0 auto 52px;
}

.centered > p:not(.eyebrow) {
    margin-inline: auto;
}

.workflow {
    background: var(--cream);
}

.workflow-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.workflow-steps::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--green), var(--green-light));
}

.step-card {
    position: relative;
    background: white;
    border: 1px solid rgba(35, 75, 67, .10);
    border-radius: var(--radius-md);
    padding: 27px 23px 24px;
    min-height: 224px;
}

.step-number {
    position: relative;
    display: inline-flex;
    height: 33px;
    min-width: 46px;
    padding-inline: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 750;
    font-size: .83rem;
    z-index: 1;
}

.step-card:last-child .step-number {
    background: var(--green-light);
    color: var(--green-deep);
}

.step-card h3 {
    margin: 24px 0 9px;
    color: var(--green-deep);
    font-size: 1.28rem;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
}

.videos {
    background: #f1f5f4;
}

.featured-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.video-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(35, 75, 67, .09);
    box-shadow: 0 8px 26px rgba(35, 75, 67, .05);
}

.video-thumbnail {
    display: block;
    position: relative;
    border: 0;
    padding: 0;
    width: 100%;
    background: var(--blue-light);
}

.video-thumbnail img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.video-play {
    position: absolute;
    left: 28px;
    bottom: 24px;
    height: 62px;
    width: 62px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(36, 48, 54, .18);
}

.video-play::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 26px;
    border-left: 18px solid var(--green);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.video-card-body {
    padding: 28px 29px 31px;
}

.audience {
    margin: 0 0 8px;
    font-size: .76rem;
    color: var(--green);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 750;
}

.video-card h3,
.deep-dive h3 {
    margin: 0 0 4px;
    color: var(--green-deep);
    font-size: 1.5rem;
    letter-spacing: -.025em;
}

.runtime {
    color: var(--blue);
    font-size: .89rem;
    font-weight: 650;
    margin: 0 0 17px;
}

.video-card-body > p:not(.audience):not(.runtime),
.deep-dive > div > p:not(.audience):not(.runtime) {
    color: var(--muted);
    margin-bottom: 23px;
}

.text-action {
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--green);
    font-weight: 700;
}

.text-action:hover {
    color: var(--green-deep);
}

.deep-dive {
    margin-top: 26px;
    padding: 31px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: var(--white);
    border: 1px solid rgba(55, 100, 128, .12);
    border-radius: var(--radius-md);
}

.deep-dive > div > p:last-child {
    margin: 0;
    max-width: 670px;
}

.audiences {
    background: var(--cream);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audience-grid article {
    min-height: 205px;
    padding: 32px 29px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid rgba(35, 75, 67, .10);
}

.audience-grid article:nth-child(2) {
    background: var(--blue-light);
    border-color: transparent;
}

.audience-grid article:nth-child(3) {
    background: var(--green-light);
    border-color: transparent;
}

.audience-grid h3 {
    margin: 0 0 14px;
    color: var(--green-deep);
    font-size: 1.35rem;
}

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

.trust {
    background: var(--green-deep);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 68px;
    align-items: start;
}

.trust .eyebrow {
    color: #8ccbbb;
}

.trust .section-copy h2 {
    color: white;
}

.trust .section-copy > p:not(.eyebrow) {
    color: rgba(255,255,255,.75);
}

.trust-points {
    display: grid;
    gap: 18px;
}

.trust-points div {
    padding: 23px 25px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.04);
}

.trust-points h3 {
    margin: 0 0 7px;
    font-size: 1.1rem;
}

.trust-points p {
    margin: 0;
    color: rgba(255,255,255,.69);
    font-size: .94rem;
}

.credibility {
    padding: 66px 0;
    background: var(--sand);
}

.credibility-card {
    padding: 44px 50px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 54px;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(35, 75, 67, .08);
}

.credibility-card h2 {
    margin: 0;
    color: var(--green-deep);
    line-height: 1.16;
    letter-spacing: -.04em;
    font-size: clamp(1.75rem, 2.9vw, 2.3rem);
}

.credibility-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: start;
    gap: 64px;
}

.contact-copy {
    padding-top: 30px;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.contact-assurances {
    margin-top: 38px;
    display: grid;
    gap: 18px;
}

.contact-assurances p {
    margin: 0;
    padding-left: 19px;
    border-left: 3px solid var(--green-light);
    font-size: .95rem;
}

.contact-assurances strong {
    display: block;
    color: var(--green-deep);
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 37px 38px;
    border: 1px solid rgba(35, 75, 67, .09);
    box-shadow: var(--shadow);
}

.form-notice {
    padding: 14px 16px;
    margin-bottom: 25px;
    border-radius: var(--radius-sm);
    font-size: .93rem;
}

.form-notice.success {
    color: var(--success);
    background: #eaf3ef;
}

.form-notice.error {
    color: var(--danger);
    background: #f7edeb;
}

.contact-form {
    display: grid;
    gap: 21px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    font-size: .91rem;
    font-weight: 650;
    color: var(--green-deep);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    color: var(--text);
    background: #fcfcfa;
    border: 1px solid #cbd5d1;
    border-radius: 10px;
    padding: 12px 13px;
    transition: border .15s ease, box-shadow .15s ease;
}

.field textarea {
    resize: vertical;
    min-height: 128px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(55, 100, 128, .12);
}

.consent {
    display: flex;
    gap: 11px;
    color: var(--muted);
    font-size: .91rem;
    line-height: 1.45;
}

.consent input {
    flex: 0 0 auto;
    margin-top: 4px;
    accent-color: var(--green);
}

.submit-button {
    width: fit-content;
    min-width: 180px;
    margin-top: 5px;
}

.honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    color: rgba(255,255,255,.75);
    background: #1d3c36;
    padding: 50px 0 22px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    margin: 3px 0 0;
    font-size: .88rem;
    color: rgba(255,255,255,.63);
}

.footer-meta {
    text-align: right;
    font-size: .91rem;
}

.footer-meta p {
    margin: 0 0 10px;
}

.footer-meta a {
    color: rgba(255,255,255,.77);
}

.footer-bottom {
    padding-top: 19px;
    font-size: .86rem;
    color: rgba(255,255,255,.55);
}

.footer-bottom p {
    margin: 0;
}

.video-modal[aria-hidden="true"] {
    display: none;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 26px;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 30, .78);
}

.video-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    background: #10201f;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.40);
}

.video-modal-head {
    min-height: 63px;
    padding: 14px 18px 14px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.video-modal-head h2 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 600;
}

.modal-close {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    color: white;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(255,255,255,.10);
}

.video-frame {
    background: #000;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
}

.video-frame video {
    display: block;
    max-height: calc(100vh - 130px);
    width: 100%;
    height: 100%;
}

.video-error {
    color: white;
    margin: 0;
}

.policy-page {
    min-height: calc(100vh - 215px);
    padding: 68px 0;
    background: var(--cream);
}

.policy-card {
    max-width: 820px;
    padding: clamp(33px, 5vw, 60px);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid rgba(35, 75, 67, .09);
}

.policy-card h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.policy-effective {
    margin: 0 0 38px;
    color: var(--muted);
}

.policy-card h2 {
    margin: 30px 0 9px;
    color: var(--green-deep);
    font-size: 1.25rem;
}

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

.policy-note {
    padding: 18px 20px;
    margin: 35px 0 31px;
    border-left: 3px solid var(--blue);
    background: var(--blue-light);
}

.policy-footer {
    padding-top: 0;
}

@media (max-width: 960px) {
    .container {
        width: min(var(--container), calc(100% - 36px));
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 81px;
        left: 18px;
        right: 18px;
        padding: 17px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav > a:not(.button) {
        padding: 10px 12px;
    }

    .nav-more {
        display: flex;
        flex-direction: column;
    }

    .nav-more-toggle {
        display: none;
    }

    .nav-more-menu,
    .nav-more.open .nav-more-menu {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-more-menu a {
        padding: 10px 12px;
        border-radius: 0;
    }

    .nav-more-menu a:hover {
        background: transparent;
    }

    .hero {
        padding-top: 46px;
    }

    .hero-grid,
    .split-grid,
    .trust-grid,
    .credibility-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-visual {
        order: -1;
    }

    .photo-card img {
        height: min(500px, 66vw);
        min-height: 280px;
    }

    .split-grid .image-panel {
        order: 2;
    }

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

    .workflow-steps::before {
        display: none;
    }

    .featured-videos,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .credibility-card {
        padding: 36px 30px;
    }

    .contact-copy {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 28px);
    }

    .brand-tag {
        display: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .site-nav {
        top: 71px;
    }

    .hero {
        padding: 32px 0 54px;
    }

    .hero h1 {
        font-size: 2.28rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions .button {
        width: 100%;
    }

    .photo-card figcaption {
        display: block;
    }

    .status-pill {
        margin-bottom: 9px;
    }

    .section {
        padding: 58px 0;
    }

    .image-panel img {
        height: 300px;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: unset;
    }

    .video-thumbnail img {
        height: 215px;
    }

    .video-card-body {
        padding: 24px 22px 27px;
    }

    .deep-dive {
        display: block;
        padding: 26px 23px;
    }

    .deep-dive .button {
        width: 100%;
        margin-top: 24px;
    }

    .form-card {
        padding: 27px 20px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
    }

    .footer-inner {
        display: block;
    }

    .footer-meta {
        margin-top: 28px;
        text-align: left;
    }
}

/* Tutorial centre and support additions */
.site-nav > a[aria-current="page"]:not(.button) {
    color: var(--green);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.tutorial-preview {
    padding-top: 72px;
    padding-bottom: 72px;
    background: var(--blue-light);
}

.tutorial-preview-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 58px;
    padding: clamp(32px, 4.6vw, 52px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(55, 100, 128, .10);
    box-shadow: 0 12px 34px rgba(35, 75, 67, .06);
}

.tutorial-preview-copy h2,
.support-invite-card h2,
.library-hero h1,
.tutorial-growing-card h2,
.support-hero h1,
.tutorial-detail-heading h1 {
    margin: 0 0 17px;
    color: var(--green-deep);
    letter-spacing: -.045em;
    line-height: 1.13;
}

.tutorial-preview-copy h2,
.support-invite-card h2,
.tutorial-growing-card h2 {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.tutorial-preview-copy > p:not(.eyebrow),
.support-invite-card p:not(.eyebrow),
.tutorial-growing-card p:not(.eyebrow) {
    color: var(--muted);
    margin: 0;
}

.tutorial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.tutorial-preview-list {
    padding: 23px;
    border-radius: var(--radius-md);
    background: #f7faf9;
    border: 1px solid rgba(35, 75, 67, .08);
    display: grid;
    gap: 11px;
}

.library-count {
    margin: 0 0 5px;
    color: var(--blue);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.tutorial-preview-list a {
    display: block;
    padding: 15px 17px;
    border-radius: 13px;
    background: var(--white);
    text-decoration: none;
    border: 1px solid rgba(35, 75, 67, .08);
    transition: border-color .18s ease, transform .18s ease;
}

.tutorial-preview-list a:hover {
    transform: translateX(2px);
    border-color: rgba(63, 117, 104, .34);
}

.tutorial-preview-list span {
    display: block;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.tutorial-preview-list strong {
    display: block;
    margin-top: 3px;
    color: var(--green-deep);
}

.support-invite {
    padding-top: 0;
    padding-bottom: 74px;
    background: var(--cream);
}

.support-invite-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 38px;
    padding: 38px 46px;
    border-radius: var(--radius-lg);
    background: var(--sand);
    border: 1px solid rgba(35, 75, 67, .08);
}

.support-invite-card h2 {
    margin-bottom: 9px;
}

.support-invite-card p:last-child {
    max-width: 720px;
}

.library-hero,
.support-hero {
    padding: 68px 0;
    background: linear-gradient(115deg, var(--cream) 45%, var(--blue-light) 100%);
}

.library-hero-grid,
.support-hero-grid {
    display: grid;
    grid-template-columns: 1fr .54fr;
    gap: 56px;
    align-items: center;
}

.library-hero h1,
.support-hero h1 {
    font-size: clamp(2.35rem, 4.3vw, 3.5rem);
    max-width: 760px;
}

.library-hero-grid > div > p:not(.eyebrow),
.support-hero-grid > div > p:not(.eyebrow) {
    margin: 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 1.08rem;
}

.library-help-card,
.support-links-card,
.sidebar-card {
    padding: 29px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(35, 75, 67, .09);
    box-shadow: 0 12px 28px rgba(35, 75, 67, .05);
}

.library-help-card h2,
.support-links-card h2,
.sidebar-card h2 {
    margin: 0 0 10px;
    color: var(--green-deep);
    font-size: 1.3rem;
}

.library-help-card p,
.support-links-card p,
.sidebar-card p {
    margin: 0 0 23px;
    color: var(--muted);
    font-size: .95rem;
}

.tutorial-library {
    background: var(--cream);
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-bar a {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(55, 100, 128, .18);
    background: var(--white);
    color: var(--blue-deep);
    font-weight: 650;
    text-decoration: none;
}

.filter-bar a.active,
.filter-bar a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.tutorial-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(35, 75, 67, .09);
    display: flex;
    flex-direction: column;
}

.tutorial-poster {
    position: relative;
    display: block;
    background: var(--blue-light);
}

.tutorial-poster img {
    height: 205px;
    width: 100%;
    object-fit: cover;
}

.tutorial-poster .video-play {
    width: 51px;
    height: 51px;
    bottom: 16px;
    left: 18px;
}

.tutorial-poster .video-play::after {
    top: 17px;
    left: 21px;
    border-left-width: 15px;
    border-top-width: 9px;
    border-bottom-width: 9px;
}

.tutorial-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 23px 27px;
}

.tutorial-card-body h2 {
    margin: 0 0 6px;
    font-size: 1.28rem;
    letter-spacing: -.025em;
    line-height: 1.28;
}

.tutorial-card-body h2 a {
    color: var(--green-deep);
    text-decoration: none;
}

.tutorial-card-body > p:not(.audience):not(.runtime) {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: .94rem;
    flex: 1;
}

.tutorial-card-body .text-action {
    text-decoration: none;
}

.tutorial-growing {
    padding-top: 0;
    background: var(--cream);
}

.tutorial-growing-card {
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: var(--radius-lg);
    background: var(--green-light);
}

.tutorial-growing-card h2 {
    margin-bottom: 9px;
}

.tutorial-detail-hero {
    padding: 52px 0 48px;
    background: var(--sand);
}

.back-link {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 34px;
    text-decoration: none;
    font-weight: 650;
}

.tutorial-detail-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
}

.tutorial-detail-heading h1 {
    font-size: clamp(2.25rem, 4.1vw, 3.3rem);
}

.tutorial-summary {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 1.07rem;
}

.tutorial-meta {
    display: grid;
    gap: 8px;
    min-width: 188px;
    color: var(--blue-deep);
    font-size: .93rem;
    font-weight: 600;
}

.tutorial-meta span {
    padding: 9px 12px;
    border-radius: 9px;
    background: var(--white);
}

.tutorial-detail-body {
    background: var(--cream);
}

.tutorial-detail-grid {
    display: grid;
    grid-template-columns: 1fr 315px;
    gap: 46px;
    align-items: start;
}

.tutorial-video {
    overflow: hidden;
    margin-bottom: 42px;
    background: #0d1415;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.tutorial-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.tutorial-written-section {
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.tutorial-written-section h2 {
    margin: 0 0 15px;
    color: var(--green-deep);
    font-size: 1.55rem;
}

.tutorial-written-section p,
.tutorial-written-section li {
    color: var(--muted);
}

.tutorial-written-section ul {
    margin: 19px 0 0;
    padding-left: 22px;
}

.tutorial-written-section li + li {
    margin-top: 8px;
}

.tutorial-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 17px;
}

.sidebar-link-card {
    box-shadow: none;
}

.sidebar-link-card a {
    display: block;
    padding: 12px 0;
    color: var(--green);
    text-decoration: none;
    font-weight: 650;
    border-bottom: 1px solid var(--line);
}

.sidebar-link-card a:last-child {
    border-bottom: 0;
}

.support-contact {
    background: var(--cream);
}

@media (max-width: 1120px) and (min-width: 961px) {
    .site-nav {
        gap: 17px;
    }

    .brand-tag {
        display: none;
    }
}

@media (max-width: 960px) {
    .tutorial-preview-card,
    .library-hero-grid,
    .support-hero-grid,
    .tutorial-detail-heading,
    .tutorial-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .tutorial-growing-card,
    .support-invite-card {
        display: block;
        padding: 34px 29px;
    }

    .tutorial-growing-card .button,
    .support-invite-card .button {
        margin-top: 26px;
    }

    .tutorial-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .tutorial-preview {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .tutorial-preview-card {
        padding: 27px 21px;
    }

    .tutorial-actions .button {
        width: 100%;
    }

    .library-hero,
    .support-hero,
    .tutorial-detail-hero {
        padding: 44px 0;
    }

    .tutorial-meta {
        min-width: 0;
    }

    .filter-bar a {
        width: 100%;
        justify-content: center;
    }

    .tutorial-poster img {
        height: 190px;
    }

    .tutorial-growing-card .button,
    .support-invite-card .button,
    .library-help-card .button,
    .support-links-card .button,
    .sidebar-card .button {
        width: 100%;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
