:root {
    color-scheme: dark;
    --seo-bg: #040506;
    --seo-bg-soft: #090c10;
    --seo-surface: rgba(11, 14, 18, 0.88);
    --seo-surface-soft: rgba(255, 255, 255, 0.022);
    --seo-border: rgba(255, 255, 255, 0.075);
    --seo-border-strong: rgba(255, 255, 255, 0.14);
    --seo-text: rgba(243, 236, 228, 0.9);
    --seo-text-soft: rgba(255, 255, 255, 0.7);
    --seo-text-muted: rgba(255, 255, 255, 0.5);
    --seo-accent: #ff7f32;
    --seo-accent-soft: rgba(255, 127, 50, 0.1);
    --seo-accent-strong: #ffc299;
    --seo-shell-width: min(1180px, calc(100% - 2rem));
    --seo-content-width: min(860px, calc(100% - 2rem));
}

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

html {
    background:
        radial-gradient(circle at top center, rgba(255, 127, 50, 0.04), transparent 30%),
        linear-gradient(180deg, #050607 0%, #06080a 48%, #040506 100%);
}

body.seo-page {
    margin: 0;
    min-height: 100vh;
    color: var(--seo-text);
    font-family: "Inter", "Segoe UI", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.42);
    background:
        linear-gradient(rgba(5, 7, 9, 0.94), rgba(5, 7, 9, 0.94)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: auto, 160px 160px, 160px 160px;
}

body.seo-page a {
    color: inherit;
    text-decoration: none;
}

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

.seo-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(17, 17, 17, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.seo-topbar__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
}

.seo-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    justify-self: start;
}

.seo-brand__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
}

.seo-brand__copy {
    display: flex;
    align-items: center;
    min-width: 0;
}

.seo-brand__eyebrow,
.seo-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--seo-text-muted);
}

.seo-brand__title,
.seo-heading {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
}

.seo-brand__title {
    font-size: 1.89rem;
    line-height: 1;
    letter-spacing: 2px;
    color: transparent;
    background: linear-gradient(90deg, #e67328, #e65c1f, #eb8c4d);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
}

.seo-nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: fit-content;
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
}

.seo-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0.4rem 0.6rem;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #222;
    color: #ccc;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.2;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.seo-nav a:hover {
    background: #333;
    color: #ccc;
}

.seo-nav a[aria-current="page"] {
    background: #3a3a3a;
    border-color: transparent;
    color: var(--seo-accent);
    font-weight: 600;
}

.seo-shell {
    width: var(--seo-content-width);
    margin: 0 auto;
    padding: 1.5rem 0 3rem;
}

.seo-heading {
    margin: 0;
    color: rgba(247, 239, 232, 0.92);
}

.seo-text,
.seo-list li {
    color: var(--seo-text-soft);
    line-height: 1.6;
}

.seo-buttonRow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.seo-button,
.seo-linkButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.48rem 0.82rem;
    border-radius: 7px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.seo-button {
    background: rgba(255, 127, 50, 0.14);
    border-color: rgba(255, 127, 50, 0.26);
    color: #ffd8bf;
}

.seo-button:hover {
    background: rgba(255, 127, 50, 0.2);
    color: #fff0e4;
}

.seo-linkButton {
    border-color: var(--seo-border);
    background: rgba(255, 255, 255, 0.018);
    color: rgba(255, 255, 255, 0.72);
}

.seo-linkButton:hover {
    border-color: var(--seo-border-strong);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.9);
}

.seo-chipList {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.seo-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.22rem 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.022);
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    line-height: 1.2;
}

.seo-list {
    margin: 0;
    padding-left: 1.05rem;
}

.seo-section {
    padding: 1rem 0;
    border-top: 1px solid var(--seo-border);
}

.seo-section:first-child {
    border-top: 0;
    padding-top: 0;
}

@media (max-width: 920px) {
    .seo-topbar__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .seo-brand {
        justify-content: center;
    }

    .seo-brand__copy {
        justify-items: center;
    }

    .seo-nav {
        justify-content: center;
        margin: 0 auto;
    }

    .seo-shell {
        padding-top: 1.2rem;
    }
}

@media (max-width: 640px) {
    .seo-brand__title {
        font-size: 1.53rem;
    }

    .seo-nav {
        display: flex;
        position: static;
        left: auto;
        top: auto;
        gap: 0.5rem;
        width: 100%;
        max-width: none;
        justify-self: stretch;
        margin: 0 auto;
        transform: none;
    }

    .seo-nav a {
        font-size: 0.95rem;
    }
}
