:root {
    --ink: #162033;
    --muted: #667085;
    --paper: #ffffff;
    --page: #f6f2ea;
    --line: #e4dac9;
    --navy: #10243f;
    --navy-2: #18385d;
    --maroon: #8e2f3f;
    --saffron: #c78f36;
    --teal: #1f7a74;
    --indigo: #465a91;
    --green: #3c7454;
    --soft: #fbf8f1;
    --shadow: 0 24px 70px rgba(22, 32, 51, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(180deg, rgba(16, 36, 63, .05), rgba(246, 242, 234, 0) 360px),
        var(--page);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    letter-spacing: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    margin: 0 auto;
    max-width: 1160px;
    padding: 0 22px;
    width: 100%;
}

.topbar {
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(228, 218, 201, .85);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 20;
}

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

.brand {
    align-items: center;
    display: inline-flex;
}

.brand img {
    display: block;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    width: min(290px, 35vw);
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.top-apc-link {
    background: linear-gradient(135deg, #f7d58f, #c78f36);
    border: 1px solid rgba(91, 61, 18, .22);
    box-shadow: 0 12px 28px rgba(199, 143, 54, .28);
    color: #14233a;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    min-height: 44px;
    padding: 13px 18px;
    text-transform: uppercase;
    white-space: nowrap;
}

.top-apc-link:hover {
    background: linear-gradient(135deg, #ffe2a3, #b87d26);
    transform: translateY(-1px);
}

.hero {
    background:
        radial-gradient(circle at 78% 26%, rgba(199, 143, 54, .18), transparent 34%),
        linear-gradient(135deg, #10243f 0%, #19395e 52%, #10243f 100%);
    color: #ffffff;
    overflow: hidden;
    padding: 78px 0 92px;
    position: relative;
}

.hero::after {
    background: linear-gradient(90deg, transparent, rgba(247, 223, 175, .34), transparent);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 118px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(32px, 6vw, 78px);
    grid-template-columns: minmax(0, 1fr) 390px;
}

.eyebrow {
    color: #f1cf92;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.hero h1,
.title {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(64px, 10vw, 118px);
    font-weight: 700;
    line-height: .82;
    margin: 0 0 18px;
}

.hero h2 {
    color: #f8ead0;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    margin: 0;
}

.hero-copy {
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.75;
    margin: 26px 0 0;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-panel {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(247, 223, 175, .5);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
    color: var(--ink);
    padding: 30px;
}

.hero-panel p {
    color: var(--maroon);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.hero-panel dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.hero-panel div {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: 104px 1fr;
    padding: 16px 0;
}

.hero-panel dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel dd {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.panel-link {
    border-top: 1px solid var(--line);
    color: var(--maroon);
    display: block;
    font-weight: 900;
    padding-top: 18px;
}

.section {
    padding: 34px 0;
}

.first-section {
    margin-top: -48px;
    padding-top: 0;
    position: relative;
    z-index: 2;
}

.card {
    background: var(--paper);
    border: 1px solid rgba(228, 218, 201, .9);
    box-shadow: var(--shadow);
    padding: clamp(28px, 5vw, 58px);
}

.center {
    text-align: center;
}

.copy-left {
    text-align: left;
}

.title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: .98;
    margin: 0 0 16px;
}

.uppercase {
    text-transform: uppercase;
}

.lead {
    color: #344054;
    font-size: 19px;
    line-height: 1.78;
    margin: 0 0 22px;
}

p,
li {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.78;
}

.intro {
    font-size: 20px;
}

.muted,
.note {
    color: var(--muted);
}

.note {
    border-left: 3px solid var(--saffron);
    font-style: italic;
    margin-top: 28px;
    padding-left: 18px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 18px 0 34px;
}

.badges span,
.pill {
    align-items: center;
    border: 1px solid currentColor;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.2;
    padding: 8px 11px;
    text-transform: uppercase;
}

.badges span:nth-child(1) {
    background: #f6f7f9;
    color: #344054;
}

.badges span:nth-child(2),
.teal-pill {
    background: #e7f4f2;
    color: var(--teal);
}

.badges span:nth-child(3),
.gold-pill {
    background: #fbf1de;
    color: #94651d;
}

.green-pill {
    background: #e9f3ed;
    color: var(--green);
}

.red-pill {
    background: #f7e8eb;
    color: var(--maroon);
}

.blue-pill {
    background: #e8edf7;
    color: var(--indigo);
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    text-transform: uppercase;
}

.btn-dark {
    background: #f3c778;
    color: #14233a;
}

.btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .38);
    color: #ffffff;
}

.btn-outline {
    background: #ffffff;
    border-color: var(--maroon);
    color: var(--maroon);
    font-size: 15px;
    margin-top: 24px;
    min-height: 54px;
}

.btn-outline:hover {
    background: var(--maroon);
    color: #ffffff;
}

.split,
.grid-2,
.grid-3 {
    display: grid;
    gap: 28px;
}

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

.split {
    margin-top: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.grid-3 article {
    background: var(--soft);
    border: 1px solid var(--line);
    padding: 24px;
}

.block {
    margin-top: 46px;
}

.panel {
    background: linear-gradient(135deg, #fbf8f1, #ffffff);
    border: 1px solid var(--line);
    margin-top: 46px;
    padding: 28px;
}

.payment-panel {
    background: linear-gradient(135deg, #10243f, #18385d);
    border: 1px solid rgba(247, 223, 175, .28);
    box-shadow: 0 18px 45px rgba(16, 36, 63, .16);
    color: #ffffff;
    margin-top: 28px;
    padding: 28px;
}

.payment-panel h3 {
    color: #f7dfaf;
}

.payment-panel dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.payment-panel div {
    border-top: 1px solid rgba(255, 255, 255, .16);
    display: grid;
    gap: 18px;
    grid-template-columns: 160px 1fr;
    padding: 14px 0;
}

.payment-panel dt {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.payment-panel dd {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.flush-list {
    border-top: 1px solid var(--line);
    list-style: none;
    margin: 0;
    padding: 0;
}

.flush-list li {
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
}

h3 {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 16px;
}

h4 {
    color: var(--navy-2);
    font-size: 16px;
    margin: 22px 0 8px;
    text-decoration: none;
}

.blue-text {
    color: var(--indigo);
}

.green-text {
    color: var(--green);
}

.red-text {
    color: var(--maroon);
}

.gold-text {
    color: var(--saffron);
}

.teal-text {
    color: var(--teal);
}

.indigo-text {
    color: var(--indigo);
}

.pdf-frame {
    background: #ffffff;
    border: 1px solid var(--line);
    display: block;
    height: 800px;
    margin-bottom: 46px;
    width: 100%;
}

.table-wrap {
    border: 1px solid var(--line);
    margin-top: 20px;
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    min-width: 680px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    color: #1f2937;
    padding: 15px 16px;
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

td {
    background: #ffffff;
}

tbody tr:nth-child(even) td {
    background: #fbf8f1;
}

thead {
    background: #efe7d8;
}

.danger-row td {
    background: #f7e8eb !important;
}

.success-head {
    background: #dfece4;
}

.info-head {
    background: #e1edf4;
}

blockquote {
    background: #e7f4f2;
    border-left: 4px solid var(--teal);
    color: #1f2937;
    line-height: 1.8;
    margin: 26px 0 0;
    padding: 20px 24px;
}

.warning {
    background: #fbf1de;
    border-left: 4px solid var(--saffron);
    color: #473600;
    margin-top: 20px;
    padding: 18px 22px;
}

@media (max-width: 900px) {
    .hero-grid,
    .split,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-bottom: 18px;
        padding-top: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .top-apc-link {
        width: 100%;
    }

    .hero {
        padding: 54px 0 76px;
    }

    .hero-panel {
        padding: 24px;
    }

    .first-section {
        margin-top: -34px;
    }

    .pdf-frame {
        height: 560px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }

    .topbar {
        position: static;
    }

    .nav {
        gap: 12px;
        min-height: 0;
        padding-bottom: 14px;
        padding-top: 14px;
    }

    .brand img {
        max-height: 52px;
        width: min(260px, 82vw);
    }

    .nav-links {
        display: none;
    }

    .top-apc-link {
        font-size: 12px;
        min-height: 48px;
        padding: 13px 14px;
        white-space: normal;
    }

    .hero {
        padding: 44px 0 62px;
    }

    .hero::after {
        top: 86px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: .12em;
    }

    .hero h1 {
        font-size: clamp(58px, 18vw, 76px);
        line-height: .88;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.65;
        margin-top: 20px;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 24px;
    }

    .hero-panel {
        padding: 20px;
    }

    .hero-panel div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 13px 0;
    }

    .card {
        box-shadow: 0 14px 36px rgba(22, 32, 51, .1);
        padding: 24px 18px;
    }

    .title {
        font-size: clamp(34px, 12vw, 46px);
    }

    .lead,
    .intro {
        font-size: 17px;
        line-height: 1.68;
    }

    p,
    li {
        font-size: 15px;
        line-height: 1.68;
    }

    h3 {
        font-size: 26px;
    }

    .badges {
        align-items: stretch;
        flex-direction: column;
    }

    .badges span,
    .pill {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .panel,
    .grid-3 article {
        padding: 18px;
    }

    .payment-panel {
        padding: 20px;
    }

    .payment-panel div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 0;
    }

    .block,
    .panel {
        margin-top: 34px;
    }

    .pdf-frame {
        height: 420px;
    }

    .table-wrap {
        border-left: 0;
        border-right: 0;
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
    }

    table {
        min-width: 620px;
    }

    th,
    td {
        padding: 12px;
    }

    blockquote,
    .warning {
        padding: 16px;
    }
}
