:root {
    --navy-950: #071b35;
    --navy-900: #0b284d;
    --navy-800: #123b69;
    --navy-700: #1d4f83;
    --steel-900: #424a54;
    --steel-700: #65707c;
    --steel-500: #8c97a3;
    --steel-300: #cbd2d9;
    --steel-150: #e8edf1;
    --steel-100: #f3f6f8;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(7, 27, 53, .12);
    --shadow-soft: 0 12px 32px rgba(7, 27, 53, .08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--navy-950);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(11, 40, 77, .08);
    backdrop-filter: blur(16px);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px 15px 18px 18px;
    background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
    color: var(--white);
    font-weight: 900;
    letter-spacing: -.08em;
    box-shadow: 0 8px 20px rgba(11,40,77,.18);
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: .98rem; letter-spacing: .01em; }
.brand-copy small { margin-top: 4px; color: var(--steel-700); font-size: .72rem; }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--steel-900);
}

.primary-nav > a:not(.nav-cta) { position: relative; }
.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--navy-700);
    transition: .2s ease;
}
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
    color: var(--white);
    background: var(--navy-900);
    padding: 11px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(11,40,77,.16);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--steel-300);
    background: var(--white);
    border-radius: 12px;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--navy-900);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 22%, rgba(98,126,158,.28), transparent 28%),
        linear-gradient(135deg, #061a33 0%, #0b2f57 56%, #465564 100%);
    padding: 94px 0 86px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
}
.hero-orbit-one { width: 530px; height: 530px; right: -210px; top: -180px; }
.hero-orbit-two { width: 380px; height: 380px; right: 130px; bottom: -250px; }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .73rem;
    font-weight: 850;
    color: #b9cee4;
}
.eyebrow-dark { color: var(--navy-700); }

.hero h1,
.section h2,
.statement-section h2,
.help-section h2 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3.1rem, 6vw, 5.9rem); }
.hero h1 span { color: #b8c8d8; }
.hero-copy > p {
    max-width: 700px;
    margin: 24px 0 30px;
    color: #e0e8ef;
    font-size: 1.1rem;
}

.hero-actions,
.help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.button-ghost {
    color: var(--white);
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
}
.button-light {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: var(--shadow-soft);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}
.hero-proof span {
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
    color: #cbd8e5;
    background: rgba(255,255,255,.04);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-logo-card {
    background: rgba(255,255,255,.98);
    color: var(--navy-950);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: 0 34px 75px rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.2);
}

.dcc-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}
.logo-placeholder { text-align: center; }
.logo-car-line {
    display: block;
    position: relative;
    width: 82%;
    height: 58px;
    margin: 0 auto -4px;
    border-top: 5px solid var(--navy-900);
    border-radius: 48% 58% 0 0;
    transform: skewX(-14deg);
}
.logo-car-line::before,
.logo-car-line::after {
    content: "";
    position: absolute;
    bottom: 1px;
    width: 58px;
    height: 20px;
    border-top: 4px solid var(--navy-900);
    border-radius: 50%;
}
.logo-car-line::before { left: 12%; }
.logo-car-line::after { right: 8%; }
.logo-dcc {
    font-size: clamp(4.7rem, 9vw, 7.3rem);
    font-weight: 950;
    line-height: .85;
    letter-spacing: -.12em;
    background: linear-gradient(90deg, var(--navy-900) 0 34%, #525d68 34% 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.logo-name {
    margin-top: 22px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 900;
    font-size: .88rem;
}
.logo-name em { font-style: normal; color: var(--steel-700); }
.logo-tagline {
    margin-top: 13px;
    font-style: italic;
    color: var(--navy-800);
    font-weight: 800;
    font-size: 1.05rem;
}
.logo-url {
    display: inline-block;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--steel-300);
    color: var(--navy-900);
    font-size: .82rem;
    font-weight: 800;
}
.logo-note {
    margin: 24px 0 0;
    text-align: center;
    color: var(--steel-700);
    font-size: .76rem;
}

.quick-strip {
    background: var(--white);
    border-bottom: 1px solid var(--steel-150);
    box-shadow: 0 10px 24px rgba(7,27,53,.05);
}
.quick-strip-grid {
    min-height: 92px;
    display: grid;
    grid-template-columns: .9fr 1.6fr auto;
    gap: 30px;
    align-items: center;
}
.quick-strip strong { font-size: 1rem; }
.quick-strip p { margin: 0; color: var(--steel-700); font-size: .92rem; }
.quick-strip a { color: var(--navy-700); font-weight: 800; white-space: nowrap; }

.section { padding: 92px 0; }
.section-muted { background: var(--steel-100); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section h2 { font-size: clamp(2.2rem, 4vw, 3.75rem); }
.section-heading p { margin: 16px 0 0; color: var(--steel-700); font-size: 1.02rem; }

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.topic-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--steel-150);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #b9c7d5; }
.topic-icon {
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    box-shadow: 0 10px 22px rgba(11,40,77,.17);
}
.topic-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.topic-card h3 { margin: 22px 0 10px; font-size: 1.2rem; line-height: 1.2; }
.topic-card p { margin: 0; color: var(--steel-700); font-size: .93rem; }
.card-link { margin-top: auto; padding-top: 24px; color: var(--navy-700); font-weight: 800; font-size: .88rem; }
.card-link b { margin-left: 4px; }

.questions-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
    align-items: start;
}
.questions-intro h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.questions-intro p { color: var(--steel-700); }
.text-link { color: var(--navy-700); font-weight: 850; }
.question-list { border-top: 1px solid var(--steel-300); }
.question-row {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 21px 0;
    border-bottom: 1px solid var(--steel-300);
    font-weight: 750;
}
.question-row:hover { color: var(--navy-700); }
.question-number { color: var(--steel-500); font-size: .72rem; letter-spacing: .12em; }
.question-row b { font-size: 1.2rem; }

.statement-section {
    padding: 84px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800) 72%, #495767);
}
.statement-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}
.statement-section h2 { max-width: 760px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.statement-section p { margin: 0; color: #dbe5ee; font-size: 1.1rem; }

.self-check {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center;
}
.self-check-copy h2 { font-size: clamp(2.3rem, 4vw, 3.7rem); }
.self-check-copy p { max-width: 700px; color: var(--steel-700); }
.self-check-copy .button { margin-top: 12px; background: var(--navy-900); color: var(--white); }
.score-card {
    max-width: 420px;
    margin-left: auto;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
    color: var(--white);
    box-shadow: var(--shadow);
}
.score-label { font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; color: #b8cbe0; font-weight: 800; }
.score-ring {
    display: grid;
    place-items: center;
    width: 135px;
    height: 135px;
    margin: 26px auto 30px;
    border-radius: 50%;
    border: 13px solid rgba(255,255,255,.14);
    outline: 2px solid rgba(255,255,255,.25);
}
.score-ring strong { font-size: 3.2rem; }
.score-bars { display: grid; gap: 10px; }
.score-bars span { display: block; height: 8px; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, #dfe8f0, #758ba2); }
.score-card small { display: block; margin-top: 20px; text-align: center; color: #c8d5e2; }

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.resource-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--steel-150);
    box-shadow: var(--shadow-soft);
}
.resource-kicker {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e5edf5;
    color: var(--navy-700);
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.resource-card h3 { margin: 18px 0 10px; line-height: 1.22; font-size: 1.26rem; }
.resource-card p { margin: 0; color: var(--steel-700); font-size: .92rem; }
.resource-card a { margin-top: auto; padding-top: 24px; color: var(--navy-700); font-weight: 850; }

.ask-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    padding: 52px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    box-shadow: var(--shadow);
}
.ask-panel h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.ask-panel p { color: #cfdae4; }
.ask-form { display: grid; gap: 16px; }
.ask-form label { display: grid; gap: 7px; }
.ask-form label > span { font-size: .78rem; font-weight: 850; letter-spacing: .04em; color: #d9e4ee; }
.ask-form input,
.ask-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}
.ask-form input::placeholder,
.ask-form textarea::placeholder { color: #aab9c8; }
.ask-form input:focus,
.ask-form textarea:focus { border-color: #adc3da; box-shadow: 0 0 0 3px rgba(173,195,218,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ask-form .button { justify-self: start; }

.about-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}
.about-grid h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.about-copy { color: var(--steel-700); font-size: 1.04rem; }
.about-copy p:first-child { margin-top: 0; }

.help-section {
    padding: 86px 0;
    color: var(--white);
    background: #07192d;
    border-top: 1px solid rgba(255,255,255,.08);
}
.help-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}
.help-section h2 { font-size: clamp(2.5rem, 5vw, 4.3rem); }
.help-copy p { max-width: 760px; color: #cfd9e3; }
.powered-link { color: #c9d8e8; font-size: .9rem; }
.help-badge {
    justify-self: end;
    width: min(100%, 390px);
    display: grid;
    gap: 12px;
}
.help-badge span {
    padding: 19px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    font-weight: 850;
    font-size: 1.06rem;
}

.site-footer {
    padding: 40px 0;
    background: #04111f;
    color: #c9d3de;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 50px;
    align-items: end;
}
.footer-grid strong { color: var(--white); }
.footer-grid p { margin: 4px 0 0; font-size: .82rem; color: #8fa0b0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: .82rem; font-weight: 700; }
.footer-meta { display: grid; gap: 3px; text-align: right; font-size: .76rem; color: #7f91a2; }

@media (max-width: 980px) {
    .nav-toggle { display: inline-block; }
    .primary-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border-radius: 18px;
        background: var(--white);
        border: 1px solid var(--steel-150);
        box-shadow: var(--shadow);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 10px 12px; }
    .nav-cta { text-align: center; margin-top: 5px; }

    .hero-grid,
    .questions-layout,
    .statement-grid,
    .self-check,
    .ask-panel,
    .about-grid,
    .help-grid { grid-template-columns: 1fr; }

    .hero-grid { gap: 46px; }
    .hero-logo-card { max-width: 650px; }
    .topic-grid,
    .resource-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-strip-grid { grid-template-columns: 1fr; gap: 4px; padding: 22px 0; }
    .score-card { margin: 0; }
    .help-badge { justify-self: start; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-meta { text-align: left; }
}

@media (max-width: 680px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .brand-copy small { display: none; }
    .brand-copy strong { font-size: .87rem; }
    .brand-mark { width: 46px; height: 46px; border-radius: 14px; }
    .hero { padding: 72px 0 64px; }
    .hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .hero-logo-card { padding: 26px 20px; }
    .section { padding: 72px 0; }
    .topic-grid,
    .resource-grid { grid-template-columns: 1fr; }
    .topic-card { min-height: 270px; }
    .section-heading-row { display: block; }
    .section-heading-row .text-link { display: inline-block; margin-top: 12px; }
    .question-row { grid-template-columns: 38px 1fr auto; gap: 10px; font-size: .92rem; }
    .statement-grid { gap: 30px; }
    .ask-panel { padding: 30px 22px; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .about-grid,
    .help-grid { gap: 34px; }
    .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
}
