:root {
    --ink: #090a0a;
    --ink-soft: #111313;
    --paper: #f3f1e9;
    --paper-deep: #dfddd4;
    --smoke: #b4b4ae;
    --muted: #747670;
    --signal: #f04424;
    --signal-dark: #c72e14;
    --acid: #d9ff43;
    --line: rgba(255, 255, 255, 0.12);
    --font-body: 'Archivo', sans-serif;
    --font-display: 'Barlow Condensed', sans-serif;
    --header-height: 4.75rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--ink);
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    line-height: 1.5;
    margin: 0;
    min-width: 20rem;
    overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a,
button,
summary,
input,
select,
textarea {
    outline-offset: 4px;
}

:focus-visible {
    outline: 2px solid var(--acid);
}

::selection {
    background: var(--signal);
    color: #fff;
}

.container {
    margin-inline: auto;
    max-width: 96rem;
    padding-inline: clamp(1.25rem, 6vw, 6rem);
    width: 100%;
}

.eyebrow {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    font-size: 0.64rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--signal);
    content: '';
    height: 0.55rem;
    width: 0.55rem;
}

.button {
    align-items: center;
    background: var(--signal);
    border: 1px solid var(--signal);
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 700;
    gap: 0.85rem;
    justify-content: center;
    letter-spacing: 0.13em;
    min-height: 3.35rem;
    padding: 0.9rem 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
    transform: translateY(-2px);
}

.button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.38);
    color: var(--paper);
}

.button--dark {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.validation-message {
    color: #ff795e;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.blazor-error-boundary {
    background: var(--signal-dark);
    color: white;
    padding: 1rem;
}

.blazor-error-boundary::after {
    content: 'Something went wrong.';
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}