:root {
    --ink: #112629;
    --muted: #5f7376;
    --teal: #0f8d86;
    --teal-dark: #0a5556;
    --mint: #dff5ef;
    --aqua: #82d7cf;
    --rose: #e93d83;
    --paper: #fbfffd;
    --cream: #f7f4ec;
    --line: #dce9e6;
    --shadow: 0 20px 60px rgba(17, 38, 41, .14);
    --radius: 8px;
    --font-body: Lato, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: Poppins, Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    scroll-behavior: smooth;
}

body {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
ul {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin: 0 0 .75rem;
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 5.4rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
    font-size: 1.1rem;
}

p,
li,
a {
    overflow-wrap: break-word;
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .container,
    .narrow {
        width: 100%;
        padding-inline: 16px;
    }
}

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

.narrow {
    width: min(820px, calc(100% - 32px));
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 9999;
    width: auto;
    height: auto;
    margin: 12px;
    padding: 10px 14px;
    clip: auto;
    background: #fff;
    color: var(--ink);
}

.eyebrow {
    margin-bottom: .65rem;
    color: var(--teal);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.meta {
    color: var(--muted);
    font-size: .92rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--teal);
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.btn-secondary,
.btn-ghost {
    background: #fff;
    color: var(--teal-dark);
}

.btn-ghost {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
}

.btn-dark {
    background: var(--ink);
    border-color: var(--ink);
}

.btn-small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: .9rem;
}

.text-link {
    color: var(--teal-dark);
    font-weight: 800;
    border-bottom: 2px solid currentColor;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.flash {
    position: fixed;
    z-index: 80;
    right: 18px;
    bottom: 18px;
    max-width: min(420px, calc(100% - 36px));
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
    border-left: 5px solid var(--teal);
}

.flash-error {
    border-left-color: var(--rose);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
}
