:root {
    --ink-900: #1d1d1b;
    --ink-700: #42413d;
    --paper: #f5efe3;
    --paper-deep: #efe4d0;
    --forest: #1f4b3f;
    --forest-soft: #2f6d5b;
    --wine: #9c3d3d;
    --gold: #d5a44a;
    --white: #fffdf8;
    --line: rgba(29, 29, 27, 0.12);
    --shadow: 0 18px 45px rgba(47, 36, 19, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(213, 164, 74, 0.18), transparent 28%),
        linear-gradient(180deg, #f7f1e6 0%, #f1e8d8 100%);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

p {
    margin: 0;
    line-height: 1.7;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(245, 239, 227, 0.92);
    border-bottom: 1px solid var(--line);
}

.topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brandmark {
    display: block;
    width: auto;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

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

.quicknav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.quicknav__link:hover,
.action-button:hover {
    transform: translateY(-2px);
}

.quicknav__link--entry {
    background: linear-gradient(135deg, #28594d, #1c3f36);
    box-shadow: 0 10px 24px rgba(31, 75, 63, 0.24);
}

.quicknav__link--join {
    background: linear-gradient(135deg, #bc7045, #9c3d3d);
    box-shadow: 0 10px 24px rgba(156, 61, 61, 0.22);
}

.quicknav__link--launch {
    background: linear-gradient(135deg, #d5a44a, #b57a1f);
    box-shadow: 0 10px 24px rgba(181, 122, 31, 0.26);
}

.spotlight {
    padding: 72px 0 40px;
}

.spotlight .shell {
    padding: 56px;
    border: 1px solid rgba(31, 75, 63, 0.12);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(239, 228, 208, 0.88)),
        linear-gradient(180deg, rgba(31, 75, 63, 0.05), rgba(156, 61, 61, 0.05));
    box-shadow: var(--shadow);
}

.spotlight__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(31, 75, 63, 0.09);
    color: var(--forest);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spotlight h1 {
    max-width: 760px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.02;
}

.spotlight__lead {
    max-width: 760px;
    margin-top: 24px;
    font-size: 19px;
    color: var(--ink-700);
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 16px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--forest-soft), var(--forest));
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(31, 75, 63, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-button--light {
    background: linear-gradient(135deg, #fff4df, #f0d8a7);
    color: var(--ink-900);
    box-shadow: 0 14px 28px rgba(95, 74, 28, 0.18);
}

.perks,
.briefing,
.proof,
.helpdesk {
    margin-top: 34px;
}

.perks h2,
.briefing h2,
.proof h2,
.helpdesk h2,
.action-strip h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 22px;
}

.perks__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.perk-card {
    padding: 26px;
    border: 1px solid rgba(31, 75, 63, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.8);
    box-shadow: var(--shadow);
}

.perk-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.perk-card p,
.briefing p,
.proof__card p,
.helpdesk__answer,
.action-strip p {
    color: var(--ink-700);
}

.briefing {
    padding: 38px;
    border-left: 6px solid var(--forest);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(239, 228, 208, 0.74));
    box-shadow: var(--shadow);
}

.briefing p + p {
    margin-top: 18px;
}

.action-strip {
    margin-top: 34px;
    padding: 0 0 6px;
}

.action-strip__inner {
    padding: 34px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--forest) 0%, #203b50 100%);
    box-shadow: 0 20px 46px rgba(20, 46, 39, 0.28);
}

.action-strip h2,
.action-strip p {
    color: var(--white);
}

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

.proof h2 {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.proof__card {
    position: relative;
    padding: 28px 28px 28px 58px;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid rgba(156, 61, 61, 0.14);
    box-shadow: var(--shadow);
}

.proof__card::before {
    content: "“";
    position: absolute;
    left: 22px;
    top: 16px;
    color: var(--wine);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: 1;
}

.helpdesk__item {
    margin-bottom: 16px;
    border: 1px solid rgba(31, 75, 63, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.helpdesk__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--ink-900);
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.helpdesk__icon {
    color: var(--forest);
    transition: transform 0.25s ease;
}

.helpdesk__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.helpdesk__item.is-open .helpdesk__answer {
    padding: 0 22px 22px;
}

.helpdesk__item.is-open .helpdesk__icon {
    transform: rotate(180deg);
}

.page-end {
    margin-top: 56px;
    padding: 28px 0 42px;
    border-top: 1px solid var(--line);
    color: var(--ink-700);
}

.page-end p + p {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .perks__grid,
    .proof {
        grid-template-columns: 1fr;
    }

    .spotlight .shell,
    .briefing,
    .action-strip__inner {
        padding: 28px;
    }
}

@media (max-width: 720px) {
    .topbar__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .quicknav {
        width: 100%;
    }

    .quicknav__link {
        flex: 1 1 140px;
    }

    .spotlight {
        padding-top: 34px;
    }

    .spotlight__lead {
        font-size: 17px;
    }

    .proof__card {
        padding-left: 52px;
    }
}
