:root {
    --ed-navy: #071a2b;
    --ed-navy-soft: #12334a;
    --ed-teal: #0b7f7a;
    --ed-teal-dark: #066661;
    --ed-teal-pale: #eaf6f5;
    --ed-platinum: #aeb8c4;
    --ed-ink: #173247;
    --ed-muted: #5c7181;
    --ed-line: #d8e1e6;
    --ed-surface: #f5f8f9;
    --ed-white: #fff;
    --ed-success: #237a57;
    --ed-warning: #9a6519;
    --ed-critical: #a13c3c;
    --ed-radius: 22px;
    --ed-shadow: 0 22px 60px rgba(7, 26, 43, .09);
}

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

.ed-public {
    color: var(--ed-ink);
    background: var(--ed-white);
    overflow: clip;
}

.ed-public h1,
.ed-public h2,
.ed-public h3,
.ed-public p {
    margin-top: 0;
}

.ed-public h1,
.ed-public h2 {
    color: var(--ed-navy);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.035em;
}

.ed-public h1 {
    max-width: 780px;
    margin-bottom: 26px;
    font-size: clamp(3.2rem, 6.8vw, 6.8rem);
    line-height: .93;
}

.ed-public h2 {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4.2vw, 4.25rem);
    line-height: 1.02;
}

.ed-public h3 {
    color: var(--ed-navy);
    font-size: 1.08rem;
    line-height: 1.3;
}

.ed-public p {
    color: var(--ed-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.ed-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 10px;
    color: var(--ed-muted);
    font-size: .82rem;
}

.ed-breadcrumb a {
    color: var(--ed-teal-dark);
    text-decoration: none;
}

.ed-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--ed-teal-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ed-eyebrow::before {
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
}

.ed-hero {
    position: relative;
    padding: 76px 0 104px;
    background:
        linear-gradient(rgba(11, 127, 122, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 127, 122, .035) 1px, transparent 1px),
        linear-gradient(135deg, #fff 10%, #f6fafb 100%);
    background-size: 48px 48px, 48px 48px, auto;
}

.ed-hero::after {
    position: absolute;
    top: 42px;
    right: -130px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(11, 127, 122, .18);
    border-radius: 50%;
    content: "";
}

.ed-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
}

.ed-hero__copy > p {
    max-width: 720px;
    margin-bottom: 34px;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.ed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ed-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid var(--ed-line);
    border-radius: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.ed-button:hover {
    transform: translateY(-2px);
}

.ed-button:focus-visible,
.ed-public a:focus-visible,
.ed-public summary:focus-visible {
    outline: 3px solid rgba(11, 127, 122, .35);
    outline-offset: 3px;
}

.ed-button--primary {
    border-color: var(--ed-navy);
    color: var(--ed-white);
    background: var(--ed-navy);
}

.ed-button--primary:hover {
    border-color: var(--ed-teal);
    background: var(--ed-teal-dark);
}

.ed-button--secondary {
    color: var(--ed-navy);
    background: rgba(255, 255, 255, .8);
}

.ed-button svg,
.ed-section-heading a svg {
    width: 19px;
    height: 19px;
}

.ed-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.ed-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ed-muted);
    font-size: .88rem;
    font-weight: 700;
}

.ed-trust-list svg {
    width: 18px;
    height: 18px;
    color: var(--ed-teal);
}

.ed-hero__visual {
    position: relative;
    padding: 26px;
    border: 1px solid var(--ed-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--ed-shadow);
}

.ed-visual__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ed-line);
    color: var(--ed-navy);
}

.ed-visual__top span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--ed-teal-dark);
    background: var(--ed-teal-pale);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ed-visual__top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27b7a6;
    box-shadow: 0 0 0 5px rgba(39, 183, 166, .12);
}

.ed-hero__visual > svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 390px;
}

.ed-hero__visual text {
    fill: var(--ed-ink);
    font-size: 16px;
    font-family: inherit;
}

.ed-flow-axis {
    fill: none;
    stroke: var(--ed-platinum);
    stroke-dasharray: 4 8;
    stroke-width: 2;
}

.ed-flow-line {
    fill: none;
    stroke: var(--ed-teal);
    stroke-width: 6;
}

.ed-flow-node circle:first-child {
    fill: var(--ed-white);
    stroke: var(--ed-teal);
    stroke-width: 5;
}

.ed-flow-node circle:last-child {
    fill: var(--ed-navy);
}

.ed-flow-node--final circle {
    fill: var(--ed-navy) !important;
    stroke: var(--ed-navy) !important;
}

.ed-flow-node--final path {
    fill: none;
    stroke: var(--ed-white);
    stroke-width: 3;
}

.ed-visual__boundary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--ed-ink);
    background: var(--ed-surface);
    font-size: .84rem;
    line-height: 1.45;
}

.ed-visual__boundary svg {
    width: 26px;
    min-width: 26px;
    height: 26px;
    color: var(--ed-teal);
}

.ed-principles,
.ed-pathway,
.ed-tracks,
.ed-evidence,
.ed-ai-boundary,
.ed-outcomes,
.ed-appeals,
.ed-faq,
.ed-contact {
    padding: 104px 0;
}

.ed-section-heading {
    max-width: 820px;
    margin-bottom: 48px;
}

.ed-section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ed-section-heading--center .ed-eyebrow {
    justify-content: center;
}

.ed-section-heading > p {
    max-width: 720px;
    font-size: 1.06rem;
}

.ed-section-heading--center > p {
    margin-right: auto;
    margin-left: auto;
}

.ed-section-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--ed-teal-dark);
    font-weight: 800;
    text-decoration: none;
}

.ed-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ed-principle-grid article {
    padding: 28px;
    border: 1px solid var(--ed-line);
    border-radius: var(--ed-radius);
    background: var(--ed-white);
}

.ed-principle-grid svg {
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
    color: var(--ed-teal);
}

.ed-principle-grid h3 {
    margin-bottom: 10px;
}

.ed-principle-grid p {
    margin-bottom: 0;
    font-size: .92rem;
}

.ed-pathway {
    background: var(--ed-navy);
}

.ed-pathway h2,
.ed-pathway h3 {
    color: var(--ed-white);
}

.ed-pathway .ed-section-heading p {
    color: #b7c8d3;
}

.ed-pathway .ed-eyebrow {
    color: #59d1c4;
}

.ed-stage-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding-left: 0;
    list-style: none;
}

.ed-stage-list li {
    position: relative;
    min-width: 0;
    padding: 0 24px 0 0;
}

.ed-stage-list li:not(:last-child)::after {
    position: absolute;
    top: 20px;
    right: 8px;
    left: 52px;
    height: 1px;
    background: rgba(174, 184, 196, .35);
    content: "";
}

.ed-stage-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border: 1px solid rgba(89, 209, 196, .65);
    border-radius: 50%;
    place-items: center;
    color: var(--ed-white);
    background: var(--ed-navy);
    font-weight: 800;
}

.ed-stage-list h3 {
    min-height: 48px;
    margin-bottom: 12px;
}

.ed-stage-list p {
    min-height: 130px;
    color: #b7c8d3;
    font-size: .87rem;
}

.ed-control-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    color: #7ad8cf;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.45;
}

.ed-control-label svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
}

.ed-track-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ed-track-card {
    position: relative;
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid var(--ed-line);
    border-radius: 28px;
    background: var(--ed-white);
    box-shadow: 0 16px 40px rgba(7, 26, 43, .05);
}

.ed-track-card--selective {
    color: var(--ed-white);
    border-color: var(--ed-navy);
    background: var(--ed-navy);
}

.ed-track-card > span {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--ed-teal-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ed-track-card--selective > span {
    color: #62d8cd;
}

.ed-track-card h3 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.ed-track-card--selective h3 {
    color: var(--ed-white);
}

.ed-track-card--selective p,
.ed-track-card--selective li {
    color: #c5d2da;
}

.ed-track-card ul {
    display: grid;
    gap: 12px;
    padding: 24px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--ed-line);
    list-style: none;
}

.ed-track-card--selective ul {
    border-color: rgba(255, 255, 255, .16);
}

.ed-track-card li {
    position: relative;
    padding-left: 22px;
    color: var(--ed-muted);
    font-size: .92rem;
}

.ed-track-card li::before {
    position: absolute;
    top: .55em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ed-teal);
    content: "";
}

.ed-evidence {
    background: var(--ed-surface);
}

.ed-evidence__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 72px;
}

.ed-dimension-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ed-dimension-grid article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--ed-line);
    border-radius: 18px;
    background: var(--ed-white);
}

.ed-dimension-grid article > span {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--ed-teal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.ed-dimension-grid h3 {
    margin-bottom: 8px;
}

.ed-dimension-grid p {
    margin-bottom: 0;
    font-size: .86rem;
}

.ed-ai-boundary__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 76px;
}

.ed-boundary-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--ed-line);
    border-radius: 24px;
}

.ed-boundary-table > div {
    display: grid;
    gap: 0;
    padding: 30px;
}

.ed-boundary-table > div:first-child {
    background: var(--ed-surface);
}

.ed-boundary-table > div:last-child {
    color: var(--ed-white);
    background: var(--ed-navy);
}

.ed-boundary-table span {
    margin-bottom: 20px;
    color: var(--ed-teal-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ed-boundary-table > div:last-child span {
    color: #62d8cd;
}

.ed-boundary-table strong {
    padding: 14px 0;
    border-bottom: 1px solid var(--ed-line);
    font-size: .92rem;
}

.ed-boundary-table > div:last-child strong {
    border-color: rgba(255, 255, 255, .14);
}

.ed-outcomes {
    background: var(--ed-surface);
}

.ed-outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ed-outcome-grid article {
    padding: 28px;
    border: 1px solid var(--ed-line);
    border-radius: 20px;
    background: var(--ed-white);
}

.ed-outcome-grid i {
    display: block;
    width: 38px;
    height: 5px;
    margin-bottom: 30px;
    border-radius: 999px;
}

.ed-outcome-grid .is-approved { background: var(--ed-success); }
.ed-outcome-grid .is-conditional { background: var(--ed-teal); }
.ed-outcome-grid .is-deferred { background: var(--ed-warning); }
.ed-outcome-grid .is-rejected { background: var(--ed-critical); }

.ed-outcome-grid p {
    margin-bottom: 0;
    font-size: .88rem;
}

.ed-appeals__card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 34px;
    padding: clamp(32px, 5vw, 60px);
    border: 1px solid var(--ed-line);
    border-radius: 30px;
    background: linear-gradient(135deg, #fff, var(--ed-teal-pale));
}

.ed-appeals__card > div:first-child {
    display: grid;
    width: 86px;
    height: 86px;
    border-radius: 22px;
    place-items: center;
    color: var(--ed-teal);
    background: var(--ed-white);
    box-shadow: var(--ed-shadow);
}

.ed-appeals__card svg {
    width: 38px;
    height: 38px;
}

.ed-appeals__card p {
    max-width: 850px;
    margin-bottom: 0;
}

.ed-faq {
    padding-top: 20px;
}

.ed-faq__list {
    display: grid;
    gap: 12px;
}

.ed-faq details {
    border: 1px solid var(--ed-line);
    border-radius: 16px;
    background: var(--ed-white);
}

.ed-faq summary {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    color: var(--ed-navy);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.ed-faq summary::-webkit-details-marker {
    display: none;
}

.ed-faq summary span {
    color: var(--ed-teal);
    font-size: 1.45rem;
    transition: transform .2s ease;
}

.ed-faq details[open] summary span {
    transform: rotate(45deg);
}

.ed-faq details p {
    max-width: 900px;
    padding: 0 22px 22px;
    margin-bottom: 0;
}

.ed-independent-notice {
    padding: 34px 0;
    color: #c3d1d9;
    background: var(--ed-navy);
}

.ed-independent-notice .shell {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.ed-independent-notice svg {
    width: 28px;
    min-width: 28px;
    height: 28px;
    color: #5dd4c7;
}

.ed-independent-notice strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ed-white);
}

.ed-independent-notice p {
    margin-bottom: 0;
    color: #b7c8d3;
    font-size: .88rem;
}

.ed-contact__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(32px, 6vw, 70px);
    border: 1px solid var(--ed-line);
    border-radius: 30px;
    background: var(--ed-surface);
}

.ed-contact__card p {
    max-width: 700px;
    margin-bottom: 0;
}

.ed-contact__card .ed-button svg {
    width: 19px;
    height: 19px;
}

@media (max-width: 1100px) {
    .ed-hero__grid,
    .ed-evidence__grid,
    .ed-ai-boundary__grid {
        grid-template-columns: 1fr;
    }

    .ed-hero__visual {
        max-width: 720px;
    }

    .ed-principle-grid,
    .ed-outcome-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ed-stage-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ed-stage-list li {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        padding: 0;
    }

    .ed-stage-list li::after {
        display: none;
    }

    .ed-stage-list p,
    .ed-stage-list h3 {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .ed-public h1 {
        font-size: clamp(2.85rem, 14vw, 4.5rem);
    }

    .ed-hero,
    .ed-principles,
    .ed-pathway,
    .ed-tracks,
    .ed-evidence,
    .ed-ai-boundary,
    .ed-outcomes,
    .ed-appeals,
    .ed-faq,
    .ed-contact {
        padding: 72px 0;
    }

    .ed-hero__grid {
        display: block;
    }

    .ed-hero__visual {
        padding: 18px;
        margin-top: 48px;
        border-radius: 20px;
    }

    .ed-visual__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .ed-hero__visual text {
        font-size: 14px;
    }

    .ed-trust-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ed-actions,
    .ed-contact__card {
        align-items: stretch;
        flex-direction: column;
    }

    .ed-button {
        width: 100%;
    }

    .ed-principle-grid,
    .ed-track-grid,
    .ed-dimension-grid,
    .ed-boundary-table,
    .ed-outcome-grid {
        grid-template-columns: 1fr;
    }

    .ed-appeals__card {
        grid-template-columns: 1fr;
    }

    .ed-appeals__card > div:first-child {
        width: 68px;
        height: 68px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ed-button,
    .ed-faq summary span {
        transition: none;
    }
}

@media print {
    .utility,
    .site-header,
    .footer,
    .ed-actions,
    .ed-contact {
        display: none !important;
    }

    .ed-public,
    .ed-hero,
    .ed-pathway,
    .ed-evidence,
    .ed-outcomes {
        color: #000;
        background: #fff !important;
    }

    .ed-public h1,
    .ed-public h2,
    .ed-public h3,
    .ed-pathway h2,
    .ed-pathway h3,
    .ed-public p,
    .ed-pathway p {
        color: #000 !important;
    }

    .ed-hero__visual,
    .ed-principle-grid article,
    .ed-track-card,
    .ed-outcome-grid article {
        box-shadow: none;
        break-inside: avoid;
    }
}
