﻿
:root {
    --red: #E5172B;
    --red-deep: #B8121F;
    --ink: #0F0F10;
    --ink-2: #1C1C1E;
    --paper: #FFFFFF;
    --cream: #F7F4EF;
    --line: rgba(15,15,16,.10);
    --muted: rgba(15,15,16,.60);
    --green: #2D9B5C;
    --gold: #B8860B;
    --serif: DINNextLTPro-Regular,sans-serif;
    --sans: DINNextLTPro-Regular,sans-serif;
    --mono: DINNextLTPro-Regular,sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

::selection {
    background: var(--red);
    color: var(--paper)
}


::selection {
    background: var(--red);
    color: var(--paper)
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 35px 32px
}

@media (max-width:640px) {
    .wrap {
        padding: 0 20px
    }
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--red);
    z-index: 1000;
    transition: width .12s
}

/* Topbar */
.topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    padding: 8px 0;
    font-family: var(--mono);
    letter-spacing: .04em
}

    .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap
    }

    .topbar .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,.78)
    }

    .topbar .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
        animation: pulse 2s infinite
    }

    .topbar .links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap
    }

    .topbar a:hover {
        color: var(--red)
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45,155,92,.7)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(45,155,92,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45,155,92,0)
    }
}

@media (max-width:780px) {
    .topbar .links {
        display: none
    }
}

/* Page tag - tells user what page they're on */
.page-tag {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

    .page-tag .wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap
    }

    .page-tag .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px
    }

        .page-tag .breadcrumb a {
            color: var(--muted)
        }

            .page-tag .breadcrumb a:hover {
                color: var(--ink)
            }

        .page-tag .breadcrumb .sep {
            opacity: .4
        }

        .page-tag .breadcrumb .current {
            color: var(--red);
            font-weight: 600
        }

    .page-tag .meta {
        margin-left: auto;
        opacity: .6
    }

@media (max-width:640px) {
    .page-tag .meta {
        display: none
    }
}

/* Navigation */
nav.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: all .3s
}

    nav.nav.scrolled {
        background: rgba(255,255,255,.97);
        border-bottom-color: var(--line)
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-mark {
    width: 38px;
    height: 28px;
    color: var(--red);
    flex-shrink: 0
}

.logo-word {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .04em;
    color: var(--ink)
}

    .logo-word .india {
        color: var(--red)
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

    .nav-links > li {
        position: relative
    }

    .nav-links a, .nav-links button.menu-trigger {
        padding: 10px 14px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        transition: all .2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--ink)
    }

        .nav-links a:hover, .nav-links button.menu-trigger:hover {
            background: rgba(15,15,16,.05)
        }

        .nav-links a.active {
            background: var(--ink);
            color: var(--paper)
        }

.mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    min-width: 640px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.25);
    display: grid;
    gap: 24px
}

    .mega.cols-2 {
        grid-template-columns: 1fr 1fr
    }

    .mega.cols-3 {
        grid-template-columns: 1fr 1fr 280px
    }

.nav-links li.has-mega:hover > .mega, .nav-links li.has-mega:focus-within > .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.mega-h {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px
}

    .mega-list a {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 13.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.3
    }

        .mega-list a:hover {
            background: var(--ink);
            color: var(--paper)
        }

        .mega-list a .idx {
            font-family: var(--mono);
            font-size: 10px;
            opacity: .5
        }

.mega-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

    .mega-card h4 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 400;
        line-height: 1.15;
        margin-bottom: 10px
    }

        .mega-card h4 em {
            color: var(--red);
            font-style: italic;
            font-weight: 500
        }

    .mega-card p {
        font-size: 13px;
        opacity: .75;
        margin-bottom: 20px
    }

    .mega-card .arrow {
        font-family: var(--mono);
        font-size: 12px;
        color: var(--red);
        display: inline-flex;
        align-items: center;
        gap: 8px
    }

.nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 11px 20px !important;
    border-radius: 999px !important;
    font-weight: 600 !important
}

    .nav-cta:hover {
        background: var(--red) !important
    }

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--paper)
}

    .burger svg {
        width: 20px;
        height: 20px
    }

@media (max-width:1080px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }
}

/* Drawer */
.drawer {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--paper);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.65,.05,.36,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

    .drawer.open {
        transform: translateX(0)
    }

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

    .drawer-head .logo-word {
        color: var(--paper)
    }

.drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center
}

.drawer-body {
    padding: 8px 8px 24px;
    flex: 1
}

.d-section {
    border-bottom: 1px solid rgba(255,255,255,.06)
}

    .d-section summary {
        padding: 18px 16px;
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 400;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .d-section summary::-webkit-details-marker {
            display: none
        }

        .d-section summary::after {
            content: '+';
            font-family: var(--mono);
            font-size: 24px;
            color: var(--red);
            transition: transform .2s
        }

    .d-section[open] summary::after {
        content: 'b'
    }

    .d-section ul {
        list-style: none;
        padding: 0 16px 16px
    }

    .d-section li a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        opacity: .85
    }

        .d-section li a:hover {
            color: var(--red);
            opacity: 1
        }

.d-link {
    display: block;
    padding: 18px 16px;
    font-family: var(--serif);
    font-size: 22px;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.drawer-foot {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.08)
}

    .drawer-foot .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .15em;
        text-transform: uppercase;
        opacity: .5
    }

    .drawer-foot .phone {
        font-family: var(--serif);
        font-size: 22px;
        margin-top: 6px;
        color: var(--red)
    }

    .drawer-foot .cta {
        display: block;
        margin-top: 16px;
        padding: 14px;
        background: var(--red);
        color: var(--paper);
        text-align: center;
        font-weight: 600;
        border-radius: 10px
    }

/* Type system */
h1.headline {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 6.5vw, 92px);
    line-height: .98;
    letter-spacing: -.025em;
    color: var(--ink)
}

    h1.headline em {
        font-style: italic;
        font-weight: 600;
        color: var(--red)
    }

    h1.headline .underline {
        background-image: linear-gradient(transparent 78%, rgba(229,23,43,.28) 78%);
        background-size: 0% 100%;
        background-repeat: no-repeat;
        transition: background-size 1.6s cubic-bezier(.65,.05,.36,1) .6s
    }

body.loaded h1.headline .underline {
    background-size: 100% 100%
}

h2.section-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.6vw, 60px);
    line-height: 1.04;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 18px
}

    h2.section-title em {
        font-style: italic;
        color: var(--red);
        font-weight: 600
    }

.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px
}

    .eyebrow::before {
        content: '';
        width: 24px;
        height: 1px;
        background: currentColor
    }

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.65
}

@media (max-width:640px) {
    .lead {
        font-size: 16px
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s
}

.btn-primary {
    background: var(--red);
    color: var(--paper)
}

    .btn-primary:hover {
        background: var(--red-deep);
        transform: translateY(-1px);
        box-shadow: 0 10px 24px -10px rgba(229,23,43,.6)
    }

.btn-ghost {
    border: 1.5px solid var(--ink);
    color: var(--ink)
}

    .btn-ghost:hover {
        background: var(--ink);
        color: var(--paper)
    }

.btn-dark {
    background: var(--ink);
    color: var(--paper)
}

    .btn-dark:hover {
        background: var(--red)
    }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s, transform .8s
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s, transform .7s
}

.reveal-stagger.in > * {
    opacity: 1;
    transform: none
}

    .reveal-stagger.in > *:nth-child(1) {
        transition-delay: .05s
    }

    .reveal-stagger.in > *:nth-child(2) {
        transition-delay: .15s
    }

    .reveal-stagger.in > *:nth-child(3) {
        transition-delay: .25s
    }

    .reveal-stagger.in > *:nth-child(4) {
        transition-delay: .35s
    }

    .reveal-stagger.in > *:nth-child(5) {
        transition-delay: .45s
    }

    .reveal-stagger.in > *:nth-child(6) {
        transition-delay: .55s
    }

    .reveal-stagger.in > *:nth-child(7) {
        transition-delay: .65s
    }

    .reveal-stagger.in > *:nth-child(8) {
        transition-delay: .75s
    }

    .reveal-stagger.in > *:nth-child(9) {
        transition-delay: .85s
    }

/* Footer */
footer.foot {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 40px;
    margin-top: 120px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1)
}

@media (max-width:980px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
}

@media (max-width:640px) {
    .foot-grid {
        grid-template-columns: 1fr
    }
}

.foot-brand .logo-word {
    color: var(--paper)
}

.foot-brand p {
    margin-top: 18px;
    font-size: 14px;
    opacity: .65;
    line-height: 1.6;
    max-width: 380px
}

.foot-newsletter {
    margin-top: 28px
}

    .foot-newsletter form {
        display: flex;
        gap: 8px;
        margin-top: 10px
    }

    .foot-newsletter input {
        flex: 1;
        padding: 12px 14px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        color: var(--paper);
        font-size: 13px;
        font-family: inherit
    }

        .foot-newsletter input:focus {
            outline: none;
            border-color: var(--red);
            background: rgba(255,255,255,.08)
        }

    .foot-newsletter button {
        padding: 12px 18px;
        background: var(--red);
        color: var(--paper);
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600
    }

.foot-h {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 18px
}

.foot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .foot-list a {
        font-size: 14px;
        opacity: .75;
        transition: all .2s
    }

        .foot-list a:hover {
            opacity: 1;
            color: var(--red)
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 12px;
    opacity: .55;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--mono);
    letter-spacing: .04em
}

    .foot-bottom a:hover {
        opacity: 1;
        color: var(--red)
    }

.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    padding: 14px 24px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 16px 40px -10px rgba(0,0,0,.4);
    z-index: 50;
    transition: all .25s
}

    .float-cta:hover {
        background: var(--red);
        transform: translateY(-2px)
    }

@media (max-width:640px) {
    .float-cta {
        display: none
    }
}



:root {
    --butter: #FFF5CC;
    --butter-line: #E8D78A;
    --butter-ink: #5C4A0E;
    --sand: #F1E8D6;
    --sand-line: #DCCFB3;
    --gold: #D9A431;
}

/* ============== BANNER ============== */
.cp-banner {
    position: relative;
    padding: 84px 0 40px;
    overflow: hidden;
    background: linear-gradient(180deg,var(--cream) 0%,#FCF9F1 100%);
}

    .cp-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 70% 50% at 80% 0%,rgba(229,23,43,.05),transparent 60%),radial-gradient(ellipse 60% 50% at 10% 100%,rgba(217,164,49,.08),transparent 70%);
    }

.cp-banner-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (max-width:980px) {
    .cp-banner-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

.cp-banner-eye {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 22px;
}

    .cp-banner-eye .dot {
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%
    }

    .cp-banner-eye .code {
        color: var(--red);
        font-weight: 600;
        letter-spacing: .18em
    }

.cp-banner-h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 40px;
    line-height: 1.04;
    letter-spacing: -.025em;
    margin: 0 0 18px;
    color: var(--ink);
}

    .cp-banner-h1 em {
        font-style: italic;
        color: var(--red);
        font-weight: 400
    }

.cp-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px,1.9vw,22px);
    line-height: 1.4;
    color: var(--red);
    margin: 0 0 24px;
    max-width: 46ch;
}

    .cp-tagline::before {
        content: ""
    }

.cp-banner-sub {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink);
    opacity: .82;
    max-width: 75ch;
    margin: 0 0 30px;
}

.cp-banner-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.btn .ic-lead {
    display: inline-flex;
    align-items: center;
    margin-right: 8px
}

    .btn .ic-lead svg {
        width: 14px;
        height: 14px
    }

.cp-banner-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

    .cp-banner-meta .pulse {
        width: 8px;
        height: 8px;
        background: var(--green);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(45,155,92,.6);
        animation: cpPulse 2s infinite;
    }

@keyframes cpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45,155,92,.6)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(45,155,92,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45,155,92,0)
    }
}

/* Banner right spec sheet */
.cp-spec {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 30px 30px;
    position: relative;
}

    .cp-spec::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        height: 4px;
        background: linear-gradient(90deg,var(--red) 0%,var(--gold) 100%);
    }

.cp-spec-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}

.cp-spec-icon {
    width: 56px;
    height: 56px;
    background: var(--butter);
    border: 1px solid var(--butter-line);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--butter-ink);
    flex-shrink: 0;
}

    .cp-spec-icon svg {
        width: 28px;
        height: 28px
    }

.cp-spec-head .lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px
}

.cp-spec-head .ttl {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--ink)
}

.cp-spec-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
}

    .cp-spec-row:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

    .cp-spec-row .k {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted);
        padding-top: 2px
    }

    .cp-spec-row .v {
        font-size: 13.5px;
        line-height: 1.45;
        color: var(--ink)
    }

        .cp-spec-row .v .badge {
            display: inline-block;
            padding: 3px 8px;
            font-family: var(--mono);
            font-size: 10px;
            letter-spacing: .1em;
            text-transform: uppercase;
            border-radius: 2px;
        }

            .cp-spec-row .v .badge.both {
                background: #EEF7F1;
                color: #1F7A47;
                border: 1px solid #C9E6D4
            }

            .cp-spec-row .v .badge.inperson {
                background: #FDEEEF;
                color: #B8121F;
                border: 1px solid #F5C9CD
            }

            .cp-spec-row .v .badge.virtual {
                background: #EAF2FB;
                color: #1F4B8E;
                border: 1px solid #C9DBEF
            }

/* ============== OVERVIEW ============== */
.cp-overview {
    padding: 50px 0;
    background: var(--paper)
}

.cp-overview-grid {
    display: grid;
    grid-template-columns: .4fr 1fr;
    gap: 70px;
    align-items: start
}

@media (max-width:880px) {
    .cp-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

.cp-eye {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red)
}

.cp-overview h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(30px,3.6vw,44px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
    max-width: 14ch;
}

    .cp-overview h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-overview-body p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink);
    margin: 0 0 18px;
    opacity: .85
}

    .cp-overview-body p:first-child::first-letter {
        font-family: var(--serif);
        font-size: 3.2em;
        float: left;
        line-height: .88;
        padding: 6px 12px 0 0;
        color: var(--red);
        font-weight: 400
    }

/* ============== WHY (positive frame, checkmark grid) ============== */
.cp-why {
    padding: 50px 0;
    background: linear-gradient(180deg,#FFFCF2 0%,var(--cream) 100%);
    border-top: 1px solid var(--butter-line);
    border-bottom: 1px solid var(--butter-line)
}

.cp-why-head {
    margin-bottom: 44px;
    align-items: end
}

@media (max-width:760px) {
    .cp-why-head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.cp-why h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(30px,3.6vw,44px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-why h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-why-head .intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink);
    opacity: .78;
    margin: 0;
}

.cp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media (max-width:760px) {
    .cp-why-grid {
        grid-template-columns: 1fr
    }
}

.cp-why-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 18px 20px;
    align-items: start;
    transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

    .cp-why-item:hover {
        transform: translateX(3px);
        border-color: var(--ink);
        box-shadow: -3px 3px 0 var(--gold)
    }

    .cp-why-item .chk {
        width: 30px;
        height: 30px;
        background: var(--butter);
        border: 1px solid var(--butter-line);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
        color: var(--butter-ink);
    }

        .cp-why-item .chk svg {
            width: 14px;
            height: 14px
        }

    .cp-why-item p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.55;
        color: var(--ink)
    }

/* ============== GAPS (diagnostic frame) ============== */
.cp-gaps {
    padding: 50px 0;
    background: var(--paper)
}

.cp-gaps-head {
    margin-bottom: 44px;
    align-items: end
}

@media (max-width:760px) {
    .cp-gaps-head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.cp-gaps h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-gaps h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-gaps-head .intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.cp-gaps-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line)
}

.cp-gap {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

    .cp-gap .n {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--red);
        letter-spacing: .1em;
        padding-top: 4px
    }

    .cp-gap .t {
        font-size: 15.5px;
        line-height: 1.55;
        color: var(--ink);
        margin: 0;
    }

/* ============== OUTCOMES ============== */
.cp-outcomes {
    padding: 50px 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.cp-outcomes-head {
    margin-bottom: 44px;
    align-items: end
}

@media (max-width:760px) {
    .cp-outcomes-head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.cp-outcomes h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-outcomes h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-outcomes-head .intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink);
    opacity: .78;
    margin: 0;
}

.cp-out-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media (max-width:760px) {
    .cp-out-grid {
        grid-template-columns: 1fr
    }
}

.cp-out-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 18px 22px;
    border-left: 3px solid var(--gold);
    align-items: start;
    transition: transform .2s ease,box-shadow .2s ease;
}

    .cp-out-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 0 var(--red)
    }

    .cp-out-item .marker {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .16em;
        color: var(--red);
        padding-top: 3px;
        min-width: 34px
    }

    .cp-out-item p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.6;
        color: var(--ink)
    }

/* ============== CURRICULUM ============== */
.cp-curr {
    padding: 50px 0;
    background: var(--paper)
}

.cp-curr-head {
    margin-bottom: 48px;
    align-items: end
}

@media (max-width:760px) {
    .cp-curr-head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.cp-curr h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-curr h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-curr-head .intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink);
    opacity: .78;
    margin: 0;
}

.cp-curr-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px
}

    .cp-curr-meta .pill {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        padding: 6px 12px;
        background: var(--butter);
        color: var(--butter-ink);
        border: 1px solid var(--butter-line);
        border-radius: 24px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

        .cp-curr-meta .pill svg {
            width: 12px;
            height: 12px
        }

.cp-modules {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

@media (max-width:760px) {
    .cp-modules {
        grid-template-columns: 1fr
    }
}

.cp-module {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 0;
    overflow: hidden;
    transition: border-color .2s ease,box-shadow .2s ease;
}

    .cp-module:hover {
        border-color: var(--ink);
        box-shadow: 0 4px 0 var(--gold)
    }

    .cp-module summary {
        list-style: none;
        cursor: pointer;
        padding: 22px 24px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        align-items: center;
        background: var(--paper);
    }

        .cp-module summary::-webkit-details-marker {
            display: none
        }

    .cp-module .mod-num {
        width: 42px;
        height: 42px;
        background: var(--ink);
        color: var(--paper);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: .08em;
        font-weight: 600;
    }

    .cp-module[open] .mod-num {
        background: var(--red)
    }

    .cp-module .mod-title {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 17.5px;
        line-height: 1.2;
        letter-spacing: -.01em;
        color: var(--ink);
    }

    .cp-module .mod-meta {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 4px;
    }

    .cp-module .mod-toggle {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--red);
        font-family: var(--mono);
        font-size: 18px;
        line-height: 1;
        transition: transform .2s ease;
    }

    .cp-module[open] .mod-toggle {
        transform: rotate(45deg)
    }

    .cp-module .mod-body {
        padding: 0 24px 24px 24px;
        background: #FCFAF5;
        border-top: 1px solid var(--line);
    }

    .cp-module[open] .mod-body {
        padding-top: 18px
    }

.cp-submod {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

    .cp-submod:last-child {
        border-bottom: none
    }

    .cp-submod .dot {
        width: 8px;
        height: 8px;
        background: var(--red);
        border-radius: 50%;
        margin-top: 8px
    }

    .cp-submod .sub-name {
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.3;
        margin: 0 0 4px
    }

    .cp-submod .sub-out {
        font-size: 13.5px;
        line-height: 1.55;
        color: var(--muted);
        margin: 0
    }

/* ============== DELIVERY MODEL ============== */
.cp-delivery {
    padding: 50px 0;
    background: linear-gradient(180deg,var(--cream) 0%,#FFFCF2 100%);
    border-top: 1px solid var(--butter-line)
}

.cp-delivery-head {
    margin-bottom: 44px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.cp-delivery h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 14px;
    color: var(--ink);
}

    .cp-delivery h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-delivery .intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0
}

.cp-tiers {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

@media (max-width:980px) {
    .cp-tiers {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:520px) {
    .cp-tiers {
        grid-template-columns: 1fr
    }
}

.cp-tier {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    transition: transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

    .cp-tier:hover {
        transform: translateY(-4px);
        border-color: var(--ink);
        box-shadow: 0 6px 0 var(--gold)
    }

    .cp-tier.featured {
        border-color: var(--red);
        box-shadow: 0 4px 0 var(--red)
    }

        .cp-tier.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--red);
            color: var(--paper);
            font-family: var(--mono);
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 12px;
            white-space: nowrap;
        }

    .cp-tier .tier-name {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 19px;
        letter-spacing: -.005em;
        color: var(--ink);
        margin: 0 0 14px;
        line-height: 1.2
    }

    .cp-tier .tier-divider {
        width: 32px;
        height: 1px;
        background: var(--red);
        margin: 0 auto 16px
    }

    .cp-tier .tier-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 10px 0
    }

        .cp-tier .tier-row .k {
            font-family: var(--mono);
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted)
        }

        .cp-tier .tier-row .v {
            font-family: var(--serif);
            font-size: 18px;
            font-weight: 500;
            color: var(--ink);
            letter-spacing: -.005em
        }

/* ============== COMMERCIAL ============== */
.cp-commercial {
    padding: 50px 0;
    background: var(--paper)
}

.cp-commercial-head {
    margin-bottom: 44px;
    align-items: end
}

@media (max-width:760px) {
    .cp-commercial-head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.cp-commercial h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(30px,3.6vw,44px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-commercial h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-commercial-head .intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.cp-price-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-bottom: 24px
}

@media (max-width:980px) {
    .cp-price-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:520px) {
    .cp-price-grid {
        grid-template-columns: 1fr
    }
}

.cp-price {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

    .cp-price:nth-child(2) {
        border-color: var(--red);
        box-shadow: 0 4px 0 var(--red);
    }

    .cp-price .lbl {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 6px
    }

    .cp-price .name {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 17px;
        color: var(--ink);
        margin: 0 0 14px;
        line-height: 1.2;
    }

    .cp-price .amount {
        font-family: var(--serif);
        font-weight: 300;
        font-size: 28px;
        color: var(--red);
        letter-spacing: -.02em;
        line-height: 1;
    }

    .cp-price .per {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 6px
    }

.cp-note {
    padding: 20px 24px;
    background: var(--butter);
    border: 1px solid var(--butter-line);
    border-left: 4px solid var(--gold);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--butter-ink);
}

    .cp-note strong {
        color: var(--butter-ink);
        font-weight: 700
    }

/* ============== METHODOLOGY ============== */
.cp-method {
    padding: 50px 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.cp-method-head {
    margin-bottom: 44px
}

.cp-method h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-method h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-method-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

@media (max-width:980px) {
    .cp-method-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:520px) {
    .cp-method-grid {
        grid-template-columns: 1fr
    }
}

.cp-method-step {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease;
}

    .cp-method-step:hover {
        transform: translateY(-3px)
    }

    .cp-method-step .n {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .16em;
        color: var(--red);
        margin-bottom: 14px
    }

    .cp-method-step .ic-tile {
        width: 42px;
        height: 42px;
        background: var(--butter);
        border: 1px solid var(--butter-line);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        color: var(--butter-ink);
        margin-bottom: 14px;
    }

        .cp-method-step .ic-tile svg {
            width: 22px;
            height: 22px
        }

    .cp-method-step h4 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 17px;
        letter-spacing: -.005em;
        line-height: 1.2;
        margin: 0 0 8px;
        color: var(--ink);
    }

    .cp-method-step p {
        font-size: 13.5px;
        line-height: 1.55;
        color: var(--muted);
        margin: 0
    }

/* ============== FAQ ============== */
.cp-faq {
    padding: 50px 0;
    background: var(--paper)
}

.cp-faq-grid {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 70px;
    align-items: start
}

@media (max-width:880px) {
    .cp-faq-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

.cp-faq h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-faq h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-faq-side p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 18px 0 0;
}

.cp-q {
    border-bottom: 1px solid var(--line);
    padding: 20px 0
}

    .cp-q[open] {
        padding-bottom: 22px
    }

    .cp-q summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        gap: 18px;
        font-family: var(--serif);
        font-weight: 500;
        font-size: 18px;
        line-height: 1.3;
        color: var(--ink);
        letter-spacing: -.005em;
    }

        .cp-q summary::-webkit-details-marker {
            display: none
        }

        .cp-q summary::before {
            content: "+";
            flex-shrink: 0;
            width: 22px;
            font-family: var(--mono);
            font-size: 22px;
            color: var(--red);
            line-height: 1;
            transform: translateY(-2px);
        }

    .cp-q[open] summary::before {
        content: "-"
    }

.cp-q-body {
    padding: 12px 0 0 40px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7
}

/* ============== RELATED ============== */
.cp-related {
    padding: 50px 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.cp-related-head {
    margin-bottom: 44px
}

.cp-related h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px,3.4vw,40px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 0;
    color: var(--ink);
}

    .cp-related h2 em {
        font-style: italic;
        color: var(--red)
    }

.cp-related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

@media (max-width:760px) {
    .cp-related-grid {
        grid-template-columns: 1fr
    }
}

.cp-related-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 24px 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}

    .cp-related-card:hover {
        border-color: var(--ink);
        transform: translateY(-3px);
        box-shadow: 0 4px 0 var(--red)
    }

    .cp-related-card .lbl {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 10px
    }

    .cp-related-card h4 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 19px;
        line-height: 1.25;
        letter-spacing: -.01em;
        margin: 0;
        color: var(--ink);
    }

    .cp-related-card .arrow {
        margin-top: 18px;
        color: var(--red);
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

        .cp-related-card .arrow::after {
            content: " ";
            transition: transform .2s ease;
            display: inline-block
        }

    .cp-related-card:hover .arrow::after {
        transform: translateX(4px)
    }

/* ============== CLOSING CTA ============== */
.cp-cta {
    padding: 50px 0;
    background: var(--paper)
}

.cp-cta-card {
    background: linear-gradient(135deg,var(--ink) 0%,#1a1a1d 100%);
    color: var(--paper);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

@media (max-width:680px) {
    .cp-cta-card {
        padding: 42px 28px
    }
}

.cp-cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,var(--red) 0%,var(--gold) 100%);
}

.cp-cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,245,204,.04) 1px,transparent 1px);
    background-size: 24px 24px;
}

.cp-cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center
}

@media (max-width:880px) {
    .cp-cta-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.cp-cta-card .turnaround {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 13px;
    background: rgba(255,213,106,.12);
    border: 1px solid rgba(255,213,106,.3);
    border-radius: 24px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #FFD56A;
    margin-bottom: 22px;
}

    .cp-cta-card .turnaround svg {
        width: 14px;
        height: 14px
    }

.cp-cta-card h3 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(26px,3.2vw,38px);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: var(--paper);
}

    .cp-cta-card h3 em {
        font-style: italic;
        color: #FFD56A
    }

.cp-cta-card p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 26px;
    max-width: 52ch
}

.cp-cta-card .row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn.btn-light {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--paper)
}

    .btn.btn-light:hover {
        background: transparent;
        color: var(--paper)
    }

.btn.btn-outline-light {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(255,255,255,.4)
}

    .btn.btn-outline-light:hover {
        border-color: var(--paper);
        background: rgba(255,255,255,.06)
    }

.cp-cta-side {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.16);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .cp-cta-side .lbl {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #FFD56A
    }

    .cp-cta-side a {
        color: var(--paper);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px
    }

        .cp-cta-side a:hover {
            color: #FFD56A
        }

        .cp-cta-side a svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            flex-shrink: 0
        }
