﻿:root {
    --bg: #f7fbf9;
    --bg2: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #d1fae5;
    --accent: #059669;
    --accent-700: #047857;
    --danger: #dc2626;
    --ok: #16a34a;
    --chip-bg: #ecfdf5;
    --chip-border: #a7f3d0;
    --card-bg: #ffffff;
    --shadow: 0 1px 2px rgba(16,24,40,.06), 0 1px 1px rgba(16,24,40,.04);
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px
}

a {
    color: inherit;
    text-decoration: none
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px
}

@media(min-width:980px) {
    .grid {
        grid-template-columns: 1fr 360px
    }
}

.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: var(--shadow)
}

    .card .hd {
        padding: 14px 16px;
        border-bottom: 1px solid #e2e8f0
    }

    .card .bd {
        padding: 16px
    }

.metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px
}

@media(min-width:720px) {
    .metrics {
        grid-template-columns: repeat(3,1fr)
    }
}

.metric {
    border: 1px dashed #e2e8f0;
    border-radius: 16px;
    padding: 14px;
    display: grid;
    gap: 10px
}

.label {
    font-size: 12px;
    color: #64748b
}

.value {
    font-size: 28px;
    font-weight: 700
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px
}

th {
    font-size: 12px;
    color: #64748b;
    text-align: left;
    padding: 0 8px
}

td {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #ecfdf5;
    padding: 10px 8px;
    border-radius: 10px
}

tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

.btn {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    color: black;
}

    .btn.primary {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff
    }

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.pill {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #e7e7e7;
}

.pill-green {
    background: #d1fae5;
    color: #065f46;
}

.tagrow {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
}

.tagrow-left {
    position: absolute;
    top: 45px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.tag {
    background: var(--chip-bg);
    color: #065f46;
    border-radius: var(--radius-pill);
    border: 1px solid var(--chip-border);
    padding: 4px 8px;
    font-size: 12px;
}

.cta,
.save-template {
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer
}

    .cta:hover,
    .save-template:hover {
        background: var(--accent-700);
        color: #fff;
    }

.sub {
    color: var(--muted);
    margin: 0 0 18px;
    font-size: 14px;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

    .filters select,
    .filters input[type="search"],
    .filters input[type="text"] {
        padding: 8px 10px;
        border-radius: var(--radius-pill);
        border: 1px solid #cbd5e1;
        font-size: 14px;
        min-width: 140px;
    }

    .filters input[type="search"] {
        min-width: 200px;
    }

.list {
    display: grid;
    gap: 12px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background: var(--chip-bg);
    color: #065f46;
    border-radius: var(--radius-pill);
    border: 1px solid var(--chip-border);
    padding: 4px 8px;
    font-size: 12px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #64748b;
}

    .meta span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

.steps {
    font-size: 12px;
    color: #475569;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

    .steps strong {
        font-weight: 600;
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
}

        .site-header.is-scrolled .header-wrap {
            padding: 0px 10px;
        }

.margin-top-header {
    margin-top: 7rem;
}

.header-wrap {
    max-width: 1480px;
    padding: 10px;
    transition: padding .5s ease;
}

.brand-logo {
    height: 100%;
    width: auto;
    max-width: 20rem;
}

.brand-divider {
    width: 2px;
    height: 36px;
    background: #6d28d9;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    white-space: nowrap;
}

.brand-sub {
    font-size: 12px;
    color: #4b5563;
}

.brand-main {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.site-header .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.15;
    color: #111 !important;
    border-bottom: none;
}

    .site-header .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 5px;
        background-color: #d0af2b;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease;
    }

    .site-header .nav-link:hover::after,
    .site-header .nav-link:focus::after {
        transform: scaleX(1);
    }

    .site-header .nav-link.active::after {
        transform: scaleX(1);
    }

.soon {
    font-weight: 700;
}

@media (max-width: 1199px) {
    .site-header .nav-link::after {
        display: none;
    }

    .header-wrap {
        padding: 0px 10px;
    }

    .navbar-nav {
        gap: 18px;
        padding: 24px 0;
    }

    .nav-link br {
        display: none;
    }
}

.canza-footer {
    background: #255c4e;
    color: #fff;
}

.canza-footer-inner {
    padding: 4rem 1rem;
}

.canza-footer-logo {
    max-height: 5rem;
    width: auto;
    display: block;
    margin-bottom: 24px;
}

.canza-footer-blurb {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

.canza-footer-right {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.canza-footer-social {
    display: flex;
    gap: 20px;
    font-weight: 700;
    font-size: 22px;
    height: fit-content
}

    .canza-footer-social a {
        color: #fff;
        text-decoration: none;
        padding: 0.5rem;
        transition: opacity .15s ease, background-color .25s ease;
        border-radius: 5px;
        line-height: 0;
    }

        .canza-footer-social a:hover {
            background: rgba(255, 255, 255, 0.1);
            opacity: 1;
        }

.footer-icon,
.footer-icon-img {
    width: 22px;
    height: 22px;
}

.footer-icon-img {
    object-fit: contain;
}

.canza-footer-actions {
    display: flex;
    gap: 24px;
    font-weight: 700;
}

    .canza-footer-actions a {
        color: #fff;
        text-decoration: none;
    }

        .canza-footer-actions a:hover {
            text-decoration: underline;
        }

.canza-footer-legal {
    font-size: 13px;
    margin: 0;
}

@media (max-width: 991px) {

    .canza-footer-inner {
        padding: 6rem 2rem 2rem;
    }

    .canza-footer-logo {
        margin-bottom: 20px;
    }

    .canza-footer-blurb {
        margin-bottom: 24px;
    }

    .canza-footer-social {
        justify-content: flex-start;
        margin-bottom: 16px;
    }

    .canza-footer-legal {
        text-align: left;
    }

    .canza-footer-right {
        justify-content: start;
    }

    .canza-footer-actions {
        font-size: 13px;
        gap: 4px;
        margin-top: 0.25rem
    }
}

.external-link:hover {
    text-decoration: none !important;
    color: #d0af2b !important;
}

.custom-link {
    text-decoration: underline !important;
}

.footer-hover a:hover,
.custom-link:hover {
    text-decoration: underline !important;
    color: #d0af2b !important;
}

.nav-item {
    margin-top: auto;
    margin-bottom: auto;
}
.custom-content {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
}


.pill-span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block
}

    .pill-span.green {
        background: #16a34a;
    }

    .pill-span.yellow {
        background: #facc15;
    }

    .pill-span.blue {
        background: #3b82f6;
    }

    .pill-span.red {
        background: #ff6b6b;
    }

.workflow-step {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.step-index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    font-size: 15px;
}

.step-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 2px;
}

.is-complete {
    background: #16a34a1f !important;
    border-color: #16a34a !important;
}

.is-active {
    background: #facc1526 !important;
    border-color: #facc15 !important;
}

.is-declined {
    background: #ff6b6b0f !important;
    border-color: #ff6b6b52 !important;
}

/* ===== Beige Panel ===== */
.canza-mission {
    background: #e9ded8; /* sampled beige tone */
    border-bottom-right-radius: 72px;
    padding: 80px 96px;
    text-align: center;
    max-width: 100%;
}

    /* ===== Headline ===== */
    .canza-mission h2 {
        max-width: 80rem;
        margin: 0 auto 48px;
        font-size: 36px;
        line-height: 1.25;
        font-weight: 800;
        color: #111;
    }

    /* ===== Paragraphs ===== */
    .canza-mission p {
        max-width: 70rem;
        margin: 0 auto 32px;
        font-size: 17px;
        line-height: 1.7;
        color: #111;
    }

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .canza-mission {
        padding: 48px 28px;
        border-bottom-right-radius: 48px;
    }

        .canza-mission h2 {
            font-size: 28px;
            margin-bottom: 36px;
        }

        .canza-mission p {
            font-size: 16px;
            margin-bottom: 28px;
        }
}

.sub-hero-banner {
    height: 21rem;
    background-size: cover;
    background-position: center;
    background-color: #255c4e;
    border-top-right-radius: 55px;
}

.sub-hero-body {
    padding: 5rem;
    margin: 0 10rem;
}

.custom-disable {
    pointer-events: none;
}