:root {
    --curtain: #1B182E;
    --curtain-deep: #131120;
    --raise: #241F3C;
    --marquee: #E9B23C;
    --chalk: #EDEAF4;
    --haze: #9C95B8;
    --line: rgba(237, 234, 244, .14);
    --display: "Archivo", system-ui, sans-serif;
    --body: "Newsreader", Georgia, serif;
    --util: "Archivo", system-ui, sans-serif;
    --gutter: clamp(1.25rem, 5vw, 5.5rem);
}

* {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    background: var(--curtain);
    color: var(--chalk);
    font-family: var(--body);
    font-size: clamp(1.0625rem, .4vw + 1rem, 1.1875rem);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit
}

:focus-visible {
    outline: 2px solid var(--marquee);
    outline-offset: 3px;
    border-radius: 2px
}

.wrap {
    max-width: 78rem;
    margin: 0 auto;
    padding-inline: var(--gutter)
}

/* ---- shared utility type ---- */
.eyebrow {
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 600;
    font-size: .6875rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--haze);
    margin: 0;
}

/* ---- masthead ---- */
.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.mark {
    font-family: var(--util);
    font-variation-settings: "wdth" 112, "wght" 700;
    font-size: .8125rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.mark b {
    color: var(--marquee);
    font-weight: inherit
}

.masthead nav {
    display: flex;
    gap: 1.5rem
}

.masthead nav a {
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 500;
    font-size: .8125rem;
    letter-spacing: .04em;
    color: var(--haze);
    text-decoration: none;
    padding-block: .25rem;
    transition: color .2s;
}

.masthead nav a:hover {
    color: var(--chalk)
}

/* ---- hero ---- */
.hero {
    padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3rem, 7vw, 6rem)
}

.hero h1 {
    font-family: var(--display);
    font-variation-settings: "wdth" 125, "wght" 700;
    font-size: clamp(2.75rem, 12.5vw, 10.5rem);
    line-height: .85;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin: 0;
    overflow-wrap: anywhere;
}

.hero h1 b {
    color: var(--marquee);
    font-weight: inherit
}

.lede {
    max-width: 34ch;
    margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
    font-size: clamp(1.25rem, 1vw + 1.0625rem, 1.625rem);
    line-height: 1.45;
}

.lede span {
    color: var(--haze)
}

/* ---- generic section ---- */
.band {
    padding-block: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--line)
}

.band>.eyebrow {
    margin-bottom: 2rem
}

/* ---- product ---- */
.product {
    background: var(--raise);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
    max-width: 44rem;
}

.product h2 {
    font-family: var(--display);
    font-variation-settings: "wdth" 118, "wght" 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -.01em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 .75rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 500;
    font-size: .75rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--haze);
    margin-bottom: 1.25rem;
}

.status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--marquee);
    flex: none;
}

.product p {
    margin: 0 0 1.5rem;
    color: var(--chalk)
}

.out {
    display: inline-block;
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 600;
    font-size: .8125rem;
    letter-spacing: .05em;
    color: var(--marquee);
    text-decoration: none;
    border-bottom: 1px solid rgba(233, 178, 60, .4);
    padding-bottom: 2px;
    transition: border-color .2s;
}

.out:hover {
    border-bottom-color: var(--marquee)
}

/* ---- facts ---- */
.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2.5rem clamp(2rem, 5vw, 4rem);
}

.facts dl {
    margin: 1.25rem 0 0
}

.facts dt {
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 600;
    font-size: .6875rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--haze);
    margin-top: 1.25rem;
}

.facts dt:first-child {
    margin-top: 0
}

.facts dd {
    margin: .3rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.5
}

.facts dd a {
    color: var(--chalk);
    text-decoration-color: var(--haze);
    text-underline-offset: 3px
}

/* ---- placeholder flag ---- */
.wrap .fill {
    color: var(--marquee);
    border-bottom: 1px dotted rgba(233, 178, 60, .75);
}

/* ---- footer ---- */
footer {
    border-top: 1px solid var(--line);
    padding-block: 2rem 3rem;
    display: flex;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 450;
    font-size: .8125rem;
    color: var(--haze);
}

footer nav {
    display: flex;
    gap: 1.5rem
}

footer a {
    color: var(--haze);
    text-decoration: none;
    transition: color .2s
}

footer a:hover {
    color: var(--chalk)
}

/* ---- entrance ---- */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(.6rem)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.anim {
    animation: rise .7s cubic-bezier(.2, .7, .3, 1) backwards
}

.d1 {
    animation-delay: .05s
}

.d2 {
    animation-delay: .2s
}

@media (prefers-reduced-motion:reduce) {
    .anim {
        animation: none
    }

    * {
        transition: none !important
    }
}

/* ---- interior pages (privacy, support) ---- */
.doc {
    max-width: 38rem;
    padding-block: clamp(3rem, 7vw, 5rem)
}

.doc h1 {
    font-family: var(--display);
    font-variation-settings: "wdth" 122, "wght" 700;
    font-size: clamp(2.25rem, 7vw, 4rem);
    line-height: .9;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin: .75rem 0 0;
}

.doc h2 {
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 600;
    font-size: .6875rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--haze);
    margin: 3rem 0 .75rem;
}

.doc p,
.doc li {
    color: var(--chalk)
}

.doc p {
    margin: 0 0 1.1rem
}

.doc ul {
    margin: 0 0 1.1rem;
    padding-left: 1.1rem
}

.doc li {
    margin-bottom: .5rem
}

.doc a {
    color: var(--marquee);
    text-underline-offset: 3px
}

.updated {
    font-family: var(--util);
    font-variation-settings: "wdth" 100, "wght" 500;
    font-size: .75rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--haze);
    margin: 1.5rem 0 0;
}

.note {
    border-left: 2px solid var(--marquee);
    background: var(--raise);
    padding: 1rem 1.25rem;
    border-radius: 0 4px 4px 0;
    margin: 0 0 2rem;
}

.note p {
    margin: 0;
    font-size: 1rem;
    color: var(--haze)
}