:root {
    --conexus-primary-color: #008c5e;
    --conexus-secondary-color: #002226;
    --conexus-accent-color: #0088ff;

    --conexus-tertiary-color-green-80: #33a37d;
    --conexus-tertiary-color-green-60: #66ba9e;
    --conexus-tertiary-color-green-40: #99d1bf;
    --conexus-tertiary-color-green-20: #cce8df;
    --conexus-tertiary-color-midnight-80: #334e51;
    --conexus-tertiary-color-midnight-60: #667a7d;
    --conexus-tertiary-color-midnight-40: #99a7a8;
    --conexus-tertiary-color-midnight-20: #ccd3d4;
    --conexus-tertiary-color-blue-80: #33a0ff;
    --conexus-tertiary-color-blue-60: #66b8ff;
    --conexus-tertiary-color-blue-40: #99cfff;
    --conexus-tertiary-color-blue-20: #cce7ff;

    --conexus-primary-font: "Plus Jakarta Sans", sans-serif;
}

/* BASE */

.co-page {
    margin: 0;
    font-family: var(--conexus-primary-font);
    background: #ffffff;
    color: var(--conexus-secondary-color);
}

/* HEADER */

.co-header {
    padding: 1.2rem 2.5rem;
    background: var(--conexus-secondary-color);
    color: white;
    height: 300px;
}

.co-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.co-logo {
    height: 50px;
    width: auto;
}

.co-header-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background-color: var(--conexus-tertiary-color-green-20);
    color: var(--conexus-secondary-color);
}

/* MAIN AREA */

.co-main {
    margin-top: -250px;
    margin-bottom: 50px;
    min-height: calc(100vh - 300px);
}

/* Central shell (card) */

.co-shell {
    margin: 0 auto;
    width: 85vw;
    z-index: 9;
    max-width: 1800px;
    min-height: 50vh;

    /* Subtle vertical gradient from pure white → slightly smoky */
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.90) 100%
    );

    /* Edge halo to emphasize overlay */
    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.15),      /* deeper shadow */
            0 4px 12px rgba(0, 0, 0, 0.08),       /* soft mid */
            inset 0 1px 0 rgba(255, 255, 255, .6); /* inner highlight */

    border-radius: 20px;
    border: 1px solid rgba(204, 211, 212, 0.6);

    backdrop-filter: blur(18px); /* Glass effect */
    padding: 2.25rem 2.4rem 2.1rem;
}


/* Stack intro then terms (no grid) */

.co-intro {
    margin-bottom: 1.6rem;
}

/* Intro typography */

.co-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--conexus-tertiary-color-midnight-60);
}

.co-title {
    margin: 0;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--conexus-secondary-color);
}

.co-subtitle {
    margin: 0.6rem 0 1.4rem;
    font-size: 0.98rem;
    color: var(--conexus-tertiary-color-midnight-80);
}

/* Status */

.co-status {
    background: var(--conexus-tertiary-color-midnight-20);
    border-radius: 10px;

    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.7),
            0 2px 4px rgba(0,0,0,0.05);

    padding: 0.65rem 1rem;
    font-size: 1rem;
}


.co-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #f59e0b;
}

/* Actions */

.co-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.8rem 0 1.1rem;
}

.co-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.co-btn-primary {
    background-color: var(--conexus-primary-color);
    color: #ffffff;
}

.co-btn-primary:hover {
    background-color: var(--conexus-tertiary-color-green-80);
}

.co-btn-outline {
    background-color: #ffffff;
    color: var(--conexus-secondary-color);
    border-color: var(--conexus-tertiary-color-green-40);
}

.co-btn-outline:hover {
    background-color: var(--conexus-tertiary-color-green-20);
}

/* Terms section (stacked under intro) */

.co-terms {
    padding-top: 1.4rem;
    border-top: 1px solid var(--conexus-tertiary-color-midnight-20);
    height: 60%;
}

.co-terms-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.co-terms-header h2 {
    margin: 0;
    font-size: 1.05rem;
}

.co-terms-note {
    font-size: 0.8rem;
    color: var(--conexus-tertiary-color-midnight-60);
}

.co-terms-body {
    background: var(--conexus-tertiary-color-green-20);
    border: 1px solid rgba(153, 209, 191, 0.45);
    border-radius: 12px;

    /* Transparent glass helpers */
    backdrop-filter: blur(12px);

    /* Gentle inset + outer shadows */
    box-shadow:
            0 6px 16px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255,255,255,0.55);

    padding: 1rem 2rem;
    height: 55%;
    overflow: auto;
}


.co-terms-body ol {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.8;
}

.co-terms-body a {
    color: var(--conexus-tertiary-color-blue-80);
}

/* Footer */

.co-footer {
    padding: 1.2rem 2.5rem 1.6rem;
    border-top: 1px solid var(--conexus-tertiary-color-midnight-20);
    background-color: #ffffff;
    color: var(--conexus-tertiary-color-midnight-80);
    font-size: 0.85rem;
    position: absolute;
    left: 0;
    right: 0;
}

.co-footer-inner {
    max-width: 960px;
    margin: 0 auto;
}

.co-footer-meta {
    margin: 0.3rem 0 0;
}

.co-footer a {
    color: var(--conexus-tertiary-color-blue-80);
    text-decoration: none;
}

.co-footer a:hover {
    text-decoration: underline;
}

.co-muted {
    color: var(--conexus-tertiary-color-midnight-60);
}

/* Responsive tweaks */

@media (max-width: 768px) {
    .co-header {
        padding: 1rem 1.25rem;
    }

    .co-main {
        padding: 1.5rem 1.25rem 2rem;
    }

    .co-shell {
        padding: 1.7rem 1.5rem 1.8rem;
    }
}
