/* ==========================================================================
   Monad Platform — Shared Styles
   Dark theme: #030303 bg, #00e5ff accent, Geist Sans/Mono
   ========================================================================== */

/* --- Font Faces --- */
@font-face {
    font-family: 'Geist Sans';
    src: url('https://cdn.jsdelivr.net/fontsource/fonts/geist:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
    font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Geist Mono';
    src: url('https://cdn.jsdelivr.net/fontsource/fonts/geist-mono:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
    font-weight: 100 900; font-style: normal; font-display: swap;
}

/* --- Custom Properties --- */
:root {
    --bg: #030303;
    --surface: #0a0a0a;
    --surface-hover: #121212;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #00e5ff;
    --accent-glow: rgba(0, 229, 255, 0.15);
    --border: rgba(255, 255, 255, 0.08);
    --tracking-mega: 0.25em;
    --tracking-standard: 0.15em;
    --tracking-tight: -0.02em;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; box-shadow: none !important; text-shadow: none !important; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 5rem; overflow-x: hidden; }

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Geist Sans', system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, nav, .header-tagline, .meta-label, .btn, footer {
    text-transform: lowercase;
}

::selection { background: var(--accent); color: var(--bg); }

/* Scroll lock when mobile menu is open */
body.menu-open { overflow: hidden; }

/* --- Skip to Content (a11y) --- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    background: var(--accent);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: lowercase;
}

.skip-to-content:focus {
    top: 1rem;
}

/* --- Focus Styles (a11y) --- */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: var(--tracking-standard);
    z-index: 100;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    transition: none;
    margin-left: 3.5rem;
}

nav a:hover { color: var(--accent); }

nav.scrolled {
    background: rgba(3, 3, 3, 0.95);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.brand-container a {
    text-decoration: none;
    color: inherit;
    margin-left: 0;
}

.status-dot {
    width: 8px; height: 8px;
    background-color: var(--accent);
    border-radius: 1px;
    display: none;
}

/* --- Hamburger Toggle --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--text-muted);
    transition: none;
    position: absolute;
    left: 8px;
}

.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { content: ''; top: -7px; }
.nav-toggle span::after { content: ''; top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); background: var(--accent); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); background: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* --- Hero Section & Logo --- */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 5vw 0;
}

.monad-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 4rem;
}

.monad-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.monad-node {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.monad-node::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    top: 3px;
    right: 10px;
    transform: rotate(0deg);
    opacity: 0.5;
}

.monad-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(0, 229, 255, 0.3);
    border-radius: 50%;
}

/* Brand identity exception: monad orbit */
@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.monad-ring {
    animation: orbit 20s linear infinite;
}

header:hover .monad-ring {
    animation-duration: 4s;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

header:hover::before {
    opacity: 1;
}

header > * {
    position: relative;
    z-index: 1;
}

/* --- Typography --- */
h1 {
    font-weight: 300;
    font-size: clamp(1.75rem, 5vw, 5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

h2 {
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    letter-spacing: var(--tracking-tight);
    color: var(--text-main);
    margin-bottom: 3rem;
    line-height: 1.2;
}

h3 {
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p {
    font-weight: 300;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

strong { color: var(--text-main); font-weight: 500; }

.header-tagline {
    font-family: 'Geist Mono', monospace;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    letter-spacing: 0.3em;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 2;
}

.header-sub {
    font-family: 'Geist Sans', system-ui, sans-serif;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 2rem;
    max-width: 500px;
    text-transform: none;
}

.header-sub strong { color: var(--accent); font-weight: 400; }

.meta-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    margin-bottom: 2rem;
    color: var(--accent);
    display: block;
}

/* --- Horizon Line --- */
.horizon-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Metrics Bar (index) --- */
.metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 6vw;
}

.metric {
    text-align: center;
    padding: 0 1rem;
}

.metric-value {
    font-family: 'Geist Mono', monospace;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: lowercase;
}

/* --- Layout Grids --- */
section {
    padding: 10rem 6vw;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

/* --- Protocode Terminal Artifact --- */
.protocode-artifact {
    background: #050505;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 3rem;
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
    line-height: 2;
    position: relative;
    overflow: hidden;
}

.protocode-artifact::before {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.pc-comment { color: #666; }
.pc-keyword { color: var(--text-main); }
.pc-string { color: var(--accent); }
.pc-function { color: #a3a3a3; }
.pc-dim { color: #505050; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cursor {
    display: inline-block;
    width: 8px; height: 15px;
    background-color: var(--accent);
    vertical-align: middle;
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

.terminal-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.terminal-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

/* --- Module Cards --- */
.module-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.module-card {
    background: var(--surface);
    border: 1px solid rgba(0, 229, 255, 0.1);
    padding: 3rem 2.5rem;
    transition: none;
    position: relative;
}

.module-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.module-card p:last-child {
    margin-bottom: 0;
}

.module-metric {
    font-family: 'Geist Mono', monospace;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.module-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.module-card:hover {
    background: var(--surface-hover);
}

.module-card:hover::after {
    opacity: 0.3;
}

/* --- Step Cards (signals) --- */
.step-card {
    background: var(--surface);
    border: 1px solid rgba(0, 229, 255, 0.1);
    padding: 3rem 2.5rem;
    transition: none;
    position: relative;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-number {
    font-family: 'Geist Mono', monospace;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.step-card:hover {
    background: var(--surface-hover);
}

.step-card:hover::after {
    opacity: 0.3;
}

/* --- Proof Cards --- */
.proof-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: none;
}

.proof-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: var(--surface-hover);
}

.proof-card .proof-number {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.proof-card .proof-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

/* --- Diff Cards (pages) --- */
.diff-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    transition: none;
    position: relative;
}

.diff-card h3 {
    color: var(--accent);
    font-family: 'Geist Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.diff-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.diff-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.diff-card:hover {
    background: var(--surface-hover);
}

.diff-card:hover::after {
    opacity: 0.3;
}

/* --- Anti Cards (signals) --- */
.anti-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    transition: none;
}

.anti-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: var(--surface-hover);
}

.anti-card h3 {
    color: var(--accent);
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.anti-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: none;
}

/* --- Scroll Indicator --- */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: 'Geist Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: lowercase;
    opacity: 0.5;
    text-decoration: none;
}

.scroll-hint-arrow {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--text-muted));
}

/* --- CTA Section --- */
.cta-section {
    padding: 10rem 4vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle at 50% 100%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
}

.cta-qualifier {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 3rem;
    max-width: 500px;
    text-transform: lowercase;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geist Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--bg);
    background: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 1.1rem 3.5rem;
    text-decoration: none;
    transition: none;
    margin-top: 2rem;
    min-height: 44px;
}

.btn:hover {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
}

/* --- Footer --- */
footer {
    padding: 6rem 4vw;
    border-top: 1px solid var(--border);
    text-align: center;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    margin-top: 1.2rem;
    opacity: 0.5;
    letter-spacing: 0.2em;
}

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: none;
    letter-spacing: 0.15em;
}

.footer-link:hover { color: var(--accent); }

.footer-legal {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-legal a:hover { color: var(--accent); }

/* ==========================================================================
   Responsive — 1024px
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 4rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .metrics-bar { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .protocode-artifact { font-size: 0.7rem; padding: 3rem 1.5rem 2rem 1.5rem; }
    section { padding: 8rem 5vw; }
    .cta-section { padding: 8rem 4vw; }

    .nav-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 3, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transform: translateX(100%);
        transition: none;
        z-index: 99;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        font-size: 1.1rem;
        letter-spacing: 0.3em;
        padding: 0.75rem 2rem;
        min-height: 44px;
    }

    .scroll-hint { bottom: 1.5rem; }
}

/* ==========================================================================
   Responsive — 768px (single column grids)
   ========================================================================== */
@media (max-width: 768px) {
    section { padding: 6rem 1.25rem; }
    .cta-section { padding: 6rem 1.25rem; }
    .metrics-bar { padding: 4rem 1.25rem; gap: 2.5rem; }
    .metric-value { font-size: 1.3rem; }

    h1 { font-size: clamp(1.75rem, 8vw, 2.75rem); letter-spacing: -0.04em; word-break: break-word; }
    h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    .header-tagline { letter-spacing: 0.12em; font-size: 0.7rem; padding: 0 1rem; }
    .meta-label { letter-spacing: 0.2em; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; gap: 1rem; }
    .module-card { padding: 2rem 1.5rem; }
    .module-metric { font-size: 1.4rem; }
    .step-card { padding: 2rem 1.5rem; }
    .step-number { font-size: 1.4rem; }
    .diff-card { padding: 2rem 1.5rem; }
    .anti-card { padding: 2rem 1.5rem; }
    .monad-logo-container { width: 80px; height: 80px; margin-bottom: 3rem; }
    footer { letter-spacing: 0.15em; padding: 4rem 1.25rem; }
    .footer-tagline { letter-spacing: 0.1em; }

    .btn { padding: 1.2rem 2.5rem; font-size: 0.7rem; letter-spacing: 0.2em; width: 100%; }

    header { padding: 5rem 1.25rem 0; }
}

/* ==========================================================================
   Responsive — 480px (compact)
   ========================================================================== */
@media (max-width: 480px) {
    nav { padding: 1.2rem 5vw; }
    section { padding: 4rem 1.25rem; }
    .cta-section { padding: 4rem 1.25rem; }
    .metrics-bar { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.25rem; gap: 2rem; }
    .grid-2 { gap: 2.5rem; }
    .grid-3 { gap: 1.5rem; }
    .grid-4 { gap: 1rem; }

    .header-tagline { letter-spacing: 0.06em; }

    .protocode-artifact { padding: 2.5rem 1rem 1.5rem 1rem; font-size: 0.65rem; }
    .module-card { padding: 1.5rem 1.25rem; }
    .step-card { padding: 1.5rem 1.25rem; }
    .diff-card { padding: 1.5rem 1.25rem; }
    .anti-card { padding: 1.5rem 1.25rem; }
    .proof-card { padding: 1.5rem 1rem; }
    .btn { padding: 1rem 2rem; width: 100%; }
    footer { font-size: 0.65rem; }
}

/* ==========================================================================
   Responsive — 360px (small phones)
   ========================================================================== */
@media (max-width: 360px) {
    section { padding: 3rem 1rem; }
    .cta-section { padding: 3rem 1rem; }
    .metrics-bar { padding: 2.5rem 1rem; }
    footer { padding: 3rem 1rem; }
    header { padding: 5rem 1rem 0; }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ==========================================================================
   Legal Pages (privacy, terms)
   ========================================================================== */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.legal-page h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-page .legal-updated {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    display: block;
}

.legal-page .legal-tldr {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 3rem;
}

.legal-page .legal-tldr h2 {
    font-size: 1rem;
    font-family: 'Geist Mono', monospace;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.legal-page .legal-tldr ul {
    list-style: none;
    padding: 0;
}

.legal-page .legal-tldr li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.legal-page .legal-tldr li::before {
    content: '--';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page p {
    max-width: none;
    margin-bottom: 1.25rem;
}

.legal-page ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.legal-page li {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    line-height: 1.6;
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
}

.legal-page li::before {
    content: '--';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
}
