:root {
    --pri:          #f9452d;
    --pri-dark:     #d93a24;
    --pri-light:    #f19e11;

    --navy:         #071329;
    --navy-2:       #041b47;
    --silver:       #B7C6E6;
    --black:        #000000;

    --bg:           #071329;
    --bg-alt:       #061738;
    --card:         rgba(4, 36, 93, 0.42);
    --card-border:  rgba(241, 158, 17, 0.16);

    --white:        #ffffff;
    --muted:        #B7C6E6;
    --dim:          rgba(183, 198, 230, 0.68);

    --fd:           'Sora', sans-serif;
    --fb:           'DM Sans', sans-serif;

    --sp:           120px;
    --cw:           1280px;

    --t-fast:       .18s ease;
    --t:            .3s ease;
    --t-slow:       .5s ease;

    --glow:         0 0 48px rgba(249, 69, 45, 0.28);

    /* Blank Page Tokens */
    --bp-primary:    #f9452d;
    --bp-primary-2:  #f19e11;

    --bp-bg:         #071329;
    --bp-bg-2:       #061738;

    --bp-surface:    rgba(4, 36, 93, 0.42);
    --bp-surface-2:  rgba(4, 36, 93, 0.56);

    --bp-border:     rgba(183, 198, 230, 0.10);
    --bp-border-2:   rgba(241, 158, 17, 0.16);

    --bp-text:       #ffffff;
    --bp-text-2:     #B7C6E6;
    --bp-text-3:     rgba(183, 198, 230, 0.68);

    --bp-shadow:     0 24px 80px rgba(0, 0, 0, 0.34);
    --bp-radius:     28px;
    --bp-radius-md:  22px;
    --bp-radius-sm:  16px;
    --bp-container:  1280px;
    --bp-ease:       cubic-bezier(.22,1,.36,1);
}

.blank-page {
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 14% 18%, rgba(255,183,3,.10), transparent 24%),
        radial-gradient(circle at 85% 10%, rgba(77,163,255,.10), transparent 22%),
        linear-gradient(180deg, var(--bp-bg-2) 0%, var(--bp-bg) 100%);
    color: var(--bp-text);
}

.blank-page__container {
    width: min(var(--bp-container), calc(100% - 32px));
    margin-inline: auto;
}

.blank-page__hero {
    position: relative;
    padding: 84px 0 40px;
    overflow: hidden;
}

.blank-page__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, #000 35%, transparent 85%);
    opacity: .6;
}

.blank-page__breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: .92rem;
    color: var(--bp-text-3);
}

.blank-page__breadcrumb a {
    color: var(--bp-text-2);
    text-decoration: none;
    transition: color .3s ease;
}

.blank-page__breadcrumb a:hover {
    color: var(--bp-primary-2);
}

.blank-page__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.blank-page--align-center .blank-page__hero-inner,
.blank-page--align-center .blank-page__breadcrumb {
    margin-inline: auto;
    text-align: center;
    justify-content: center;
}

.blank-page__badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--bp-border-2);
    background: rgba(255,183,3,.08);
    color: #FFE0A1;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 16px;
}

.blank-page__title {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 900;
    color: var(--bp-text);
}

.blank-page__desc {
    margin: 18px 0 0;
    max-width: 68ch;
    color: var(--bp-text-2);
    font-size: 1.05rem;
    line-height: 1.9;
}

.blank-page--align-center .blank-page__desc {
    margin-inline: auto;
}

.blank-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
    color: var(--bp-text-3);
    font-size: .92rem;
}

.blank-page--align-center .blank-page__meta {
    justify-content: center;
}

.blank-page__actions {
    margin-top: 24px;
}

.blank-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bp-primary-2), var(--bp-primary));
    color: #1d1203;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(225,131,31,.18);
    transition: transform .35s var(--bp-ease), box-shadow .35s var(--bp-ease);
}

.blank-page__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(225,131,31,.22);
}

.blank-page__cover {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    border-radius: var(--bp-radius);
    overflow: hidden;
    border: 1px solid var(--bp-border);
    background: var(--bp-surface);
    box-shadow: var(--bp-shadow);
}

.blank-page__cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.blank-page__content-wrap {
    padding: 28px 0 80px;
}

.blank-page__content {
    position: relative;
    padding: 34px;
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    box-shadow: var(--bp-shadow);
    color: var(--bp-text-2);
    line-height: 2;
    font-size: 1.02rem;
    overflow-wrap: anywhere;
}

.blank-page--width-narrow .blank-page__content {
    max-width: 820px;
    margin-inline: auto;
}

.blank-page--width-normal .blank-page__content {
    max-width: 980px;
    margin-inline: auto;
}

.blank-page--width-wide .blank-page__content {
    max-width: 1160px;
    margin-inline: auto;
}

.blank-page__content > :first-child {
    margin-top: 0;
}

.blank-page__content > :last-child {
    margin-bottom: 0;
}

.blank-page__content h1,
.blank-page__content h2,
.blank-page__content h3,
.blank-page__content h4,
.blank-page__content h5,
.blank-page__content h6 {
    color: var(--bp-text);
    line-height: 1.25;
    letter-spacing: -.03em;
    margin: 1.4em 0 .6em;
    font-weight: 800;
}

.blank-page__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.blank-page__content h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.blank-page__content p,
.blank-page__content ul,
.blank-page__content ol,
.blank-page__content blockquote {
    margin: 0 0 1.15em;
}

.blank-page__content ul,
.blank-page__content ol {
    padding-left: 1.3rem;
}

.blank-page__content li + li {
    margin-top: .45em;
}

.blank-page__content a {
    color: var(--bp-primary-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blank-page__content strong {
    color: var(--bp-text);
    font-weight: 700;
}

.blank-page__content blockquote {
    margin: 1.4em 0;
    padding: 18px 20px;
    border-left: 3px solid var(--bp-primary);
    border-radius: 0 var(--bp-radius-sm) var(--bp-radius-sm) 0;
    background: rgba(255,255,255,.04);
    color: var(--bp-text-2);
}

.blank-page__content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.blank-page__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow: hidden;
    border-radius: 16px;
    border-style: hidden;
    box-shadow: 0 0 0 1px var(--bp-border);
}

.blank-page__content th,
.blank-page__content td {
    padding: 14px 16px;
    border: 1px solid var(--bp-border);
    text-align: left;
}

.blank-page__content th {
    color: var(--bp-text);
    background: rgba(255,255,255,.05);
}

@media (max-width: 991px) {
    .blank-page__hero {
        padding: 64px 0 28px;
    }

    .blank-page__content-wrap {
        padding: 22px 0 56px;
    }

    .blank-page__content {
        padding: 24px;
    }

    .blank-page__cover img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 640px) {
    .blank-page__container {
        width: min(var(--bp-container), calc(100% - 20px));
    }

    .blank-page__hero {
        padding: 44px 0 20px;
    }

    .blank-page__meta {
        flex-direction: column;
        gap: 8px;
    }

    .blank-page__content {
        padding: 18px;
        border-radius: 22px;
        font-size: .98rem;
    }

    .blank-page__cover {
        border-radius: 22px;
    }

    .blank-page__btn {
        width: 100%;
    }
}