/* ============================================================
   Global Reset & Variables
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* LagSwitcher palette */
    --ls-accent: #00e5ff;
    --ls-accent-dim: #00838f;
    --ls-bg: #0a0e17;
    --ls-bg-card: rgba(0, 229, 255, 0.04);
    --ls-glow: rgba(0, 229, 255, 0.25);

    /* Spoofer palette */
    --sp-accent: #b388ff;
    --sp-accent-dim: #7c4dff;
    --sp-bg: #0d0a17;
    --sp-bg-card: rgba(179, 136, 255, 0.04);
    --sp-glow: rgba(179, 136, 255, 0.25);

    /* Common */
    --text: #e0e0e0;
    --text-dim: #757575;
    --panel-bg: rgba(18, 18, 28, 0.85);
    --panel-border: rgba(255, 255, 255, 0.06);
    --radius: 4px;
    --mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    --sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   Background layers
   ============================================================ */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    image-rendering: pixelated;
}

.px-grid {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 8px 8px;
    animation: bg-fade 1.0s ease-out 0.3s both;
}

.scanlines {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(0, 0, 0, 0.07) 2px, rgba(0, 0, 0, 0.07) 4px
    );
    animation: bg-fade 1.0s ease-out 0.4s both;
}

.vignette {
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
        transparent 45%, rgba(0, 0, 0, 0.75) 100%);
    animation: bg-fade 0.8s ease-out 0.5s both, vignette-breathe 6s ease-in-out 1.5s infinite;
}

@keyframes bg-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes vignette-breathe {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.85; }
}

/* ============================================================
   MAIN PAGE — Split Screen
   ============================================================ */
.split-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.split-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    cursor: default;
}

.split-section--ls {
    background: transparent;
}

.split-section--sp {
    background: transparent;
}

/* Divider */
.split-divider {
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%
    );
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ============================================================
   Product Card (Main Page)
   ============================================================ */
.product-card {
    width: 100%;
    max-width: 440px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card--ls:hover {
    box-shadow: 0 12px 48px rgba(0, 229, 255, 0.12);
}

.product-card--sp:hover {
    box-shadow: 0 12px 48px rgba(179, 136, 255, 0.12);
}

.product-card__title {
    font-family: var(--mono);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-card--ls .product-card__title {
    color: var(--ls-accent);
}

.product-card--sp .product-card__title {
    color: var(--sp-accent);
}

.product-card__subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

/* Terminal Animation */
.terminal {
    background: #0c0c14;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    padding: 1rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    line-height: 1.7;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.terminal__header {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal__dot--red { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green { background: #28c840; }

.terminal__line {
    opacity: 0;
    animation: terminalFadeIn 0.4s forwards;
    white-space: nowrap;
}

.terminal__line--prompt {
    color: var(--text-dim);
}

.terminal__line--ls .terminal__line--accent {
    color: var(--ls-accent);
}

.terminal__line--sp .terminal__line--accent {
    color: var(--sp-accent);
}

@keyframes terminalFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.terminal__cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: currentColor;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
    opacity: 0.7;
}

@keyframes blink {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 0; }
}

/* Feature pills on card */
.product-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-pill {
    font-size: 0.72rem;
    font-family: var(--mono);
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    transition: all 0.25s ease;
}

.product-card--ls .feature-pill:hover {
    border-color: var(--ls-accent);
    color: var(--ls-accent);
    background: var(--ls-bg-card);
}

.product-card--sp .feature-pill:hover {
    border-color: var(--sp-accent);
    color: var(--sp-accent);
    background: var(--sp-bg-card);
}

.product-card__cta {
    display: block;
    text-align: center;
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.85rem;
    margin-top: 1.5rem;
    border-radius: 3px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.product-card--ls .product-card__cta {
    color: #0a0e17;
    background: var(--ls-accent);
    box-shadow: 0 0 16px var(--ls-glow);
}

.product-card--ls .product-card__cta:hover {
    background: #33ecff;
    box-shadow: 0 0 32px var(--ls-glow);
    transform: translateY(-1px);
}

.product-card--sp .product-card__cta {
    color: #0d0a17;
    background: var(--sp-accent);
    box-shadow: 0 0 16px var(--sp-glow);
}

.product-card--sp .product-card__cta:hover {
    background: #c9a6ff;
    box-shadow: 0 0 32px var(--sp-glow);
    transform: translateY(-1px);
}

/* ============================================================
   AUTH PAGE — Shared Layout (Spoofer & LagSwitcher)
   ============================================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.auth-page--sp {
    background: transparent;
}

.auth-page--ls {
    background: transparent;
}

/* Panel */
.auth-panel {
    width: 100%;
    max-width: 520px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 2.5rem 2.5rem 2rem;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    position: relative;
}

.auth-panel--sp {
    box-shadow:
        0 0 60px rgba(179, 136, 255, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.4);
}

.auth-panel--ls {
    box-shadow:
        0 0 60px rgba(0, 229, 255, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.4);
}

/* Subtle top-border glow */
.auth-panel--sp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sp-accent-dim), transparent);
}

.auth-panel--ls::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ls-accent-dim), transparent);
}

.auth-panel__title {
    font-family: var(--mono);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.auth-panel--sp .auth-panel__title {
    color: var(--sp-accent);
}

.auth-panel--ls .auth-panel__title {
    color: var(--ls-accent);
}

.auth-panel__subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* Form */
.auth-form {
    margin-bottom: 2rem;
}

.auth-input-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.auth-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 2.5rem 0.9rem 0.5rem;
    font-family: var(--mono);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.04em;
}

.auth-input::placeholder {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.auth-page--sp .auth-input:focus {
    border-bottom-color: var(--sp-accent);
    box-shadow: 0 2px 12px rgba(179, 136, 255, 0.15);
}

.auth-page--ls .auth-input:focus {
    border-bottom-color: var(--ls-accent);
    box-shadow: 0 2px 12px rgba(0, 229, 255, 0.15);
}

/* ============================================================
   Price Sidebar & Modal
   ============================================================ */
.price-trigger-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.price-trigger {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    height: 100%;
}

.auth-page--ls .price-trigger:hover { color: var(--ls-accent); }
.auth-page--sp .price-trigger:hover { color: var(--sp-accent); }

.price-sidebar {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    width: 220px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 1rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

/* Invisible bridge so hover state isn't lost when moving mouse to sidebar */
.price-sidebar::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    width: 20px;
}

.price-trigger-container:hover .price-sidebar,
.price-sidebar:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.auth-page--ls .price-sidebar {
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.08);
}

.auth-page--sp .price-sidebar {
    box-shadow: 0 8px 32px rgba(179, 136, 255, 0.08);
}

.price-sidebar__header {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-page--ls .price-sidebar__header { color: var(--ls-accent); }
.auth-page--sp .price-sidebar__header { color: var(--sp-accent); }

.price-sidebar__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-sidebar__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-sidebar__item:not(.price-sidebar__item--disabled):hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.auth-page--ls .price-sidebar__item:not(.price-sidebar__item--disabled):hover {
    border-color: var(--ls-accent-dim);
}

.auth-page--sp .price-sidebar__item:not(.price-sidebar__item--disabled):hover {
    border-color: var(--sp-accent-dim);
}

.price-sidebar__item--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    justify-content: center;
}

.price-sidebar__duration {
    color: var(--text);
}

.price-sidebar__cost {
    font-weight: 700;
}

.auth-page--ls .price-sidebar__cost { color: var(--ls-accent); }
.auth-page--sp .price-sidebar__cost { color: var(--sp-accent); }

/* Contact Modal */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal__content {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.auth-page--ls .contact-modal__content {
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.6);
}

.auth-page--sp .contact-modal__content {
    box-shadow: 0 0 60px rgba(179, 136, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.6);
}

.contact-modal.is-active .contact-modal__content {
    transform: translateY(0) scale(1);
}

.contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.contact-modal__close:hover {
    color: var(--text);
}

.contact-modal__title {
    font-family: var(--mono);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.auth-page--ls .contact-modal__title span { color: var(--ls-accent); }
.auth-page--sp .contact-modal__title span { color: var(--sp-accent); }

.contact-modal__subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.contact-modal__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-modal__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.contact-modal__link:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.auth-page--ls .contact-modal__link:hover {
    border-color: var(--ls-accent-dim);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.06);
}

.auth-page--sp .contact-modal__link:hover {
    border-color: var(--sp-accent-dim);
    box-shadow: 0 8px 24px rgba(179, 136, 255, 0.06);
}

.contact-modal__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text);
}

.auth-page--ls .contact-modal__link-icon { color: var(--ls-accent); }
.auth-page--sp .contact-modal__link-icon { color: var(--sp-accent); }

.contact-modal__link-info {
    display: flex;
    flex-direction: column;
}

.contact-modal__link-role {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.contact-modal__link-handle {
    font-family: var(--mono);
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/* Submit button */
.auth-btn {
    width: 100%;
    padding: 0.95rem;
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth-page--sp .auth-btn {
    color: #0d0a17;
    background: var(--sp-accent);
    box-shadow: 0 0 20px var(--sp-glow);
}

.auth-page--sp .auth-btn:hover:not(:disabled) {
    background: #c9a6ff;
    box-shadow: 0 0 36px var(--sp-glow);
    transform: translateY(-1px);
}

.auth-page--ls .auth-btn {
    color: #0a0e17;
    background: var(--ls-accent);
    box-shadow: 0 0 20px var(--ls-glow);
}

.auth-page--ls .auth-btn:hover:not(:disabled) {
    background: #33ecff;
    box-shadow: 0 0 36px var(--ls-glow);
    transform: translateY(-1px);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-btn__text {
    transition: opacity 0.2s ease;
}

.auth-btn--loading .auth-btn__text {
    opacity: 0;
}

.auth-btn__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.auth-page--sp .auth-btn__spinner {
    border-top-color: #0d0a17;
}

.auth-page--ls .auth-btn__spinner {
    border-top-color: #0a0e17;
}

.auth-btn--loading .auth-btn__spinner {
    opacity: 1;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Status message */
.auth-status {
    text-align: center;
    font-family: var(--mono);
    font-size: 0.8rem;
    min-height: 1.5rem;
    margin-top: 0.75rem;
    transition: opacity 0.3s ease;
}

.auth-status--success { color: #4caf50; }
.auth-status--error   { color: #ef5350; }

/* ============================================================
   Feature List (Auth Pages)
   ============================================================ */
.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.feature-list__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    transition: all 0.25s ease;
    cursor: default;
    white-space: nowrap;
}

.feature-list__item:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.auth-page--sp .feature-list__item:hover {
    border-color: var(--sp-accent);
    color: var(--sp-accent);
    background: var(--sp-bg-card);
    box-shadow: 0 0 10px var(--sp-glow);
}

.auth-page--ls .feature-list__item:hover {
    border-color: var(--ls-accent);
    color: var(--ls-accent);
    background: var(--ls-bg-card);
    box-shadow: 0 0 10px var(--ls-glow);
}

.feature-list__icon {
    font-size: 0.55rem;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.feature-list__item:hover .feature-list__icon {
    opacity: 1;
}

/* ============================================================
   Nav links (bottom of auth panels)
   ============================================================ */
.auth-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-nav__link {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.auth-page--sp .auth-nav__link:hover { color: var(--sp-accent); }
.auth-page--ls .auth-nav__link:hover { color: var(--ls-accent); }

/* ============================================================
   DISCLAIMER PAGE
   ============================================================ */
.disclaimer-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.disclaimer-panel {
    width: 100%;
    max-width: 680px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.disclaimer-panel__title {
    font-family: var(--mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef5350;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.disclaimer-panel__section {
    margin-bottom: 1.5rem;
}

.disclaimer-panel__heading {
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.disclaimer-panel__text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-dim);
}

.disclaimer-panel__text strong {
    color: var(--text);
    font-weight: 600;
}

.disclaimer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-nav__link {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.disclaimer-nav__link:hover {
    color: var(--text);
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(8, 8, 14, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.55rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.03em;
}

.site-footer__copy {
    opacity: 0.7;
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__link {
    color: var(--text-dim);
    transition: color 0.25s ease;
    opacity: 0.7;
}

.site-footer__link:hover {
    color: var(--text);
    opacity: 1;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split-divider {
        width: 100%;
        height: 1px;
    }

    .split-section {
        padding: 2.5rem 1.5rem;
    }

    .split-section:hover {
        flex: 1;
    }

    .product-card {
        max-width: 100%;
    }

    .auth-panel {
        padding: 2rem 1.5rem 1.5rem;
    }
}
