:root {
    --ink: #181a1f;
    --gold: #d7ad4b;
    --moss: #355e4b;
    --paper: #f8fafc;
    --line: #e2e8f0;
}

body {
    background: var(--paper);
    color: var(--ink);
}

body > header {
    background: var(--ink) !important;
    border-bottom: 0 !important;
}

body > header > div {
    max-width: 72rem !important;
}

body > header a {
    color: rgba(255, 255, 255, 0.82) !important;
}

body > header .brand-link {
    color: #fff !important;
}

body > header .brand-link img {
    display: block;
}

body > header .brand-link span {
    color: #fff;
}

body > header .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

body > header .nav-link:hover {
    color: #fff !important;
}

body > header .cta-link {
    border-radius: 8px;
    border: 0;
    background: var(--gold);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: var(--ink) !important;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body > header .cta-link:hover {
    background: #fff;
    color: var(--ink) !important;
}

@media (max-width: 430px) {
    body > header .brand-link span {
        display: none;
    }
}

.text-emerald-700 {
    color: var(--moss) !important;
}

.text-amber-300 {
    color: var(--gold) !important;
}

.bg-slate-950,
.bg-slate-900 {
    background-color: var(--ink) !important;
}

.hover\:border-slate-950:hover,
.hover\:border-moss:hover {
    border-color: var(--gold) !important;
}

.bg-slate-50 {
    background-color: var(--paper) !important;
}

.text-slate-950,
.text-slate-900 {
    color: var(--ink) !important;
}

main > section:first-child {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(24, 26, 31, 0.96), rgba(24, 26, 31, 0.82) 48%, rgba(24, 26, 31, 0.58)),
        url("../logo.png") center / cover no-repeat !important;
}

main > section:first-child h1 {
    color: #fff;
}

main > section:first-child p:not(:first-child) {
    color: rgba(255, 255, 255, 0.78) !important;
}

main > section:nth-child(2) a.rounded-lg {
    background: #fff;
    border-color: var(--line) !important;
    box-shadow: 0 18px 50px rgba(24, 26, 31, 0.06);
}

main > section:nth-child(2) a.rounded-lg:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 22px 70px rgba(24, 26, 31, 0.1);
    transform: translateY(-2px);
}

main > section:last-child {
    background: var(--ink) !important;
    color: #fff;
}

main > section:last-child p {
    color: rgba(255, 255, 255, 0.72) !important;
}

main > section:last-child a {
    background: var(--gold) !important;
    color: var(--ink) !important;
}

body > main.mx-auto.max-w-5xl {
    max-width: none !important;
    padding: 0 !important;
}

article.max-w-3xl {
    position: relative;
    z-index: 0;
    max-width: none !important;
    padding: 4.5rem 1.25rem 0;
}

article.max-w-3xl::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 50%;
    z-index: -1;
    width: 100vw;
    height: 26rem;
    transform: translateX(-50%);
    background:
        linear-gradient(90deg, rgba(24, 26, 31, 0.97), rgba(24, 26, 31, 0.88) 54%, rgba(24, 26, 31, 0.62)),
        url("../logo.png") center / cover no-repeat;
}

article.max-w-3xl > p:first-child,
article.max-w-3xl > h1,
article.max-w-3xl > h1 + p {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

article.max-w-3xl > p:first-child {
    color: var(--gold) !important;
}

article.max-w-3xl > h1 {
    color: #fff !important;
}

article.max-w-3xl > h1 + p {
    color: rgba(255, 255, 255, 0.78) !important;
}

article.max-w-3xl > div.mt-10 {
    max-width: 56rem;
    margin: 4rem auto 0 !important;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 22px 70px rgba(24, 26, 31, 0.08);
}

article.max-w-3xl h2 {
    color: var(--ink) !important;
}

article.max-w-3xl a {
    color: var(--moss) !important;
}

aside.mt-12 {
    max-width: 56rem;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 4.5rem;
}

aside.mt-12 a {
    background: #fff !important;
    border: 1px solid var(--line);
    color: var(--ink) !important;
    box-shadow: 0 14px 40px rgba(24, 26, 31, 0.06);
}

aside.mt-12 a:last-child {
    background: var(--ink) !important;
    border-color: var(--ink);
    color: #fff !important;
}

aside.mt-12 a:hover {
    border-color: var(--gold);
}

@media (max-width: 640px) {
    article.max-w-3xl {
        padding-top: 3.5rem;
    }

    article.max-w-3xl::before {
        height: 30rem;
    }

    article.max-w-3xl > div.mt-10 {
        margin-top: 3rem !important;
        padding: 1.25rem;
    }
}
