/*
 * DudeSpin Casino Design System
 * A fixed dark theme inspired by a premium neon bowling lounge.
 */

:root {
    color-scheme: dark;
    --background: #0c0714;
    --background-elevated: #120b1d;
    --foreground: #f7f2ff;
    --foreground-soft: #e3d9ed;
    --card: #171022;
    --card-strong: #1e142c;
    --card-foreground: #f7f2ff;
    --muted: #251a34;
    --muted-foreground: #c9bed7;
    --border: #463258;
    --border-strong: #74518f;
    --primary: #d31268;
    --primary-hover: #ed1c78;
    --primary-foreground: #ffffff;
    --secondary: #6f35d9;
    --secondary-hover: #8250e8;
    --secondary-foreground: #ffffff;
    --accent: #f3c96b;
    --accent-hover: #ffda82;
    --accent-foreground: #21140a;
    --destructive: #a91f3e;
    --destructive-foreground: #ffffff;
    --success: #35b889;
    --success-foreground: #061c14;
    --info: #4c9dec;
    --info-foreground: #071725;
    --warning: #f0b84f;
    --warning-foreground: #251803;
    --neon-pink: #ff3a9d;
    --neon-purple: #a966ff;
    --neon-blue: #59d8ff;
    --gold: #f3c96b;
    --gold-deep: #9b6e26;
    --focus: #72dcff;
    --shadow-sm: 0 10px 28px rgba(4, 1, 9, 0.25);
    --shadow-md: 0 20px 55px rgba(4, 1, 9, 0.4);
    --shadow-neon: 0 0 32px rgba(211, 18, 104, 0.25);
    --radius-sm: 0.65rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;
    --container: 80rem;
    --content: 47rem;
    --header-height: 4.75rem;
    --font-body: "Manrope", sans-serif;
    --font-display: "Space Grotesk", sans-serif;
    --transition-fast: 160ms ease;
    --transition-base: 260ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Predictable layout
   ============================================ */

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

html {
    min-width: 20rem;
    scroll-behavior: smooth;
    background: var(--background);
}

body {
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 4%, rgba(111, 53, 217, 0.18), transparent 24rem),
        radial-gradient(circle at 92% 12%, rgba(211, 18, 104, 0.15), transparent 26rem),
        linear-gradient(180deg, var(--background) 0%, #100919 48%, var(--background) 100%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
video,
iframe,
embed,
object,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    font-style: italic;
}

button,
input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

ul,
ol {
    padding-left: 1.25rem;
}

p,
li,
td,
th,
dd,
figcaption {
    overflow-wrap: break-word;
}

pre,
code,
.code-block,
[class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
    white-space: pre;
}

.table-wrapper,
[class*="table-"] {
    min-width: 0;
    max-width: 100%;
}

.table-wrapper {
    overflow-x: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

section {
    position: relative;
    overflow: clip;
}

details {
    height: fit-content;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]) {
    color: var(--foreground);
    text-decoration: underline;
    text-decoration-color: var(--neon-pink);
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.18em;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]):hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}

a[href^="http"],
a[href^="mailto:"] {
    overflow-wrap: anywhere;
}

::selection {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* ============================================
   TYPOGRAPHY - Editorial hierarchy and rhythm
   ============================================ */

h1,
h2,
h3,
h4 {
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.16;
}

h1 {
    max-width: 16ch;
    font-size: clamp(2.4rem, calc(6vw + 0.3rem), 4.8rem);
}

h2 {
    font-size: clamp(1.85rem, calc(3.5vw + 0.7rem), 3.25rem);
}

h3 {
    font-size: clamp(1.2rem, calc(1.2vw + 0.9rem), 1.65rem);
}

h4 {
    font-size: 1.08rem;
}

p {
    margin: 0 0 var(--space-md);
}

p:last-child,
li:last-child {
    margin-bottom: 0;
}

small,
figcaption,
.caption {
    font-size: 0.875rem;
    line-height: 1.55;
}

strong {
    font-weight: 750;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin: 0 0 var(--space-md);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 0.15rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--neon-pink), var(--accent));
    content: "";
}

.text-gradient {
    background: linear-gradient(110deg, var(--foreground) 10%, var(--accent) 48%, var(--neon-pink) 92%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
}

.prose,
.article-content {
    max-width: var(--content);
}

.prose > * + *,
.article-content > * + * {
    margin-top: var(--space-lg);
}

.prose h2,
.article-content h2 {
    margin-top: var(--space-3xl);
}

.prose h3,
.article-content h3 {
    margin-top: var(--space-2xl);
}

.lead {
    color: var(--foreground-soft);
    font-size: clamp(1.05rem, calc(0.5vw + 0.95rem), 1.25rem);
    line-height: 1.75;
}

/* ============================================
   LAYOUT - Mobile-first containers and sections
   ============================================ */

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.content-narrow {
    width: min(100%, var(--content));
    margin-inline: auto;
}

.section {
    padding-block: var(--space-3xl);
}

.section--tight {
    padding-block: var(--space-2xl);
}

.section--surface {
    border-block: 1px solid rgba(116, 81, 143, 0.35);
    background:
        linear-gradient(135deg, rgba(111, 53, 217, 0.08), transparent 45%),
        var(--background-elevated);
}

.section--glow::before {
    position: absolute;
    top: 10%;
    left: 50%;
    width: min(34rem, 80vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(211, 18, 104, 0.1);
    filter: blur(5rem);
    transform: translateX(-50%);
    content: "";
    pointer-events: none;
}

.section-intro {
    max-width: 50rem;
    margin-bottom: var(--space-2xl);
}

.section-intro--center {
    margin-inline: auto;
    text-align: center;
}

.section-intro--center .eyebrow {
    justify-content: center;
}

.section-intro__lead {
    max-width: 46rem;
    color: var(--muted-foreground);
    font-size: 1.05rem;
}

.section-intro--center .section-intro__lead {
    margin-inline: auto;
}

.content-grid,
.card-grid,
.stats-grid,
.topic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    align-items: center;
}

.stack > * + * {
    margin-top: var(--space-lg);
}

/* ============================================
   ACCESSIBILITY - Focus, skip link and helpers
   ============================================ */

.skip-link {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 2000;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-foreground);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

.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;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

/* ============================================
   BUTTONS & LINKS - High-contrast actions
   ============================================ */

.button {
    display: inline-flex;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.72rem 1.05rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(120deg, var(--primary), #b60972);
    box-shadow: 0 10px 28px rgba(211, 18, 104, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--primary-foreground);
}

.button-primary:hover {
    background: linear-gradient(120deg, var(--primary-hover), var(--primary));
    box-shadow: 0 14px 34px rgba(211, 18, 104, 0.42);
}

.button-secondary {
    border-color: var(--border-strong);
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.button-secondary:hover {
    background: var(--secondary-hover);
}

.button-accent {
    background: linear-gradient(120deg, var(--accent), #e8a943);
    box-shadow: 0 10px 28px rgba(243, 201, 107, 0.2);
    color: var(--accent-foreground);
}

.button-accent:hover {
    background: linear-gradient(120deg, var(--accent-hover), var(--accent));
}

.button-ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--foreground);
}

.button-ghost:hover {
    border-color: var(--neon-purple);
    background: var(--muted);
}

.button-large {
    min-height: 3.25rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
}

.text-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(243, 201, 107, 0.5);
    text-underline-offset: 0.22em;
}

.text-link:hover {
    color: var(--foreground);
    text-decoration-color: var(--neon-pink);
}

/* ============================================
   HEADER & NAVIGATION - Opaque mobile drawer
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(116, 81, 143, 0.45);
    background: var(--background);
}

.site-header__inner {
    display: flex;
    width: min(calc(100% - 1.25rem), var(--container));
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-inline: auto;
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    min-height: 2.9rem;
    align-items: center;
    gap: 0.65rem;
    color: var(--foreground);
    text-decoration: none;
}

.site-brand__mark {
    position: relative;
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background:
        radial-gradient(circle at 38% 28%, #4d276d 0 8%, transparent 9%),
        radial-gradient(circle at 58% 24%, #4d276d 0 7%, transparent 8%),
        radial-gradient(circle at 48% 42%, #4d276d 0 7%, transparent 8%),
        linear-gradient(145deg, var(--neon-pink), var(--secondary));
    box-shadow: 0 0 22px rgba(255, 58, 157, 0.3);
}

.site-brand__mark::after {
    position: absolute;
    right: -0.15rem;
    bottom: -0.15rem;
    width: 1.1rem;
    height: 1.65rem;
    border-radius: 50% 50% 45% 45%;
    background: var(--foreground);
    box-shadow: inset 0 0.36rem 0 var(--primary);
    content: "";
    transform: rotate(18deg);
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 1;
}

.site-brand__text strong {
    font-size: clamp(1rem, calc(1.5vw + 0.5rem), 1.25rem);
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.site-brand__text small {
    margin-top: 0.23rem;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--card);
    cursor: pointer;
}

.menu-toggle span {
    width: 1.25rem;
    height: 0.13rem;
    border-radius: var(--radius-pill);
    background: var(--foreground);
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
}

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    max-width: 100vw;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-lg) 1rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--background);
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav__list a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 650;
    text-decoration: none;
}

.primary-nav__list a:hover,
.primary-nav__list a[aria-current="page"] {
    border-color: var(--neon-pink);
    color: var(--accent);
}

.header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

/* ============================================
   HERO - Integrated mascot and neon lane scene
   ============================================ */

.hero {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding-block: var(--space-2xl) var(--space-3xl);
    background:
        linear-gradient(90deg, transparent 0 9%, rgba(255, 58, 157, 0.12) 9.2% 9.35%, transparent 9.55% 100%),
        radial-gradient(circle at 80% 44%, rgba(111, 53, 217, 0.27), transparent 28rem);
}

.hero::before {
    position: absolute;
    right: -12rem;
    bottom: -7rem;
    width: 35rem;
    height: 17rem;
    border: 1px solid rgba(89, 216, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 2.5rem rgba(255, 58, 157, 0.035), 0 0 0 5rem rgba(111, 53, 217, 0.03);
    content: "";
    transform: rotate(-14deg);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__description {
    max-width: 43rem;
    color: var(--foreground-soft);
    font-size: clamp(1.03rem, calc(0.5vw + 0.95rem), 1.2rem);
}

.hero__description p {
    margin-bottom: var(--space-md);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.hero__note {
    max-width: 42rem;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 20rem;
    place-items: end center;
    isolation: isolate;
}

.hero__visual::before {
    position: absolute;
    right: 4%;
    bottom: 4%;
    left: 4%;
    height: 28%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 58, 157, 0.3), transparent 68%);
    filter: blur(1rem);
    content: "";
    z-index: -1;
}

.hero__visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 37rem);
    max-height: 38rem;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 22px 34px rgba(2, 0, 8, 0.55));
}

.hero__halo {
    position: absolute;
    top: 10%;
    left: 50%;
    width: min(25rem, 80vw);
    aspect-ratio: 1;
    border: 1px solid rgba(243, 201, 107, 0.28);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 53, 217, 0.25), rgba(211, 18, 104, 0.05) 56%, transparent 70%);
    box-shadow: inset 0 0 4rem rgba(255, 58, 157, 0.1), 0 0 3rem rgba(111, 53, 217, 0.16);
    transform: translateX(-50%);
    z-index: -1;
}

.hero__pin {
    position: absolute;
    z-index: 3;
    width: 1.5rem;
    height: 4.5rem;
    border-radius: 50% 50% 38% 38%;
    background: linear-gradient(90deg, #cabfd8, #ffffff 48%, #c7bbd5);
    box-shadow: inset 0 1.1rem 0 -0.82rem var(--neon-pink), 0 0 1.5rem rgba(255, 58, 157, 0.2);
}

.hero__pin--one {
    right: 3%;
    bottom: 9%;
    transform: rotate(14deg) scale(0.86);
}

.hero__pin--two {
    bottom: 2%;
    left: 4%;
    transform: rotate(-18deg) scale(0.65);
}

/* ============================================
   CARDS - Reusable content containers
   ============================================ */

.card,
.info-card,
.feature-card,
.topic-card,
.stat-highlight,
.social-proof-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 40%),
        var(--card);
    box-shadow: var(--shadow-sm);
}

.card,
.info-card {
    padding: var(--space-lg);
}

.feature-card,
.topic-card {
    position: relative;
    padding: var(--space-xl);
    overflow: hidden;
}

.feature-card::after,
.topic-card::after {
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 8rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(111, 53, 217, 0.16);
    filter: blur(1.5rem);
    content: "";
    pointer-events: none;
}

.feature-card--featured {
    border-color: var(--neon-pink);
    background:
        linear-gradient(140deg, rgba(211, 18, 104, 0.15), transparent 50%),
        var(--card-strong);
    box-shadow: var(--shadow-neon);
}

.feature-card__label {
    display: inline-flex;
    margin-bottom: var(--space-md);
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(243, 201, 107, 0.45);
    border-radius: var(--radius-pill);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card__description,
.topic-card__description {
    color: var(--muted-foreground);
}

.feature-card .text-link,
.topic-card .button {
    margin-top: var(--space-md);
}

.topic-card__number {
    display: inline-block;
    margin-bottom: var(--space-md);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

/* ============================================
   SUMMARY & CALLOUTS - Key takeaways and warnings
   ============================================ */

.summary-box {
    position: relative;
    max-width: 58rem;
    padding: var(--space-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(125deg, rgba(111, 53, 217, 0.2), rgba(211, 18, 104, 0.08) 55%, transparent),
        var(--card);
    box-shadow: var(--shadow-md);
}

.summary-box::after {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 11rem;
    aspect-ratio: 1;
    border: 1.2rem solid rgba(243, 201, 107, 0.05);
    border-radius: 50%;
    content: "";
}

.summary-box__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.summary-box__header h2 {
    margin: 0;
    font-size: clamp(1.25rem, calc(1.4vw + 0.9rem), 1.7rem);
}

.summary-box__signal {
    width: 0.75rem;
    height: 0.75rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 0 0.35rem rgba(255, 58, 157, 0.12), 0 0 1.2rem var(--neon-pink);
}

.summary-box__list {
    display: grid;
    gap: var(--space-sm);
    margin: var(--space-lg) 0 0;
    padding: 0;
    list-style: none;
}

.summary-box__list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--foreground-soft);
}

.summary-box__list li::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 0.55rem;
    height: 0.18rem;
    border-radius: var(--radius-pill);
    background: var(--accent);
    content: "";
}

.callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-md);
    margin-block: var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-left: 0.3rem solid var(--info);
    border-radius: var(--radius-md);
    background: var(--card);
}

.callout--warning {
    border-left-color: var(--warning);
    background: linear-gradient(90deg, rgba(240, 184, 79, 0.1), transparent 45%), var(--card);
}

.callout--danger {
    border-left-color: var(--destructive);
    background: linear-gradient(90deg, rgba(169, 31, 62, 0.15), transparent 45%), var(--card);
}

.callout--success {
    border-left-color: var(--success);
    background: linear-gradient(90deg, rgba(53, 184, 137, 0.12), transparent 45%), var(--card);
}

.callout__marker {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.42rem;
    border: 2px solid var(--info);
    border-radius: 50%;
    box-shadow: 0 0 0 0.25rem rgba(76, 157, 236, 0.1);
}

.callout--warning .callout__marker {
    border-color: var(--warning);
}

.callout--danger .callout__marker {
    border-color: var(--destructive);
}

.callout--success .callout__marker {
    border-color: var(--success);
}

.callout h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.callout__text {
    color: var(--foreground-soft);
}

/* ============================================
   STATS & STATUS - Evidence-aware data display
   ============================================ */

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-xl);
}

.stat-highlight__number {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(3vw + 1rem), 3.5rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-highlight__label {
    color: var(--foreground);
    font-weight: 750;
}

.stat-highlight__source {
    margin-top: var(--space-xs);
    color: var(--muted-foreground);
}

.status-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.status-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
}

.status-item__indicator {
    width: 0.85rem;
    height: 0.85rem;
    margin-top: 0.35rem;
    border: 2px solid var(--muted-foreground);
    border-radius: 50%;
}

.status-item--confirmed .status-item__indicator {
    border-color: var(--success);
    background: var(--success);
    box-shadow: 0 0 0 0.3rem rgba(53, 184, 137, 0.12);
}

.status-item--claimed .status-item__indicator {
    border-color: var(--warning);
    background: var(--warning);
    box-shadow: 0 0 0 0.3rem rgba(240, 184, 79, 0.1);
}

.status-item--conflict .status-item__indicator,
.status-item--open .status-item__indicator {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 0.3rem rgba(255, 58, 157, 0.1);
}

.status-item h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.08rem;
}

.status-item__text {
    color: var(--muted-foreground);
}

/* ============================================
   MEDIA PANELS & FIGURES - Framed content imagery
   ============================================ */

.media-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.media-panel__visual,
.content-figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: var(--shadow-md);
}

.media-panel__visual::after,
.content-figure::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.media-panel__visual img,
.content-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.media-panel__content h3 {
    font-size: clamp(1.6rem, calc(2vw + 1rem), 2.4rem);
}

.media-panel__text {
    color: var(--muted-foreground);
}

.content-figure {
    margin-block: var(--space-2xl);
}

.content-figure figcaption {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   PROCESS STEPS - Numbered explanatory sequence
   ============================================ */

.process-steps {
    display: grid;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.process-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
}

.process-step__number {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid var(--neon-pink);
    border-radius: 50%;
    background: rgba(211, 18, 104, 0.12);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
}

.process-step h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.08rem;
}

.process-step__text {
    color: var(--muted-foreground);
}

/* ============================================
   TABLES - Scrollable comparisons and highlighted columns
   ============================================ */

.table-wrapper {
    margin-block: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    color: var(--foreground-soft);
}

.comparison-table caption {
    padding: var(--space-lg);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 0.9rem 1rem;
    border-top: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    background: var(--muted);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.comparison-table tbody tr:hover td {
    background: rgba(111, 53, 217, 0.07);
}

.comparison-table .is-recommended {
    border-inline: 1px solid rgba(243, 201, 107, 0.38);
    background: rgba(243, 201, 107, 0.09);
    color: var(--foreground);
}

/* ============================================
   FAQ / DETAILS - Native accessible disclosures
   ============================================ */

.faq-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.faq-item {
    align-self: start;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item[open] {
    border-color: var(--border-strong);
    background: var(--card-strong);
}

.faq-item summary {
    position: relative;
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    padding: 1rem 3.2rem 1rem 1rem;
    color: var(--foreground);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--accent);
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform var(--transition-base), background var(--transition-fast);
}

.faq-item[open] summary::after {
    background: rgba(211, 18, 104, 0.14);
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:focus-visible {
    border-radius: var(--radius-md);
    outline-offset: 2px;
}

.faq-item__answer {
    padding: 0 1rem 1.2rem;
    color: var(--muted-foreground);
}

.faq-item__answer > *:last-child {
    margin-bottom: 0;
}

/* ============================================
   TRUST BADGES - Restrained evidence markers
   ============================================ */

.trust-badges {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: stretch;
}

.trust-badge {
    display: inline-flex;
    min-height: 3rem;
    flex: 1 1 10rem;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 700;
}

.trust-badge__mark {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    border: 0.2rem solid var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 0 0.2rem rgba(169, 102, 255, 0.1);
}

/* ============================================
   PULL QUOTE - Editorial visual break
   ============================================ */

.pull-quote {
    position: relative;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) 0 var(--space-xl) var(--space-xl);
    border-left: 0.25rem solid var(--neon-pink);
}

.pull-quote::before {
    position: absolute;
    top: -1.2rem;
    left: 0.8rem;
    color: var(--accent);
    content: "“";
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.pull-quote blockquote {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, calc(1.6vw + 1rem), 2rem);
    font-weight: 650;
    line-height: 1.4;
}

.pull-quote figcaption {
    margin-top: var(--space-md);
    color: var(--muted-foreground);
}

/* ============================================
   SOCIAL PROOF - Available only for supplied evidence
   ============================================ */

.social-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.social-proof-card {
    padding: var(--space-xl);
}

.social-proof-card blockquote {
    margin: 0 0 var(--space-lg);
    color: var(--foreground-soft);
    font-size: 1.05rem;
}

.social-proof-card__attribution {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.social-proof-card__attribution strong {
    color: var(--foreground);
}

/* ============================================
   CTA BAND - Conversion section after disclosures
   ============================================ */

.cta-band {
    border-block: 1px solid rgba(243, 201, 107, 0.32);
    background:
        radial-gradient(circle at 15% 50%, rgba(211, 18, 104, 0.22), transparent 24rem),
        radial-gradient(circle at 85% 50%, rgba(111, 53, 217, 0.25), transparent 23rem),
        linear-gradient(125deg, #191025, #100918);
}

.cta-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
    padding-block: var(--space-3xl);
    text-align: center;
}

.cta-band h2 {
    margin-inline: auto;
    max-width: 20ch;
}

.cta-band__text {
    max-width: 45rem;
    margin-inline: auto;
    color: var(--foreground-soft);
}

.cta-band__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.cta-band__action small {
    max-width: 28rem;
    color: var(--muted-foreground);
}

/* ============================================
   BREADCRUMBS & ARTICLE META - Non-promotional orientation
   ============================================ */

.breadcrumbs {
    padding-block: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: var(--space-xs);
    color: var(--border-strong);
    content: "/";
}

.breadcrumbs a {
    color: var(--foreground-soft);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    margin-block: var(--space-lg);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   PAYMENT / PROVIDER MARKS - Text-safe logo rows
   ============================================ */

.mark-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

.mark-chip {
    display: grid;
    min-height: 3.6rem;
    place-items: center;
    padding: var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    color: var(--foreground-soft);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

/* ============================================
   FOOTER - Navigation, disclosures and 18+ status
   ============================================ */

.site-footer {
    border-top: 1px solid var(--border);
    background: #09050f;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    padding-block: var(--space-3xl);
}

.site-brand--footer {
    pointer-events: none;
}

.site-footer__brand p {
    max-width: 34rem;
    margin-top: var(--space-lg);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.site-footer h2 {
    margin-bottom: var(--space-md);
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer__nav ul,
.footer-status-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--foreground-soft);
    text-decoration: underline;
    text-decoration-color: var(--border-strong);
    text-underline-offset: 0.2em;
}

.site-footer__nav a:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}

.footer-status-list {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-status-list strong {
    color: var(--foreground);
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
    justify-content: space-between;
    padding-block: var(--space-lg);
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.site-footer__bottom p {
    margin: 0;
}

.age-badge {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
}

/* ============================================
   FORMS - Consistent controls if informational pages need them
   ============================================ */

label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: var(--foreground);
}

textarea {
    min-height: 8rem;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #b8adca;
}

/* ============================================
   PROGRESSIVE REVEALS - Visible without JavaScript
   ============================================ */

.js-motion .reveal-pending {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-motion .reveal-pending.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TABLET - Wider grids and calmer spacing
   ============================================ */

@media (min-width: 48rem) {
    :root {
        --header-height: 5rem;
    }

    .container {
        width: min(calc(100% - 3rem), var(--container));
    }

    .section {
        padding-block: var(--space-4xl);
    }

    .card-grid,
    .stats-grid,
    .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid--three .feature-card:last-child:nth-child(odd),
    .topic-grid--three .topic-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .mark-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .summary-box,
    .callout {
        padding: var(--space-xl);
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 0.96fr);
        gap: var(--space-lg);
    }

    .hero__visual {
        min-height: 31rem;
    }

    .hero__visual img {
        max-height: 43rem;
    }

    .media-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2xl);
    }

    .media-panel--reverse .media-panel__visual {
        order: 2;
    }

    .media-panel--reverse .media-panel__content {
        order: 1;
    }

    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band__inner {
        grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.5fr);
        text-align: left;
    }

    .cta-band h2,
    .cta-band__text {
        margin-inline: 0;
    }

    .site-footer__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    }

    .site-footer__trust {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
    }
}

/* ============================================
   DESKTOP NAVIGATION - Inline navigation at 1024px
   ============================================ */

@media (min-width: 64rem) {
    .site-header {
        background: rgba(12, 7, 20, 0.94);
        -webkit-backdrop-filter: blur(1rem);
        backdrop-filter: blur(1rem);
    }

    .site-header__inner {
        width: min(calc(100% - 2rem), var(--container));
        gap: var(--space-lg);
    }

    .menu-toggle {
        display: none;
    }

    .primary-nav,
    .primary-nav.is-open {
        position: static;
        display: flex;
        min-width: 0;
        max-width: none;
        flex: 1;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: var(--space-md);
        padding: 0;
        overflow: visible;
        background: transparent;
    }

    .primary-nav__list {
        min-width: 0;
        flex-direction: row;
        align-items: center;
        gap: 0.1rem;
    }

    .primary-nav__list a {
        min-height: 2.75rem;
        padding: 0.5rem 0.58rem;
        border: 0;
        border-radius: var(--radius-pill);
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .primary-nav__list a:hover,
    .primary-nav__list a[aria-current="page"] {
        background: var(--muted);
    }

    .header-actions {
        display: flex;
        flex: 0 0 auto;
        gap: var(--space-xs);
        margin: 0;
        padding: 0;
        border: 0;
    }

    .header-actions .button {
        padding-inline: 0.82rem;
        font-size: 0.8rem;
    }

    .hero {
        padding-block: var(--space-3xl);
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.92fr);
        gap: var(--space-2xl);
    }

    .hero__visual {
        min-height: 39rem;
    }

    .content-grid--sidebar {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.34fr);
        gap: var(--space-3xl);
    }

    .card-grid--three,
    .topic-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid--three .feature-card:last-child:nth-child(odd),
    .topic-grid--three .topic-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .stats-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-steps--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(13rem, 0.65fr) minmax(0, 1fr);
    }

    .site-footer__trust {
        grid-column: auto;
    }
}

/* ============================================
   LARGE DESKTOP - Controlled maximum composition
   ============================================ */

@media (min-width: 80rem) {
    .primary-nav__list a {
        padding-inline: 0.75rem;
        font-size: 0.84rem;
    }

    .header-actions .button {
        padding-inline: 1rem;
        font-size: 0.86rem;
    }

    .hero__grid {
        gap: var(--space-3xl);
    }
}

/* ============================================
   SMALL MOBILE - Preserve header fit at 320px
   ============================================ */

@media (max-width: 23.4rem) {
    .site-header__inner {
        width: calc(100% - 0.8rem);
    }

    .site-brand {
        gap: 0.45rem;
    }

    .site-brand__mark {
        width: 2rem;
        height: 2rem;
    }

    .site-brand__text strong {
        font-size: 0.95rem;
    }

    .menu-toggle {
        width: 2.75rem;
        height: 2.75rem;
    }

    .header-actions {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================================
   SITEMAP - Neutral directory without promotional actions
   ============================================ */

.sitemap-hero {
    padding-block: var(--space-md) var(--space-3xl);
    border-bottom: 1px solid rgba(116, 81, 143, 0.35);
    background:
        linear-gradient(115deg, rgba(111, 53, 217, 0.14), transparent 48%),
        radial-gradient(circle at 88% 20%, rgba(211, 18, 104, 0.13), transparent 22rem);
}

.sitemap-hero__content {
    padding-top: var(--space-xl);
}

.sitemap-hero h1 {
    max-width: none;
}

.sitemap-directory {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

.sitemap-entry {
    position: relative;
    min-width: 0;
    padding: var(--space-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 42%),
        var(--card);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sitemap-entry:not(.sitemap-entry--static):not(.sitemap-entry--current):not(.sitemap-entry--technical):hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sitemap-entry::after {
    position: absolute;
    top: -3.5rem;
    right: -3.5rem;
    width: 9rem;
    aspect-ratio: 1;
    border: 1rem solid rgba(169, 102, 255, 0.045);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.sitemap-entry__meta {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-transform: uppercase;
}

.sitemap-entry h3 {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-sm);
}

.sitemap-entry h3 a {
    color: var(--foreground);
    text-decoration: underline;
    text-decoration-color: var(--neon-pink);
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.2em;
}

.sitemap-entry h3 a:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}

.sitemap-entry p {
    position: relative;
    z-index: 1;
    color: var(--muted-foreground);
}

.sitemap-entry--static {
    border-color: rgba(243, 201, 107, 0.35);
}

.sitemap-entry--current {
    border-color: var(--neon-pink);
    background:
        linear-gradient(135deg, rgba(211, 18, 104, 0.14), transparent 55%),
        var(--card-strong);
    box-shadow: var(--shadow-neon);
}

.sitemap-entry--technical {
    border-style: dashed;
    background: rgba(23, 16, 34, 0.72);
}

.sitemap-entry--technical .sitemap-entry__meta,
.sitemap-entry--technical p {
    color: var(--muted-foreground);
}

@media (min-width: 48rem) {
    .sitemap-hero {
        padding-bottom: var(--space-4xl);
    }

    .sitemap-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   REDUCED MOTION - No hidden or moving content
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js-motion .reveal-pending,
    .js-motion .reveal-pending.is-visible {
        opacity: 1;
        transform: none;
    }
}
