@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ─── Marketing page shell ─────────────────────────────────────── */
.marketing-page {
    background: #f8fafc;
    color: #0c2756;
    font-family: 'DM Sans', sans-serif;
    min-height: calc(100vh - var(--site-header-height, 64px) - 120px);
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.marketing-hero {
    background:
        linear-gradient(135deg, #03060d 0%, #0c2756 55%, #0a3d6e 100%);
    color: #f0f4ff;
    padding: 56px 24px 64px;
}

.marketing-hero__inner {
    max-width: 880px;
    margin: 0 auto;
}

.marketing-hero__kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.28);
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font: 600 0.72rem/1 'Space Grotesk', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.marketing-hero__title {
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.marketing-hero__lead {
    margin: 0;
    max-width: 680px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(200, 214, 240, 0.88);
}

.marketing-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.marketing-stat {
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.marketing-stat__value {
    display: block;
    margin-bottom: 4px;
    color: #00d4ff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
}

.marketing-stat__label {
    display: block;
    color: rgba(200, 214, 240, 0.72);
    font-size: 0.82rem;
    font-weight: 500;
}

/* ─── Breadcrumb ───────────────────────────────────────────────── */
.marketing-breadcrumb {
    max-width: 1040px;
    margin: 0 auto;
    padding: 16px 24px 0;
}

.marketing-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.86rem;
}

.marketing-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #94a3b8;
}

.marketing-breadcrumb a {
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
}

.marketing-breadcrumb a:hover {
    text-decoration: underline;
}

.marketing-breadcrumb li[aria-current="page"] {
    color: #64748b;
}

/* ─── Body sections ────────────────────────────────────────────── */
.marketing-page__body {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 24px 56px;
}

.marketing-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.marketing-feature-card {
    padding: 24px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(12, 39, 86, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.marketing-feature-card:hover {
    box-shadow: 0 8px 28px rgba(12, 39, 86, 0.1);
    transform: translateY(-2px);
}

.marketing-feature-card h2 {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c2756;
}

.marketing-feature-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

.marketing-prose {
    margin-bottom: 28px;
}

.marketing-prose p {
    margin: 0 0 14px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
}

.marketing-list-section {
    margin-bottom: 28px;
}

.marketing-list {
    margin: 0;
    padding: 0 0 0 1.25rem;
    color: #334155;
    line-height: 1.75;
}

.marketing-list li {
    margin-bottom: 10px;
}

.marketing-mission {
    padding: 28px 0 0;
    border-top: 1px solid #e2e8f0;
}

.marketing-mission h2 {
    margin: 0 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #0c2756;
}

.marketing-mission p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
    max-width: 720px;
}

/* ─── About page ───────────────────────────────────────────────── */
.marketing-about-founder {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    padding: 0 0 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid #e2e8f0;
}

.marketing-about-founder__media {
    flex-shrink: 0;
}

.marketing-about-founder__photo,
.marketing-about-founder__avatar {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
}

.marketing-about-founder__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c2756 0%, #0369a1 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.marketing-about-founder__content {
    flex: 1;
    min-width: min(100%, 280px);
}

.marketing-about-founder__eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0369a1;
}

.marketing-about-founder__name {
    margin: 0 0 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0c2756;
}

.marketing-about-founder__title {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

.marketing-about-founder__bio {
    margin: 0 0 18px;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

.marketing-about-founder__linkedin {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    background: #0c2756;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.marketing-about-founder__linkedin:hover {
    background: #0369a1;
    color: #fff;
}

.marketing-about-section {
    margin-bottom: 36px;
}

.marketing-about-section h2 {
    margin: 0 0 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c2756;
}

.marketing-about-section p {
    margin: 0 0 14px;
    max-width: 720px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
}

.marketing-about-section p:last-child {
    margin-bottom: 0;
}

.marketing-about-section--mission {
    padding-top: 36px;
    border-top: 1px solid #e2e8f0;
}

.marketing-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.marketing-about-card {
    padding: 22px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.marketing-about-card h3 {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0c2756;
}

.marketing-about-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

/* ─── Hub cards ────────────────────────────────────────────────── */
.marketing-hub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.marketing-hub-card {
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(12, 39, 86, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-hub-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 10px 32px rgba(0, 212, 255, 0.12);
    transform: translateY(-3px);
}

.marketing-hub-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    font: 600 0.68rem/1 'Space Grotesk', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0369a1;
}

.marketing-hub-card__title {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0c2756;
}

.marketing-hub-card__desc {
    margin: 0 0 16px;
    flex: 1;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #475569;
}

.marketing-hub-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0369a1;
}

/* ─── Contact ──────────────────────────────────────────────────── */
.marketing-contact-form {
    margin-bottom: 32px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.marketing-contact-form__title {
    margin: 0 0 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0c2756;
}

.marketing-contact-form__lead {
    margin: 0 0 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.marketing-contact-form__field {
    margin-bottom: 16px;
}

.marketing-contact-form__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0c2756;
}

.marketing-contact-form__input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.marketing-contact-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.marketing-contact-form__input:focus {
    outline: none;
    border-color: #0369a1;
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15);
}

.marketing-contact-form__errors {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.85rem;
    color: #b91c1c;
}

.marketing-contact-form__submit {
    display: inline-block;
    margin-top: 4px;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    background: #0c2756;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.marketing-contact-form__submit:hover {
    background: #0369a1;
}

.marketing-contact-form__privacy {
    margin: 14px 0 0;
    font-size: 0.85rem;
    color: #64748b;
}

.marketing-contact-form__response-note {
    margin: 14px 0 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
}

.marketing-contact-form__privacy a {
    color: #0369a1;
    text-decoration: none;
}

.marketing-contact-form__privacy a:hover {
    text-decoration: underline;
}

.marketing-contact-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.marketing-contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.marketing-contact-card {
    padding: 22px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.marketing-contact-card h2 {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0c2756;
}

.marketing-contact-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.marketing-contact-card a {
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
}

.marketing-contact-card a:hover {
    text-decoration: underline;
}

.marketing-contact__note {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.marketing-contact__note a {
    color: #0369a1;
}

/* ─── CTA band ─────────────────────────────────────────────────── */
.marketing-cta-band {
    background: linear-gradient(135deg, #0c2756 0%, #051a3d 100%);
    padding: 48px 24px 56px;
}

.marketing-cta-band__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.marketing-cta-band__title {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f0f4ff;
}

.marketing-cta-band__lead {
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(200, 214, 240, 0.82);
}

.marketing-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.marketing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.marketing-btn--primary {
    background: #00d4ff;
    color: #03060d;
    border: 2px solid #00d4ff;
}

.marketing-btn--primary:hover {
    background: #33ddff;
    border-color: #33ddff;
}

.marketing-btn--outline {
    background: transparent;
    color: #f0f4ff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.marketing-btn--outline:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

/* Partner logo marquee (company/partners) — full viewport width */
.partner-marquee {
    margin: 40px 0 8px;
}

.partner-marquee--fullbleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.partner-marquee__mask {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
}

.partner-marquee__track {
    display: flex;
    width: max-content;
    animation: partner-marquee-rtl 58.5s linear infinite;
}

.partner-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0 0.75rem;
    list-style: none;
}

.partner-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8.75rem;
    height: 4.25rem;
}

.partner-marquee__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.15);
    opacity: 0.85;
}

.partner-marquee__empty {
    margin: 0;
    padding: 1.5rem 0;
    text-align: center;
    color: var(--marketing-muted, #6b7280);
    font-size: 0.95rem;
}

@keyframes partner-marquee-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-marquee__track {
        animation: none;
    }
}

@media (max-width: 640px) {
    .marketing-hero {
        padding: 40px 18px 48px;
    }

    .marketing-page__body {
        padding: 28px 18px 40px;
    }

    .marketing-cta-band {
        padding: 36px 18px 44px;
    }

    .partner-marquee__group {
        gap: 1.65rem;
    }

    .partner-marquee__item {
        width: 6.75rem;
        height: 3.5rem;
    }
}

/* ─── Pilot projects page ──────────────────────────────────────── */
.pilot-page {
    max-width: 800px;
    margin: 0 auto;
}

.pilot-page__section {
    margin-top: 40px;
}

.pilot-page__section h2,
.pilot-page__intro h2 {
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0c2756;
}

.pilot-pricing {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.pilot-pricing__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "label value"
        "note note";
    gap: 4px 16px;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.pilot-pricing__item--highlight {
    border-color: rgba(3, 105, 161, 0.35);
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
}

.pilot-pricing__label {
    grid-area: label;
    font-weight: 600;
    color: #0c2756;
}

.pilot-pricing__value {
    grid-area: value;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0369a1;
    white-space: nowrap;
}

.pilot-pricing__note {
    grid-area: note;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #64748b;
}

.pilot-included,
.pilot-expectations {
    margin: 0;
    padding-left: 1.25rem;
    color: #334155;
    line-height: 1.7;
}

.pilot-included li,
.pilot-expectations li {
    margin-bottom: 6px;
}

.pilot-page__transparency {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pilot-contact-person__name {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #0c2756;
}

.pilot-page__cta-row {
    margin: 24px 0 0;
}

.pilot-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 0;
}

.pilot-summary article {
    padding: 18px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #fff;
}

.pilot-summary strong,
.pilot-summary span {
    display: block;
}

.pilot-summary strong {
    margin-bottom: 6px;
    color: #0c2756;
    font: 700 1.05rem/1.3 'Space Grotesk', sans-serif;
}

.pilot-summary span {
    color: #64748b;
    font-size: 0.86rem;
}

.pilot-deliverables {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pilot-deliverables article {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.pilot-deliverables article:last-child {
    grid-column: 1 / -1;
}

.pilot-deliverables span {
    color: #0284c7;
    font: 700 0.75rem/1 'Space Grotesk', sans-serif;
}

.pilot-deliverables h3 {
    margin: 8px 0;
    color: #0c2756;
    font: 600 1rem/1.3 'Space Grotesk', sans-serif;
}

.pilot-deliverables p,
.pilot-offer p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.pilot-process {
    margin: 0;
    padding-left: 1.4rem;
}

.pilot-process li {
    margin-bottom: 16px;
    padding-left: 8px;
    color: #0284c7;
}

.pilot-process strong,
.pilot-process span {
    display: block;
}

.pilot-process strong {
    color: #0c2756;
}

.pilot-process span {
    margin-top: 4px;
    color: #475569;
    line-height: 1.55;
}

.pilot-offer {
    padding: 28px;
    border: 1px solid rgba(3, 105, 161, 0.3);
    border-radius: 16px;
    background: linear-gradient(135deg, #effaff 0%, #fff 75%);
}

.pilot-offer__eyebrow {
    margin: 0 0 8px;
    color: #0369a1;
    font: 700 0.72rem/1 'Space Grotesk', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pilot-offer h2 small {
    font: 500 0.85rem/1.4 'DM Sans', sans-serif;
    color: #64748b;
}

.pilot-offer .pilot-page__transparency {
    margin-top: 16px;
}

.marketing-btn--dark {
    border: 2px solid #0c2756;
    background: #0c2756;
    color: #fff;
}

.marketing-btn--dark:hover {
    border-color: #0369a1;
    background: #0369a1;
}

.marketing-contact-form__notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(3, 105, 161, 0.25);
    background: #f0f9ff;
    color: #0c2756;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ─── Source-linked guide and trust center ────────────────────── */
.resource-brief,
.trust-center {
    max-width: 880px;
    margin: 0 auto;
    color: #334155;
}

.resource-brief > section,
.trust-center__contact {
    margin-top: 36px;
}

.resource-brief h2,
.trust-center h2 {
    margin: 0 0 12px;
    color: #0c2756;
    font: 700 1.3rem/1.25 'Space Grotesk', sans-serif;
}

.resource-brief p,
.resource-brief li,
.trust-center p {
    line-height: 1.7;
}

.resource-brief__notice {
    margin: 0 0 32px;
    padding: 14px 16px;
    border-left: 4px solid #0284c7;
    border-radius: 8px;
    background: #eff8ff;
    color: #334155;
    line-height: 1.6;
}

.resource-status-grid,
.trust-center__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.resource-status,
.trust-center__grid section {
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.resource-status ul,
.resource-brief ol,
.resource-sources ul {
    margin: 0;
    padding-left: 1.3rem;
}

.resource-status li,
.resource-brief ol li,
.resource-sources li {
    margin-bottom: 9px;
}

.resource-status--confirmed {
    border-top: 4px solid #059669;
}

.resource-status--pending {
    border-top: 4px solid #d97706;
}

.resource-sources a,
.trust-center a {
    color: #0369a1;
}

.trust-center__grid section p {
    margin: 0;
}

.trust-center__contact {
    padding: 24px;
    border-radius: 14px;
    background: #eaf6ff;
}

.trust-center__contact p {
    margin: 0;
}

@media (max-width: 680px) {
    .pilot-summary,
    .pilot-deliverables,
    .resource-status-grid,
    .trust-center__grid {
        grid-template-columns: 1fr;
    }

    .pilot-deliverables article:last-child {
        grid-column: auto;
    }
}

@media print {
    .site-header,
    footer,
    .marketing-cta-band,
    .marketing-breadcrumb {
        display: none !important;
    }

    .marketing-hero {
        padding: 24px;
        background: #fff;
        color: #0c2756;
    }

    .marketing-hero__lead {
        color: #334155;
    }
}

/* ─── Label makers DPP explainer ───────────────────────────────── */
.label-makers-dpp {
    padding: 56px 24px;
    background: linear-gradient(180deg, #f0f7fc 0%, #f8fafc 100%);
    color: #0c2756;
}

.label-makers-dpp__inner {
    max-width: 880px;
    margin: 0 auto;
}

.label-makers-dpp__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(3, 105, 161, 0.28);
    background: rgba(3, 105, 161, 0.08);
    color: #0369a1;
    font: 600 0.72rem/1 'Space Grotesk', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.label-makers-dpp__title {
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.45rem, 3.2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0c2756;
}

.label-makers-dpp__lead {
    margin: 0 0 24px;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
}

.label-makers-dpp__benefits {
    margin: 0 0 32px;
    padding-left: 1.2rem;
    color: #334155;
    line-height: 1.65;
}

.label-makers-dpp__benefits li {
    margin-bottom: 10px;
}

.label-makers-dpp__flow {
    list-style: none;
    margin: 0 0 32px;
    padding: 20px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px 4px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.label-makers-dpp__step {
    flex: 1 1 120px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 8px 6px;
}

.label-makers-dpp__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(3, 105, 161, 0.12);
    color: #0369a1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.label-makers-dpp__step-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0c2756;
}

.label-makers-dpp__arrow {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 2px;
    align-self: center;
}

.label-makers-dpp__cta-row {
    margin: 0;
}

.label-makers-dpp__cta-row .cta-button,
.label-makers-dpp__cta-row .marketing-btn {
    display: inline-flex;
}

@media (max-width: 700px) {
    .label-makers-dpp {
        padding: 40px 18px;
    }

    .label-makers-dpp__flow {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .label-makers-dpp__step {
        flex: none;
        max-width: none;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        padding: 10px 4px;
    }

    .label-makers-dpp__arrow {
        justify-content: center;
        transform: rotate(90deg);
        padding: 2px 0;
    }
}

/* Carbon Living related-company proof asset */
.partner-proof-page {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 14px 0 64px;
    color: #14263a;
    font-family: 'DM Sans', sans-serif;
}

.partner-showcase-card {
    grid-column: 1 / -1;
}

.partner-proof-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: center;
    min-height: 590px;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(32px, 6vw, 78px);
    background:
        radial-gradient(circle at 78% 32%, rgba(32, 205, 222, .17), transparent 29%),
        linear-gradient(135deg, #02050a 0%, #0a1725 57%, #102e3c 100%);
    color: #f5f8fb;
}

.partner-proof-hero::after {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 36px 36px;
    content: "";
    pointer-events: none;
}

.partner-proof-hero__copy,
.partner-proof-product {
    position: relative;
    z-index: 1;
}

.partner-proof-eyebrow {
    margin: 0 0 12px;
    color: #31c7ce;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.partner-proof-hero h1 {
    margin: 0;
    font: 600 clamp(2.6rem, 6vw, 5.6rem)/.96 'Space Grotesk', sans-serif;
    letter-spacing: -.055em;
}

.partner-proof-hero h1 span {
    color: #58d7d7;
    font-size: .55em;
    letter-spacing: -.035em;
}

.partner-proof-hero__copy > p:not(.partner-proof-eyebrow) {
    max-width: 700px;
    margin: 24px 0 0;
    color: #b7c7d4;
    font-size: 1.04rem;
    line-height: 1.75;
}

.partner-proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.partner-proof-product {
    min-width: 0;
}

.partner-proof-product--sequence {
    position: absolute;
    inset: 50% 0 auto;
    min-height: auto;
    overflow: hidden;
    transform: translateY(-50%);
    border: 1px solid rgba(108, 225, 229, .14);
    border-radius: 18px;
    background: #000;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
    cursor: ew-resize;
    isolation: isolate;
}

.partner-proof-product--sequence:focus-visible {
    outline: 2px solid #58d7d7;
    outline-offset: 4px;
}

.partner-proof-product__canvas {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.partner-proof-product__loading,
.partner-proof-product__hint {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(2, 8, 13, .7);
    color: #d8e7eb;
    font-size: .68rem;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.partner-proof-product__loading {
    top: 50%;
    padding: 9px 12px;
    transform: translate(-50%, -50%);
}

.partner-proof-product__loading[hidden] {
    display: none;
}

.partner-proof-product__hint {
    bottom: 14px;
    padding: 8px 11px;
    transition: opacity .2s ease;
}

.partner-proof-product--sequence.is-playing .partner-proof-product__hint {
    opacity: .25;
}

.partner-proof-page > .marketing-breadcrumb {
    margin: 18px auto 0;
}

.partner-proof-disclosure,
.partner-proof-boundary {
    margin: 24px 0;
    padding: 20px 24px;
    border: 1px solid #e3b65b;
    border-radius: 14px;
    background: #fffaf0;
}

.partner-proof-disclosure strong,
.partner-proof-boundary strong {
    display: block;
    margin-bottom: 5px;
    color: #80580b;
    font: 700 .9rem 'Space Grotesk', sans-serif;
}

.partner-proof-disclosure p,
.partner-proof-boundary p {
    margin: 0;
    color: #6c5a35;
    font-size: .9rem;
    line-height: 1.65;
}

.partner-proof-section {
    margin-top: 22px;
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid #dce4e9;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(21, 44, 62, .05);
}

.partner-proof-section--measurement {
    border-color: #b9dddd;
    background: linear-gradient(145deg, #f4fbfb, #fff);
}

.partner-proof-section__heading {
    max-width: 850px;
}

.partner-proof-section__heading h2 {
    margin: 0;
    color: #102b3a;
    font: 600 clamp(1.65rem, 3vw, 2.6rem)/1.12 'Space Grotesk', sans-serif;
    letter-spacing: -.035em;
}

.partner-proof-section__heading > p:last-child {
    margin: 14px 0 0;
    color: #60717d;
    line-height: 1.7;
}

.partner-proof-facts,
.partner-proof-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.partner-proof-facts article,
.partner-proof-metrics article {
    min-width: 0;
    padding: 18px;
    border: 1px solid #dfe7eb;
    border-radius: 12px;
    background: #f8fafb;
}

.partner-proof-facts span,
.partner-proof-metrics span {
    display: block;
    color: #71808b;
    font-size: .75rem;
    line-height: 1.35;
}

.partner-proof-facts strong {
    display: block;
    margin-top: 7px;
    overflow-wrap: anywhere;
    color: #183848;
    font-size: .92rem;
}

.partner-proof-metrics article {
    border-color: #cae5e3;
    background: rgba(255,255,255,.78);
}

.partner-proof-metrics strong {
    display: block;
    margin-bottom: 5px;
    color: #0b6668;
    font: 600 2rem 'Space Grotesk', sans-serif;
}

.partner-proof-section--chain {
    border-color: #cbdde4;
    background: linear-gradient(145deg, #f6fafc, #fff);
}

.partner-proof-chain {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.partner-proof-chain li {
    position: relative;
    min-width: 0;
    padding: 20px;
    border: 1px solid #d7e4e9;
    border-radius: 12px;
    background: #fff;
}

.partner-proof-chain li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -24px;
    color: #31aeb3;
    font-size: 1.4rem;
    content: "→";
    transform: translateY(-50%);
}

.partner-proof-chain li > span {
    color: #159096;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.partner-proof-chain strong {
    display: block;
    margin-top: 9px;
    color: #193747;
    font-size: .94rem;
}

.partner-proof-chain p {
    margin: 7px 0 0;
    overflow-wrap: anywhere;
    color: #667984;
    font-size: .78rem;
    line-height: 1.55;
}

.partner-proof-shipment-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.partner-proof-shipment-facts span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #e8f5f5;
    color: #42686b;
    font-size: .72rem;
}

.partner-proof-shipment-facts strong {
    color: #086d72;
}

.partner-proof-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.partner-proof-area-grid article {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(36, 135, 139, .07);
    color: #356468;
    font-size: .76rem;
}

.partner-proof-timestamp {
    margin: 18px 0 0;
    color: #75838c;
    font-size: .76rem;
}

.partner-proof-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 14px;
}

.proof-status {
    display: inline-flex;
    width: max-content;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.proof-status--confirmed { background: #d9f5e8; color: #126041; }
.proof-status--published_claim { background: #dceef9; color: #155376; }
.proof-status--evidence_gap { background: #fff0ce; color: #78530a; }
.proof-status--not_applicable { background: #eceff1; color: #58656d; }

.partner-proof-table-wrap {
    overflow-x: auto;
}

.partner-proof-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

.partner-proof-table th,
.partner-proof-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #e5eaed;
    text-align: left;
    vertical-align: top;
}

.partner-proof-table th {
    color: #687781;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.partner-proof-table td {
    color: #52636d;
    line-height: 1.5;
}

.partner-proof-table td:first-child {
    min-width: 190px;
    color: #1c3948;
}

.partner-proof-table code {
    display: block;
    margin-top: 4px;
    color: #8a969d;
    font-size: .66rem;
}

.partner-proof-table a,
.partner-proof-table td:last-child > span {
    display: block;
    margin-top: 5px;
    color: #087b80;
    font-weight: 600;
    text-decoration: none;
}

.partner-proof-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.partner-proof-process li {
    padding: 18px;
    border: 1px solid #dce5e9;
    border-radius: 12px;
    background: #f8fafb;
}

.partner-proof-process li > span {
    color: #35abb0;
    font: 600 .82rem 'Space Grotesk', sans-serif;
}

.partner-proof-process strong {
    display: block;
    margin-top: 18px;
    color: #193747;
    font-size: .86rem;
}

.partner-proof-process p {
    margin: 7px 0 0;
    color: #6a7982;
    font-size: .76rem;
    line-height: 1.5;
}

.partner-proof-boundary {
    border-color: #a9c8d2;
    background: #f3f8fa;
}

.partner-proof-boundary strong { color: #24566a; }
.partner-proof-boundary p { color: #4f6974; }

@media (max-width: 960px) {
    .partner-proof-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .partner-proof-product { min-height: 330px; }
    .partner-proof-product--sequence { position: relative; inset: auto; min-height: 0; transform: none; }
    .partner-proof-facts,
    .partner-proof-metrics { grid-template-columns: repeat(2, 1fr); }
    .partner-proof-process { grid-template-columns: repeat(2, 1fr); }
    .partner-proof-chain { grid-template-columns: 1fr; gap: 10px; }
    .partner-proof-chain li:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
    .partner-proof-page { padding-top: 0; }
    .partner-proof-hero { padding: 30px 20px; border-radius: 16px; }
    .partner-proof-product { min-height: 0; }
    .partner-proof-actions { flex-direction: column; align-items: stretch; }
    .partner-proof-actions .marketing-btn { justify-content: center; }
    .partner-proof-disclosure,
    .partner-proof-boundary { padding: 16px; }
    .partner-proof-section { padding: 22px 16px; }
    .partner-proof-facts,
    .partner-proof-metrics,
    .partner-proof-process { grid-template-columns: 1fr; }
    .partner-proof-table { min-width: 760px; }
}
