/* --- Сброс и глобальные переменные --- */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: thin;
    scrollbar-color: var(--border-hover) rgba(0, 0, 0, 0.2);
}

/* Эффект загрузки для кнопок и модалок */
.btn-loading {
    position: relative;
    background: #3a3a3a !important;
    border-color: #5b5b5b !important;
    color: #d4d4d4 !important;
    cursor: wait !important;
    opacity: 0.82;
    pointer-events: none;
    padding-right: 42px !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: auto;
    right: 12px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: button-loading-spinner 0.6s linear infinite;
}

.tg-notification-preset {
    border: 1px solid #4c1d95;
    background: #16121f;
    color: #ddd6fe;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.tg-notification-preset:hover {
    border-color: #a855f7;
    color: #fff;
    background: #241236;
}

@keyframes button-loading-spinner {
    to { transform: rotate(360deg); }
}

.btn-cooldown,
.btn-cooldown:disabled {
    background: #303030 !important;
    border-color: #525252 !important;
    color: #b8b8b8 !important;
    cursor: not-allowed !important;
    opacity: 0.88;
}

.pending-registration-button {
    background: rgba(124, 58, 237, 0.18) !important;
    border-color: #8b5cf6 !important;
    color: #f3e8ff !important;
}

/* Красивый блок для ошибок в модалках */
#errorContainer div {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
    animation: shakeError 0.3s ease-in-out;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

:root {
    --bg-main: #09090b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --bg-card-solid: #18181b;
    --bg-hover: rgba(39, 39, 42, 0.45);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-glow: rgba(139, 92, 246, 0.2);
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInPage 0.2s ease forwards;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .section-title {
    letter-spacing: -0.03em;
    line-height: 1.15;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Прелоадер и анимации рамки --- */
#preloader-line {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader-line::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(45deg, #7b2cbf, #9d4edd, #c77dff, #e0aaff, #7b2cbf) 1;
    box-shadow: inset 0 0 15px rgba(199, 125, 255, 0.4), 0 0 15px rgba(157, 78, 221, 0.4);
    stroke-dasharray: 1000;
    animation: borderRun 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

@keyframes borderRun {
    0% { clip-path: inset(0 100% 100% 0); }
    25% { clip-path: inset(0 0 100% 0); }
    50% { clip-path: inset(0 0 0 0); }
    75% { clip-path: inset(0 0 0 100% / 0 0 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

/* --- Кастомный скроллбар (WebKit) --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 8px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* --- Шапка и навигация --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(7, 7, 7, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 12px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    flex-shrink: 0;
    color: #f4f4f5;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    inset: -14px -20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    border-radius: 50%;
}

.logo-container:hover::after {
    opacity: 1;
}

.logo-container:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.logo-container svg {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-container:hover svg {
    transform: scale(1.15) rotate(4deg);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.7));
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* --- Кнопки --- */
button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-button-target {
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-button-target::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle 120px at var(--mouse-x, 0%) var(--mouse-y, 0%), 
        rgba(124, 58, 237, 0.4) 0%, 
        rgba(139, 92, 246, 0.25) 20%, 
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.glow-button-target:hover::before {
    opacity: 1;
}

.glow-button-target > * {
    position: relative;
    z-index: 2;
}

.glow-button-target:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.35), 0 4px 14px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.glow-button-target:active {
    transform: translateY(0);
}

.btn-dark-sm {
    background: rgba(39, 39, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f4f4f5;
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-dark-sm:hover {
    background: rgba(63, 63, 70, 0.7);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-purple-lg {
    background: #ffffff;
    color: #09090b;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
    border: none;
}

.btn-purple-lg:hover {
    background: #f4f4f5;
    transform: translateY(-1px);
}

.btn-purple-lg:active {
    transform: translateY(0);
}

.btn-dark-lg {
    background: rgba(39, 39, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f4f4f5;
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-dark-lg:hover {
    background: rgba(63, 63, 70, 0.7);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

/* --- Выпадающий список языков --- */
.lang-dropdown-wrapper {
    position: relative;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    width: 150px;
    z-index: 1000;
    overflow: hidden;
}

.lang-menu.show {
    display: block;
}

.lang-option {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: 0.2s;
}

.lang-option:hover {
    background-color: var(--bg-hover);
    color: #fff;
}

/* --- Модальные окна --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-overlay.show {
    display: flex;
}

.security-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    overflow: visible;
    position: static;
    transition: all 0.2s ease;
}

.security-banner:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.security-banner__content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.security-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.25);
    font-size: 16px;
    flex-shrink: 0;
}

.security-banner__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.security-banner__title {
    color: #e9d5ff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.security-banner__text {
    color: #c4b5fd;
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.9;
}

.security-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.security-banner__link {
    background: rgba(139, 92, 246, 0.15);
    color: #e9d5ff;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.security-banner__link:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}

.security-banner__close {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(233, 213, 255, 0.6);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.security-banner__close:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: #e9d5ff;
}

.auth-modal {
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 32px rgba(139, 92, 246, 0.08);
    text-align: left;
    position: relative;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.modal-desc span {
    color: #fff;
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 12px;
}

.auth-input {
    width: 100%;
    background-color: rgba(9, 9, 11, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    color: #f4f4f5;
    font-size: 13px;
    outline: none;
    transition: all 0.15s ease;
}

.auth-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25), 0 0 16px rgba(139, 92, 246, 0.15);
    background-color: rgba(9, 9, 11, 0.95);
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    width: 24px;
    height: 24px;
    padding: 3px;
    border: 0;
    background: transparent;
    user-select: none;
}

.password-toggle-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-toggle-icon:hover {
    color: #fff;
}

.btn-modal-primary {
    width: 100%;
    background: #ffffff;
    color: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-modal-primary:hover {
    background: #f4f4f5;
    transform: translateY(-1px);
}

.btn-modal-primary:active {
    transform: translateY(0);
}

.error-toast {
    position: absolute;
    bottom: -55px;
    left: 0;
    right: 0;
    background-color: #1a0f12;
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fca5a5;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Главный блок Hero (Developer-First SaaS Style) --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 110px 16px 85px 16px;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(139, 92, 246, 0.12) 0%, rgba(9, 9, 11, 0) 70%);
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

#hero-light-beam {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 700px;
    pointer-events: none;
    z-index: 0;
}

#hero-light-beam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(200, 140, 255, 0.9) 5%,
        rgba(160, 100, 240, 0.7) 12%,
        rgba(139, 92, 246, 0.5) 25%,
        rgba(124, 58, 237, 0.3) 45%,
        rgba(100, 50, 200, 0.15) 65%,
        rgba(80, 40, 180, 0.05) 80%,
        transparent 100%
    );
    filter: blur(80px);
    opacity: 1;
    animation: beamPulse 3s ease-in-out infinite;
}

#hero-light-beam::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(220, 180, 255, 0.85) 8%,
        rgba(180, 130, 250, 0.65) 18%,
        rgba(139, 92, 246, 0.45) 35%,
        rgba(120, 70, 230, 0.25) 55%,
        rgba(100, 60, 200, 0.1) 75%,
        transparent 100%
    );
    filter: blur(35px);
    opacity: 1;
    animation: beamCore 3s ease-in-out infinite;
}

@keyframes beamPulse {
    0%, 100% { 
        opacity: 0.85;
    }
    50% { 
        opacity: 1;
    }
}

@keyframes beamCore {
    0%, 100% { 
        opacity: 0.9;
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.15);
    }
}

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
    max-width: 850px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.65) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 34px;
    max-width: 620px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-direction: row;
    width: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn-purple-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #09090b;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 9999px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(255, 255, 255, 0.15), 0 0 32px rgba(139, 92, 246, 0.15);
    border: none;
    width: auto;
    min-width: 160px;
}

.hero-buttons .btn-purple-lg:hover {
    background: #f4f4f5;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 6px 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
}

.hero-buttons .btn-dark-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    width: auto;
    min-width: 140px;
}

.hero-buttons .btn-dark-lg:hover {
    color: #f4f4f5;
    border-color: var(--border-hover);
    background: rgba(39, 39, 42, 0.8);
    transform: translateY(-2px);
}

/* --- Баннеры статуса и фичи --- */
.status-banner {
    width: 100%;
    max-width: 900px;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 40px auto;
    gap: 10px;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: left;
}

.status-right {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 16px 16px 16px;
    text-align: center;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 0 16px;
}

.feature-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 20px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
}

/* --- Плейсхолдеры для анимированных карточек --- */
.features-placeholder-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    padding: 0 16px;
}

.features-placeholder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card-placeholder {
    background: linear-gradient(
        135deg,
        rgba(24, 24, 27, 0.8) 0%,
        rgba(30, 20, 50, 0.4) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 160px;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
}

.feature-card-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    pointer-events: none;
}

.feature-card-placeholder:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(
        135deg,
        rgba(30, 20, 50, 0.85) 0%,
        rgba(24, 24, 27, 0.9) 100%
    );
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card-placeholder:hover::before {
    opacity: 1;
}

.placeholder-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e9d5ff;
    background: rgba(139, 92, 246, 0.18);
    border: 1px solid rgba(139, 92, 246, 0.35);
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}

.placeholder-text {
    font-size: 14px;
    color: #c4b5fd;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-placeholder:hover .placeholder-text {
    color: #ffffff;
    transform: translateZ(10px);
}

.feature-card-placeholder:hover .placeholder-tag {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.card-icon {
    font-size: 20px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(24, 24, 27, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .card-icon {
    transform: scale(1.12) rotate(-6deg);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.25);
    animation: pulseIcon 1.5s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1.12) rotate(-6deg); }
    50% { transform: scale(1.18) rotate(-4deg); filter: brightness(1.2); }
}

.feature-card h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #fff;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Секция Showcase и медиа --- */
.showcase-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 15px;
}

.showcase-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: var(--border-hover);
}

.showcase-content {
    width: 100%;
}

.showcase-card .media-placeholder,
.showcase-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #0a0a0a;
    border-radius: 18px;
    border: 1px solid var(--border-color);
}

.showcase-content h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.media-placeholder {
    width: 100%;
    height: 220px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.media-placeholder span.media-icon {
    font-size: 28px;
}

/* --- Секция сетей (Network Rows) --- */
.network-row {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    margin-bottom: 8px;
}

.network-row:hover {
    border-color: var(--border-hover);
    background: var(--bg-hover);
}

.network-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.network-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.network-details div:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.network-details div:last-child {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
}

.network-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.net-action-btn {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.net-action-btn:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

/* --- FAQ & Footer --- */
.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: left;
    padding: 0 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    appearance: none;
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    color: #fff;
}

.faq-answer {
    padding: 0 18px 16px 18px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: auto;
    background: var(--bg-main);
}

/* --- Дашборд и Сайдбар --- */
.desktop-sidebar {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 260px;
    flex-shrink: 0;
}

.sidebar-menu-item {
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-menu-item:hover {
    background: var(--bg-hover);
    color: var(--text-main);
}

.sidebar-menu-item.active {
    background: rgba(39, 39, 42, 0.5);
    color: var(--text-main);
    border-left: 2px solid var(--accent-purple);
}

.dashboard-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 16px auto;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.dashboard-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

.dashboard-card:hover {
    border-color: var(--border-hover);
}

/* --- Компоненты дашборда (Календарь, Переключатели, Тултипы) --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.calendar-day {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 4px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
}

.calendar-day.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(18, 18, 20, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-color: #8b5cf6;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(18px);
    background: #ffffff;
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.4;
    cursor: not-allowed;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 18, 20, 0.9);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.switch input:checked + .slider {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-color: #8b5cf6;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
    background-color: #ffffff;
}

.tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
    width: 100%;
}

.tooltip-text {
    visibility: hidden;
    width: 240px;
    background-color: var(--bg-card);
    color: #fff;
    text-align: left;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 11px;
    border: 1px solid var(--border-color);
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.9);
    line-height: 1.4;
    font-weight: normal;
    pointer-events: none;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* --- Мобильная навигация и шторки --- */
.mobile-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

.mobile-nav-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.mobile-nav-item.active {
    color: #fff;
}

.bottom-sheet-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
}

.bottom-sheet-overlay.show {
    display: flex;
    align-items: flex-end;
}

.bottom-sheet {
    background: var(--bg-card);
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

/* --- Адаптивность (ПК) --- */
@media(min-width: 768px) {
    .mobile-nav-bar {
        display: none !important;
    }
    .bottom-sheet-overlay {
        display: none !important;
    }
    .hero h1 {
        font-size: 54px;
        letter-spacing: -0.04em;
    }
    .hero-buttons {
        flex-direction: row;
        max-width: none;
        justify-content: center;
        width: auto;
    }
    .hero-buttons .btn-purple-lg, .hero-buttons .btn-dark-lg {
        width: auto;
        min-width: 170px;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        padding: 0;
    }
    .features-placeholder-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
    .showcase-card {
        flex-direction: row;
        align-items: center;
    }
    .showcase-card:nth-child(even) {
        flex-direction: row-reverse;
    }
    .showcase-content, .media-placeholder {
        flex: 1;
    }
    .media-placeholder {
        height: 260px;
    }
    .footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 30px 40px;
    }
    .dashboard-wrapper {
        flex-direction: row;
        padding: 0 20px;
        gap: 24px;
    }
}

.faq-question:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: -3px;
}

/* ========================================================================== */
/* AIRDROP-X 2026 — React motion layer + Huly-inspired product system          */
/* ========================================================================== */

:root {
    --ax-ink: #07060a;
    --ax-panel: rgba(16, 13, 23, 0.78);
    --ax-panel-strong: #100d17;
    --ax-line: rgba(223, 211, 255, 0.105);
    --ax-line-bright: rgba(195, 162, 255, 0.28);
    --ax-violet: #9366ff;
    --ax-violet-bright: #b79aff;
    --ax-pink: #f079ff;
    --ax-cyan: #75e9ff;
    --ax-green: #7fffc4;
    --ax-copy: #f7f4ff;
    --ax-muted: #918b9f;
    --ax-shadow: 0 24px 90px rgba(0, 0, 0, 0.46);
    --cursor-x: 50vw;
    --cursor-y: 20vh;
    --bg-main: var(--ax-ink);
    --bg-card: var(--ax-panel);
    --bg-card-solid: var(--ax-panel-strong);
    --bg-hover: rgba(147, 102, 255, 0.09);
    --border-color: var(--ax-line);
    --border-hover: var(--ax-line-bright);
    --text-main: var(--ax-copy);
    --text-muted: var(--ax-muted);
    --accent-purple: var(--ax-violet);
    --accent-purple-light: var(--ax-violet-bright);
}

html {
    background: var(--ax-ink);
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', 'Inter', sans-serif;
    background: var(--ax-ink);
    background-image: none;
    isolation: isolate;
}

button, input, select, textarea {
    font: inherit;
}

#react-ambient-root {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#pixel-snow-root {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.pixel-snow-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    mix-blend-mode: screen;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.76) 56%, transparent 100%);
}

/* Keep only the main page surfaces above the ambient canvas. A broad selector
   here would create stacking contexts that cover dropdowns and modal controls. */
body > #main-content,
body > #dashboard-content,
body > .footer {
    position: relative;
    z-index: 1;
}

body > .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

/* Keep the original viewport modal behaviour above the animated page layer. */
body > .modal-overlay {
    position: fixed;
    z-index: 2000;
}

.ax-ambient,
.ax-ambient > * {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ax-ambient {
    overflow: hidden;
    background:
        radial-gradient(circle at 52% -20%, rgba(104, 58, 185, 0.16), transparent 46%),
        linear-gradient(180deg, #09070d 0%, #07060a 64%, #09070d 100%);
}

.ax-ambient__grid {
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 82%);
}

.ax-ambient__aurora {
    inset: auto;
    width: 56vw;
    height: 56vw;
    border-radius: 50%;
    filter: blur(130px);
    opacity: .095;
    will-change: transform;
}

.ax-ambient__aurora--one {
    background: var(--ax-violet);
    top: 15vh;
    left: -28vw;
    animation: axAuroraOne 18s ease-in-out infinite alternate;
}

.ax-ambient__aurora--two {
    background: var(--ax-pink);
    top: 42vh;
    right: -34vw;
    animation: axAuroraTwo 22s ease-in-out infinite alternate;
}

.ax-ambient__stars {
    opacity: .16;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.4px),
        radial-gradient(circle, rgba(169,132,255,.8) 0 1px, transparent 1.3px);
    background-size: 101px 101px, 167px 167px;
    background-position: 0 0, 30px 47px;
    animation: axStarDrift 38s linear infinite;
}

.ax-ambient__noise {
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.ax-cursor-light {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(153, 109, 255, .072), transparent 67%);
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
}

.ax-click-sparks {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
}

.ax-click-sparks__burst {
    position: absolute;
    width: 1px;
    height: 1px;
}

.ax-click-sparks__burst i {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(var(--ax-cyan), var(--ax-violet));
    transform-origin: 50% 0;
    transform: rotate(var(--spark-angle)) translateY(-4px) scaleY(0);
    animation: axSpark .58s cubic-bezier(.19, 1, .22, 1) forwards;
}

@keyframes axAuroraOne { to { transform: translate(24vw, 18vh) scale(1.12); } }
@keyframes axAuroraTwo { to { transform: translate(-18vw, -12vh) scale(.86); } }
@keyframes axStarDrift { to { background-position: 101px 202px, -137px 214px; } }
@keyframes axSpark {
    45% { opacity: 1; transform: rotate(var(--spark-angle)) translateY(-24px) scaleY(1); }
    100% { opacity: 0; transform: rotate(var(--spark-angle)) translateY(-37px) scaleY(.25); }
}

/* Header and brand */
.header {
    width: min(1440px, calc(100% - 28px));
    margin: 12px auto 0;
    padding: 10px 12px 10px 16px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
    background: rgba(9, 7, 13, .72);
    box-shadow: 0 14px 50px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.025);
    backdrop-filter: blur(24px) saturate(125%);
    z-index: 60;
    overflow: visible;
}

.lang-dropdown-wrapper { z-index: 70; }
.lang-menu { z-index: 80; }

input.auth-input:-webkit-autofill,
input.auth-input:-webkit-autofill:hover,
input.auth-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #eee9f4;
    -webkit-box-shadow: 0 0 0 1000px rgba(4,3,6,.96) inset;
    caret-color: #eee9f4;
    transition: background-color 9999s ease-out 0s;
}

.logo-container {
    gap: 11px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -.045em;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: white;
    background:
        radial-gradient(circle at 36% 28%, rgba(255,255,255,.95) 0 2px, transparent 3px),
        conic-gradient(from 215deg, #6d3bff, #e281ff, #79e9ff, #6d3bff);
    box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 0 26px rgba(145,88,255,.24);
}

.brand-mark::before,
.brand-mark::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.brand-mark::before { inset: 3px; border: 1px solid rgba(5,3,10,.65); }
.brand-mark::after { inset: 8px; background: #0b0711; box-shadow: inset 0 0 8px rgba(153,102,255,.5); }
.brand-mark i { position: relative; z-index: 1; font-style: normal; font-size: 7px; font-weight: 800; letter-spacing: -.05em; }
.brand-wordmark { font-size: 16px; }
.brand-wordmark span { color: var(--ax-violet-bright); }

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    background: rgba(255,255,255,.018);
}

.header-nav button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: #85808e;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: color .22s ease, background .22s ease, transform .22s cubic-bezier(.16, 1, .3, 1), box-shadow .22s ease;
}

.header-nav button::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 42px;
    height: 42px;
    left: 50%;
    top: 50%;
    border-radius: 45% 55% 52% 48%;
    background: radial-gradient(circle, rgba(186,137,255,.48), rgba(104,64,225,.20) 38%, transparent 72%);
    filter: blur(7px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.2) rotate(0deg);
    transition: opacity .24s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
}

.header-nav button:hover { color: #fff; background: rgba(255,255,255,.055); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(104,64,225,.15); }
.header-nav button:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1.6) rotate(110deg); }
.header-nav button:focus-visible { outline: 2px solid var(--ax-cyan); outline-offset: 3px; }

#features-heading,
#instr-title {
    scroll-margin-top: 112px;
}

.header-actions .btn-dark-sm,
#lang-btn {
    min-height: 34px;
    border-radius: 9px;
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.08);
}

/* Hero */
.hero {
    display: block;
    padding: 0;
    min-height: min(850px, calc(100vh - 30px));
    background: none;
    border-bottom: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.035) 50%, transparent 50.1%),
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 100% 100%, 100% 110px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
    pointer-events: none;
}

#hero-light-beam {
    top: -35%;
    left: 72%;
    width: 1px;
    height: 115%;
    opacity: .5;
}

.hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
    align-items: center;
    width: min(1280px, calc(100% - 48px));
    min-height: 720px;
    margin: 0 auto;
    padding: 84px 0 54px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 650px;
    text-align: left;
}

.hero-kicker,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #938c9e;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-kicker span {
    width: 29px;
    height: 1px;
    background: linear-gradient(90deg, var(--ax-violet), transparent);
    box-shadow: 0 0 9px var(--ax-violet);
}

.hero h1 {
    max-width: 690px;
    margin: 25px 0 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(54px, 6.35vw, 94px);
    font-weight: 500;
    line-height: .91;
    letter-spacing: -.075em;
    text-align: left;
    background: linear-gradient(152deg, #fff 18%, #aaa2b4 68%, #6e6678);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero h1 em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(100deg, #fff, #bd9cff 47%, #78e9ff 110%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero p {
    max-width: 570px;
    margin: 0 0 34px;
    color: #958f9f;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
}

.hero-buttons {
    justify-content: flex-start;
    margin: 0;
}

.hero-buttons .btn-purple-lg,
.hero-buttons .btn-dark-lg {
    min-height: 48px;
    padding-inline: 22px;
    border-radius: 11px;
}

.specular-button {
    position: relative;
    overflow: hidden;
}

.specular-button::after {
    content: '';
    position: absolute;
    inset: -100% auto -100% -40%;
    width: 28%;
    transform: rotate(15deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent);
    animation: axSpecular 4.2s ease-in-out infinite;
}

@keyframes axSpecular { 0%, 62% { left: -50%; } 82%, 100% { left: 140%; } }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    color: #77717f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { width: 5px; height: 5px; border-radius: 50%; background: var(--ax-green); box-shadow: 0 0 10px var(--ax-green); }

.hero-visual {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
    perspective: 1100px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 82%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127,72,255,.12), rgba(127,72,255,.025) 42%, transparent 68%);
    filter: blur(3px);
}

.laser-column {
    position: absolute;
    top: -10%;
    left: 50%;
    width: 2px;
    height: 98%;
    transform: translateX(-50%);
    background: linear-gradient(transparent, #fff 24%, #ad71ff 51%, transparent 88%);
    box-shadow: 0 0 8px #fff, 0 0 23px #b979ff, 0 0 80px 17px rgba(136,68,255,.34);
    opacity: .7;
    animation: laserBreath 4s ease-in-out infinite;
}

@keyframes laserBreath { 50% { opacity: .98; transform: translateX(-50%) scaleX(1.8); } }

.orbit {
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(180, 144, 255, .17);
    border-radius: 50%;
    transform: rotateX(67deg) rotateZ(-12deg);
}

.orbit::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: -3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px 3px var(--ax-violet);
}

.orbit--one { animation: orbitOne 10s linear infinite; }
.orbit--two { width: 520px; height: 520px; opacity: .46; animation: orbitTwo 14s linear infinite reverse; }
@keyframes orbitOne { to { transform: rotateX(67deg) rotateZ(348deg); } }
@keyframes orbitTwo { to { transform: rotateX(67deg) rotateZ(-372deg); } }

.retro-coin {
    position: relative;
    width: 286px;
    aspect-ratio: 1;
    border-radius: 50%;
    transform-style: preserve-3d;
    animation: coinFloat 6s ease-in-out infinite, coinTurn 13s linear infinite;
    filter: drop-shadow(0 34px 38px rgba(0,0,0,.62));
}

.retro-coin__face {
    position: absolute;
    inset: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 22%, rgba(255,255,255,.19), transparent 12%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 17px, rgba(255,255,255,.026) 18px 19px),
        linear-gradient(145deg, #211531 0%, #0b0810 47%, #26153a 100%);
    box-shadow: inset 0 0 0 9px rgba(255,255,255,.022), inset -20px -28px 44px #050307, inset 16px 16px 32px rgba(185,116,255,.13), 0 0 38px rgba(131,75,255,.2);
}

.retro-coin__face::before,
.retro-coin__face::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.retro-coin__face::before { inset: 22px; border: 1px dashed rgba(193,162,255,.18); }
.retro-coin__face::after { inset: 42px; border: 1px solid rgba(255,255,255,.06); }

.retro-coin__face strong {
    position: relative;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 68px;
    letter-spacing: -.11em;
    line-height: 1;
    color: #f7f1ff;
    text-shadow: 0 0 28px rgba(194,152,255,.34);
}

.retro-coin__face small { position: relative; z-index: 2; margin-top: 11px; color: #8e809d; font-size: 7px; letter-spacing: .32em; }
.retro-coin__signal { position: absolute; top: 51px; width: 7px; height: 7px; border-radius: 50%; background: var(--ax-cyan); box-shadow: 0 0 18px 5px rgba(117,233,255,.5); }

.retro-coin__rim {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, #9e72c8 0 1deg, #1a1022 1deg 3deg);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.16), 0 0 60px rgba(140,78,255,.22);
}

@keyframes coinFloat { 0%,100% { translate: 0 -8px; } 50% { translate: 0 15px; } }
@keyframes coinTurn { 0% { rotate: y -14deg; } 50% { rotate: y 14deg; } 100% { rotate: y -14deg; } }

.hero-visual__label {
    position: absolute;
    padding: 7px 9px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    color: #7d7586;
    background: rgba(8,6,11,.72);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8px;
    letter-spacing: .18em;
    box-shadow: 0 12px 40px rgba(0,0,0,.42);
}

.hero-visual__label::before { content: ''; display: inline-block; width: 4px; height: 4px; margin-right: 6px; border-radius: 50%; background: var(--ax-green); box-shadow: 0 0 7px var(--ax-green); vertical-align: middle; }
.hero-visual__label--top { top: 22%; right: 3%; }
.hero-visual__label--bottom { bottom: 20%; left: 3%; }

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.045);
    border-bottom: 1px solid rgba(255,255,255,.045);
    color: rgba(255,255,255,.17);
    background: rgba(0,0,0,.2);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    letter-spacing: .22em;
    white-space: nowrap;
}

.hero-marquee div { width: max-content; padding: 13px 0; animation: marquee 28s linear infinite; }
.hero-marquee span { color: rgba(161,114,255,.55); margin: 0 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Status and section language */
.status-wrap { width: min(1180px, calc(100% - 40px)); margin: 36px auto 0; }
.status-banner {
    max-width: none;
    margin: 0;
    padding: 13px 16px;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,.075);
    background: rgba(255,255,255,.018);
    box-shadow: inset 0 1px rgba(255,255,255,.02);
}
.status-left, .status-right { font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
#core-status-val { color: var(--ax-green); font-weight: 700; }
.status-pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--ax-green); box-shadow: 0 0 9px var(--ax-green); animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 50% { opacity: .4; box-shadow: 0 0 3px var(--ax-green); } }

.product-section {
    width: min(1180px, calc(100% - 40px));
    margin: 150px auto 0;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin: 18px 0 38px;
}

.section-heading-row .section-title {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.065em;
    text-align: left;
}

.section-heading-row p { max-width: 510px; margin: 18px 0 0; color: var(--ax-muted); font-size: 14px; line-height: 1.7; }
.section-index { color: #4d4853; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: .2em; }

.features-grid.bento-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(260px, auto);
    gap: 12px;
    padding: 0;
    margin: 0;
}

.bento-grid .feature-card {
    position: relative;
    min-width: 0;
    min-height: 285px;
    overflow: hidden;
    padding: 22px;
    border-color: rgba(255,255,255,.075);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.028), transparent 38%),
        rgba(14,11,20,.74);
    box-shadow: inset 0 1px rgba(255,255,255,.025), 0 18px 44px rgba(0,0,0,.18);
    backdrop-filter: blur(16px);
    transform: none;
}

.bento-grid .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(260px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(182,145,255,.7), transparent 42%);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .24s ease;
    pointer-events: none;
}

.bento-grid .feature-card:hover { border-color: rgba(255,255,255,.075); transform: translateY(-3px); box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 0 30px rgba(119,68,255,.08); }
.bento-grid .feature-card:hover::before { opacity: 1; }

.ax-motion-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .22s cubic-bezier(.16, 1, .3, 1), border-color .25s ease, box-shadow .32s ease;
}

.bento-grid .feature-card.ax-motion-card:hover,
.showcase-card.ax-motion-card:hover,
.pricing-card.ax-motion-card:hover {
    transform: perspective(980px) translateY(-7px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    box-shadow: 0 28px 74px rgba(0,0,0,.38), 0 0 38px rgba(128,76,255,.11);
}

.ax-motion-card .feature-visual,
.ax-motion-card .showcase-content,
.ax-motion-card .media-placeholder {
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), filter .28s ease;
}

.ax-motion-card:hover .feature-visual { transform: translateZ(18px) scale(1.025); }
.ax-motion-card:hover .showcase-content { transform: translateZ(12px); }
.ax-motion-card:hover .media-placeholder { transform: translateZ(8px) scale(.992); filter: brightness(1.08); }
.feature-card--wide { grid-column: span 2; }
.feature-card--tall { grid-row: span 1; }

.feature-card__top { display: flex; align-items: center; justify-content: space-between; }
.feature-number { color: #514b59; font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: .16em; }
.bento-grid .card-icon { margin: 0; width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.025); color: #aaa2b4; font-family: 'Space Grotesk', sans-serif; font-size: 15px; }
.bento-grid .feature-card h3 { position: relative; z-index: 2; margin-top: 48px; font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500; letter-spacing: -.035em; }
.bento-grid .feature-card p { position: relative; z-index: 2; max-width: 470px; color: #88818f; line-height: 1.65; }

.feature-visual { position: absolute; top: 48px; right: 24px; width: 48%; height: 160px; }
.feature-visual--scanner { display: grid; place-items: center; }
.scanner-ring { position: absolute; width: 150px; height: 150px; border: 1px solid rgba(171,132,255,.2); border-radius: 50%; animation: scannerPulse 3s ease-in-out infinite; }
.scanner-ring:nth-child(2) { width: 86px; height: 86px; animation-delay: -.7s; }
.scanner-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ax-cyan); box-shadow: 0 0 20px 7px rgba(117,233,255,.4); }
@keyframes scannerPulse { 50% { transform: scale(.92); opacity: .45; } }

.route-preview { display: flex; align-items: center; gap: 9px; margin-top: 28px; color: #d2c5e6; font-family: 'Space Grotesk', sans-serif; font-size: 10px; }
.route-preview span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(255,255,255,.025); }
.route-preview i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(167,118,255,.15), #9b6bff, rgba(117,233,255,.15)); }

.security-orbit { position: relative; display: grid; place-items: center; width: 110px; height: 110px; margin: 22px auto 0; border: 1px solid rgba(154,109,255,.15); border-radius: 50%; color: #b9a6d6; font-size: 8px; letter-spacing: .17em; }
.security-orbit::before { content: ''; position: absolute; inset: 14px; border: 1px dashed rgba(117,233,255,.24); border-radius: 50%; animation: spin 10s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.mini-chart { height: 75px; display: flex; align-items: end; gap: 7px; margin-top: 30px; padding: 0 10px; }
.mini-chart i { flex: 1; min-height: 14px; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, rgba(136,82,255,.18), rgba(181,139,255,.72)); animation: bars 4s ease-in-out infinite alternate; }
.mini-chart i:nth-child(1) { height: 34%; }.mini-chart i:nth-child(2) { height: 55%; }.mini-chart i:nth-child(3) { height: 42%; }.mini-chart i:nth-child(4) { height: 77%; }.mini-chart i:nth-child(5) { height: 61%; }.mini-chart i:nth-child(6) { height: 94%; }
@keyframes bars { to { filter: brightness(1.3); transform: scaleY(.87); } }

.route-lab-card h3 { margin-top: 24px !important; }
.route-lab-card p { margin-bottom: 14px; }
.route-lab {
    position: relative;
    z-index: 3;
    padding: 11px;
    border: 1px solid rgba(181,145,255,.13);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(136,82,255,.055), rgba(117,233,255,.018));
}
.route-lab__tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.route-lab__tabs button {
    min-height: 28px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    background: rgba(255,255,255,.018);
    color: #777180;
    font: 500 9px 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.route-lab__tabs button:hover { color: #eee9f5; border-color: rgba(181,145,255,.25); transform: translateY(-1px); }
.route-lab__tabs button.active {
    color: #fff;
    border-color: rgba(177,133,255,.46);
    background: linear-gradient(135deg, rgba(132,75,246,.32), rgba(96,53,166,.14));
    box-shadow: 0 0 18px rgba(124,70,231,.15);
}
.route-lab__tabs button:focus-visible { outline: 2px solid var(--ax-cyan); outline-offset: 2px; }
.route-lab__flow { display: flex; align-items: center; gap: 9px; margin-top: 11px; }
.route-lab__flow span {
    min-width: 48px;
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    background: rgba(7,6,11,.7);
    color: #e9e4ef;
    font: 600 9px 'Space Grotesk', sans-serif;
    text-align: center;
    transition: transform .22s ease, border-color .22s ease, color .22s ease;
}
.route-lab__flow i { position: relative; flex: 1; height: 1px; overflow: visible; background: linear-gradient(90deg, rgba(167,118,255,.12), #9b6bff, rgba(117,233,255,.18)); }
.route-lab__flow i::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ax-cyan);
    box-shadow: 0 0 11px rgba(117,233,255,.85);
    animation: routeLabPulse 2s cubic-bezier(.45,0,.55,1) infinite;
}
.route-lab small { display: block; min-height: 14px; margin-top: 8px; color: #777180; font-size: 8px; letter-spacing: .02em; }
.route-lab-card.route-changing .route-lab__flow span { transform: translateY(-2px); border-color: rgba(181,145,255,.42); color: #fff; }
@keyframes routeLabPulse { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 7px); opacity: 0; } }

.gas-bars { position: absolute; right: 28px; bottom: 28px; display: flex; align-items: end; gap: 6px; width: 42%; height: 92px; }
.gas-bars span { flex: 1; height: var(--bar); border-radius: 3px 3px 1px 1px; background: linear-gradient(to top, rgba(117,233,255,.06), rgba(117,233,255,.48)); }
.telegram-preview { display: flex; gap: 10px; align-items: center; margin-top: 28px; padding: 10px; border: 1px solid rgba(117,233,255,.1); border-radius: 10px; background: rgba(117,233,255,.025); color: #c9c1d1; font-size: 10px; }
.telegram-preview b { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: #7850dc; color: white; font-size: 9px; }
.telegram-preview span { display: flex; flex-direction: column; gap: 2px; }.telegram-preview small { color: #615b67; }

/* Product UI preview */
.interface-preview {
    position: relative;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 74px;
    width: min(1240px, calc(100% - 40px));
    margin: 170px auto;
    padding: 62px 0;
}

.interface-preview::before {
    content: 'AIRDROP—X';
    position: absolute;
    left: 50%;
    bottom: -40px;
    z-index: -1;
    transform: translateX(-50%);
    color: rgba(255,255,255,.018);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(92px, 17vw, 240px);
    font-weight: 700;
    letter-spacing: -.1em;
    white-space: nowrap;
    transition: color .5s ease, text-shadow .5s ease;
}

.interface-preview:hover::before { color: rgba(167,118,255,.05); text-shadow: 0 0 80px rgba(134,77,255,.08); }
.interface-preview__copy h2 { margin: 18px 0 20px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(42px, 5vw, 72px); font-weight: 500; line-height: .96; letter-spacing: -.065em; }
.interface-preview__copy h2 em { color: var(--ax-violet-bright); font-style: normal; }
.interface-preview__copy p { color: #8c8594; font-size: 14px; line-height: 1.75; }
.interface-preview__metrics { display: flex; gap: 26px; margin-top: 34px; }
.interface-preview__metrics span { color: #696370; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.interface-preview__metrics b { display: block; margin-bottom: 4px; color: white; font-family: 'Space Grotesk', sans-serif; font-size: 20px; letter-spacing: -.04em; }

.product-window {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(11,9,15,.86);
    box-shadow: 0 45px 130px rgba(0,0,0,.55), 0 0 80px rgba(115,61,236,.09), inset 0 1px rgba(255,255,255,.04);
    transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
    transition: transform .7s cubic-bezier(.16,1,.3,1), border-color .4s ease;
}
.product-window:hover { transform: perspective(1300px) rotateY(0) rotateX(0) translateY(-6px); border-color: rgba(181,145,255,.25); }
.product-window__bar { display: flex; align-items: center; gap: 6px; height: 38px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.07); color: #514b57; font-size: 8px; letter-spacing: .08em; }
.product-window__bar i { width: 5px; height: 5px; border-radius: 50%; background: #403a45; }.product-window__bar span { margin-left: 8px; }
.product-window__body { display: grid; grid-template-columns: 58px 1fr; min-height: 360px; }
.product-window__body aside { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 18px 0; border-right: 1px solid rgba(255,255,255,.065); }
.product-window__body aside b { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; background: #7950df; color: #fff; font-size: 8px; }
.product-window__body aside span { width: 20px; height: 4px; border-radius: 3px; background: #28242d; }.product-window__body aside span.active { background: #a57dff; box-shadow: 0 0 10px #8554f1; }
.product-window__content { padding: 28px; }
.window-stat small, .window-grid small { display: block; color: #5e5864; font-size: 8px; letter-spacing: .14em; }
.window-stat b { display: block; margin-top: 8px; color: white; font-family: 'Space Grotesk'; font-size: 23px; }.window-stat em { display: inline-block; margin-top: 7px; color: var(--ax-green); font-style: normal; font-size: 8px; }
.window-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 10px; margin-top: 24px; }
.window-grid > div { min-height: 125px; padding: 16px; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; background: rgba(255,255,255,.018); }
.window-grid b { display: block; margin-top: 10px; color: white; font-family: 'Space Grotesk'; font-size: 19px; }
.chart-line { display: block; height: 40px; margin-top: 18px; background: linear-gradient(155deg, transparent 0 24%, rgba(145,99,255,.2) 25% 31%, transparent 32% 47%, rgba(117,233,255,.27) 48% 54%, transparent 55%); clip-path: polygon(0 80%, 18% 64%, 34% 72%, 54% 34%, 70% 43%, 100% 10%, 100% 100%, 0 100%); }
.gas-dot { display: block; width: 7px; height: 7px; margin-top: 20px; border-radius: 50%; background: var(--ax-green); box-shadow: 0 0 14px var(--ax-green); }
.window-actions { display: flex; gap: 8px; margin-top: 14px; }.window-actions span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; color: #8f8798; font-size: 8px; }.window-actions span:first-child { color: white; border-color: rgba(155,108,255,.35); background: rgba(155,108,255,.1); }

/* Safe start — an interactive static walkthrough instead of autoplaying media */
.safe-start-section {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 150px auto 0;
    padding: 38px;
    overflow: hidden;
    border: 1px solid rgba(184,142,255,.18);
    border-radius: 22px;
    background:
        linear-gradient(112deg, rgba(103,56,188,.13), transparent 39%),
        linear-gradient(320deg, rgba(79,218,255,.07), transparent 43%),
        rgba(13,10,19,.84);
    box-shadow: 0 34px 120px rgba(0,0,0,.33), inset 0 1px rgba(255,255,255,.035);
}

.safe-start-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(190,154,255,.32) .65px, transparent .8px);
    background-size: 18px 18px;
    mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
    opacity: .17;
}

.safe-start__laser {
    position: absolute;
    z-index: 1;
    right: 13%;
    top: -20%;
    width: 1px;
    height: 140%;
    background: linear-gradient(180deg, transparent, rgba(223,191,255,.75) 28%, rgba(117,233,255,.85) 50%, rgba(203,122,255,.65) 72%, transparent);
    box-shadow: 0 0 14px rgba(192,124,255,.55), 0 0 54px rgba(126,71,238,.25);
    opacity: .55;
    animation: safeLaserFlow 6s ease-in-out infinite;
}

.safe-start__laser i {
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 18px 7px rgba(169,114,255,.75);
    transform: translate(-50%, -50%);
    animation: safeLaserNode 3.3s cubic-bezier(.5,0,.5,1) infinite;
}

@keyframes safeLaserFlow { 50% { opacity: .92; transform: scaleX(1.7); } }
@keyframes safeLaserNode { 0% { top: 4%; opacity: 0; } 13% { opacity: 1; } 85% { opacity: 1; } 100% { top: 96%; opacity: 0; } }

.safe-start__heading,
.safe-stepper,
.safe-start-panel { position: relative; z-index: 2; }
.safe-start__heading { display: grid; grid-template-columns: 150px 1fr auto; align-items: end; gap: 26px; }
.safe-start__heading .section-eyebrow { margin: 0 0 8px; }
.safe-start__heading h2 { max-width: 600px; margin: 0; color: #fff; font: 500 clamp(38px, 4.8vw, 64px)/.98 'Space Grotesk', sans-serif; letter-spacing: -.065em; }
.safe-start__heading p { max-width: 670px; margin: 16px 0 0; color: #8d8597; font-size: 14px; line-height: 1.7; }
.safe-start__counter { display: flex; align-items: baseline; gap: 5px; padding-bottom: 5px; color: #5e5667; font: 500 12px 'Space Grotesk', sans-serif; letter-spacing: .12em; }
.safe-start__counter b { color: #d9c5ff; font-size: 19px; }

.safe-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 36px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 14px;
    background: rgba(5,4,8,.38);
}

.safe-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 52px;
    padding: 9px 13px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #746d7c;
    background: transparent;
    font: 500 12px 'Space Grotesk', sans-serif;
    text-align: left;
    cursor: pointer;
    transition: color .24s ease, border-color .24s ease, background .24s ease, transform .24s cubic-bezier(.16, 1, .3, 1);
}

.safe-step::after { content: ''; position: absolute; inset: auto -25% -90% auto; width: 90px; height: 90px; border-radius: 50%; background: rgba(153,94,255,.34); filter: blur(15px); opacity: 0; transition: opacity .28s ease, transform .45s ease; }
.safe-step span { display: grid; place-items: center; flex: 0 0 auto; width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; color: #7c7386; font-size: 8px; letter-spacing: .04em; }
.safe-step b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.safe-step:hover { color: #dbd3e6; background: rgba(255,255,255,.025); transform: translateY(-1px); }
.safe-step:hover::after { opacity: .7; transform: translate(-18px, -12px); }
.safe-step.active { color: #fff; border-color: rgba(182,139,255,.40); background: linear-gradient(110deg, rgba(122,70,235,.38), rgba(112,75,189,.13)); box-shadow: inset 0 1px rgba(255,255,255,.07), 0 0 25px rgba(119,72,230,.13); }
.safe-step.active span { border-color: rgba(210,184,255,.7); color: #fff; background: #8051e7; box-shadow: 0 0 14px rgba(145,94,255,.5); }
.safe-step:focus-visible, .safe-step-control:focus-visible { outline: 2px solid var(--ax-cyan); outline-offset: 3px; }

.safe-start-panel { display: grid; grid-template-columns: .76fr 1.24fr; gap: 22px; min-height: 346px; margin-top: 14px; padding: 16px; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: rgba(5,4,8,.32); }
.safe-start-panel__copy { display: flex; flex-direction: column; align-items: flex-start; padding: 15px 10px 10px 6px; }
.safe-start-panel__number { color: #7156a2; font: 500 10px 'Space Grotesk', sans-serif; letter-spacing: .16em; }
.safe-start-panel__copy h3 { margin: 20px 0 11px; color: #fff; font: 500 clamp(24px, 2.5vw, 34px)/1.04 'Space Grotesk', sans-serif; letter-spacing: -.055em; }
.safe-start-panel__copy > p { margin: 0; color: #968da0; font-size: 13px; line-height: 1.65; }
.safe-start-panel__copy ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; color: #beb4c9; font-size: 12px; line-height: 1.45; }
.safe-start-panel__copy li { display: flex; gap: 9px; align-items: flex-start; }
.safe-start-panel__copy li i { flex: 0 0 auto; width: 5px; height: 5px; margin-top: 6px; border-radius: 50%; background: var(--ax-cyan); box-shadow: 0 0 9px rgba(117,233,255,.8); }
.safe-start-panel__actions { display: flex; gap: 8px; margin-top: auto; padding-top: 22px; }
.safe-step-control { min-height: 36px; padding: 0 13px; border: 1px solid rgba(255,255,255,.10); border-radius: 9px; color: #bdb5c7; background: rgba(255,255,255,.025); font: 600 11px 'Space Grotesk', sans-serif; cursor: pointer; transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease; }
.safe-step-control:hover:not(:disabled) { color: #fff; border-color: rgba(189,152,255,.4); background: rgba(145,92,255,.11); transform: translateY(-1px); }
.safe-step-control:disabled { opacity: .33; cursor: not-allowed; }
.safe-step-control--next { color: #fff; border-color: rgba(193,160,255,.55); background: linear-gradient(120deg, rgba(125,72,240,.68), rgba(92,53,171,.58)); box-shadow: 0 0 22px rgba(126,75,236,.2); }

.safe-shot { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.10); border-radius: 14px; background: linear-gradient(135deg, rgba(22,17,30,.98), rgba(8,7,12,.98)); box-shadow: 0 26px 65px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.035); }
.safe-shot::before { content: ''; position: absolute; z-index: 0; top: -55%; right: -23%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(136,80,255,.32), transparent 66%); filter: blur(9px); }
.safe-shot__bar { position: relative; z-index: 1; display: flex; align-items: center; gap: 5px; height: 38px; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.07); color: #5d5568; font: 600 8px 'Space Grotesk', sans-serif; letter-spacing: .12em; }
.safe-shot__bar span { width: 5px; height: 5px; border-radius: 50%; background: #4a4351; }.safe-shot__bar b { margin-left: 8px; font-weight: 500; }
.safe-shot__body { position: relative; z-index: 1; display: grid; grid-template-columns: 62px 1fr; min-height: 290px; }
.safe-shot__side { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 25px; border-right: 1px solid rgba(255,255,255,.065); }
.safe-shot__side i { width: 20px; height: 4px; border-radius: 4px; background: #29242f; }.safe-shot__side i.active { background: #9b69ff; box-shadow: 0 0 12px rgba(147,93,255,.7); }
.safe-shot__content { display: flex; flex-direction: column; align-items: flex-start; padding: 29px; }
.safe-shot__content small { color: #71697c; font: 600 8px 'Space Grotesk', sans-serif; letter-spacing: .17em; }.safe-shot__content strong { margin-top: 13px; color: #fff; font: 500 25px 'Space Grotesk', sans-serif; letter-spacing: -.05em; }.safe-shot__content > p { max-width: 330px; min-height: 38px; margin: 9px 0 16px; color: #8c8397; font-size: 11px; line-height: 1.55; }
.safe-shot__rows { display: grid; width: min(100%, 360px); gap: 7px; }.safe-shot__rows span { min-height: 28px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 7px; color: #b9b0c4; background: rgba(255,255,255,.025); font-size: 9px; line-height: 1.2; }.safe-shot__rows span:nth-child(2) { border-color: rgba(154,110,255,.20); background: rgba(139,83,247,.07); }
.safe-shot__status { display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 18px; color: #92ecc2; font: 600 9px 'Space Grotesk', sans-serif; letter-spacing: .035em; }.safe-shot__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--ax-green); box-shadow: 0 0 10px var(--ax-green); }
.safe-start-panel.is-switching .safe-start-panel__copy, .safe-start-panel.is-switching .safe-shot { animation: safeStepIn .34s cubic-bezier(.16,1,.3,1); }
@keyframes safeStepIn { from { opacity: .45; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Existing showcase, FAQ and footer */
.showcase-section,
.faq-section {
    max-width: 1180px;
}

#instr-title,
#faq-heading {
    margin-top: 130px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: -.055em;
}

.showcase-card {
    overflow: hidden;
    border-radius: 18px;
    border-color: rgba(255,255,255,.075);
    background: rgba(14,11,20,.68);
    box-shadow: 0 24px 90px rgba(0,0,0,.25);
}

.showcase-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px !important; font-weight: 500; }
.showcase-card p, .showcase-card li { color: #88818f !important; }
.media-placeholder { border-color: rgba(255,255,255,.07); background: #0b090e; }
.media-placeholder img { filter: saturate(.7) contrast(1.05); opacity: .86; transition: filter .5s ease, opacity .5s ease, transform .8s ease; }
.showcase-card:hover .media-placeholder img { filter: saturate(1) contrast(1.08); opacity: 1; transform: scale(1.025); }

.faq-item { border-radius: 12px; border-color: rgba(255,255,255,.07); background: rgba(15,12,20,.72); }
.faq-question { color: #d5cfdd; font-size: 13px; }
.footer {
    position: relative;
    min-height: 122px;
    padding-bottom: 54px !important;
    overflow: hidden;
    background: rgba(6,5,8,.6) !important;
    border-top-color: rgba(255,255,255,.06) !important;
}
.footer > :not(.footer-wordmark) { position: relative; z-index: 1; }
.footer-wordmark {
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: -66px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.035);
    font: 700 clamp(76px, 15vw, 215px)/1 'Space Grotesk', sans-serif;
    letter-spacing: -.1em;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 0 54px rgba(122,72,236,.06);
    transition: color .45s ease, text-shadow .45s ease;
}
.footer:hover .footer-wordmark { color: rgba(181,135,255,.08); text-shadow: 0 0 72px rgba(122,72,236,.16); }

/* Recommended PRO electric border */
.pricing-card { position: relative; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease; }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-account-status {
    background: rgba(96, 165, 250, .08);
    border: 1px solid rgba(96, 165, 250, .28);
    border-radius: 12px;
    color: #dbeafe;
    font-size: 12px;
    line-height: 1.5;
    margin: -10px 0 20px;
    padding: 10px 12px;
    text-align: center;
}
.pricing-account-status[hidden] { display: none; }
.pricing-account-status--grace {
    background: rgba(245, 158, 11, .09);
    border-color: rgba(245, 158, 11, .34);
    color: #fde68a;
}
.pricing-account-status--expired {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(248, 113, 113, .3);
    color: #fecaca;
}
.pricing-card--pro {
    isolation: isolate;
    background: linear-gradient(145deg, #13101a, #0b0910) !important;
    border-color: transparent !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.48), 0 0 34px rgba(224,91,255,.13);
}
.pricing-card--pro::before,
.pricing-card--pro::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 19px;
    pointer-events: none;
}
.pricing-card--pro::before { inset: -1px; background: conic-gradient(from var(--electric-angle, 0deg), transparent 0 12%, #e26aff 16%, #fff 18%, #7d4cff 21%, transparent 26% 61%, #6ee7ff 65%, transparent 72%); animation: electricSpin 4s linear infinite; }
.pricing-card--pro::after { inset: 1px; background: linear-gradient(145deg, #15101d, #0a0810); }
.pricing-card--pro > * { position: relative; z-index: 1; }
.pricing-card--premium {
    background: linear-gradient(145deg, rgba(6, 42, 35, .96), rgba(11, 26, 33, .96)) !important;
    border-color: rgba(45, 212, 191, .58) !important;
    box-shadow: 0 20px 52px rgba(5, 150, 105, .13), inset 0 1px 0 rgba(236, 253, 245, .1);
}
.pricing-card--premium:hover { box-shadow: 0 26px 64px rgba(5, 150, 105, .2), 0 0 26px rgba(45, 212, 191, .15); }
@property --electric-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes electricSpin { to { --electric-angle: 360deg; } }

/* Dashboard redesign */
#dashboard-content {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.dashboard-wrapper {
    max-width: 1420px;
    margin: 30px auto 70px;
    gap: 14px;
    flex-direction: column;
}

html.ax-dashboard-active .header-nav { display: none; }

.dashboard-topbar {
    position: sticky;
    top: 78px;
    z-index: 24;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 15px;
    background: rgba(12,9,17,.84);
    box-shadow: 0 22px 70px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.03);
    backdrop-filter: blur(24px) saturate(1.12);
}

.dashboard-identity { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.dashboard-identity__mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(171,124,255,.33);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(155,93,255,.32), rgba(92,54,159,.14));
    color: #f7f2ff;
    font: 700 10px/1 'Manrope', sans-serif;
    letter-spacing: .08em;
    box-shadow: inset 0 1px rgba(255,255,255,.09), 0 0 24px rgba(137,72,255,.13);
}
.dashboard-identity__copy b { display: block; color: #f4eff9; font: 650 12px/1.2 'Manrope', sans-serif; }
.dashboard-identity__copy small { display: block; margin-top: 3px; color: #746d7d; font-size: 9px; white-space: nowrap; }

.dashboard-topnav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 5px;
    border: 1px solid rgba(202, 177, 255, .10);
    border-radius: 14px;
    background: rgba(11, 8, 17, .52);
    box-shadow: inset 0 1px rgba(255,255,255,.025), 0 12px 30px rgba(0,0,0,.12);
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.dashboard-topnav::-webkit-scrollbar { display: none; }
.dashboard-nav-item {
    position: relative;
    isolation: isolate;
    min-height: 34px;
    padding: 8px 13px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #96909f;
    font: 650 10px/1 'Manrope', sans-serif;
    white-space: nowrap;
    cursor: pointer;
    transition: color .26s ease, border-color .26s ease, background .26s ease, transform .32s cubic-bezier(.16,1,.3,1), box-shadow .26s ease;
}
.dashboard-nav-item::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 4px 9px;
    border-radius: 999px;
    opacity: 0;
    background: radial-gradient(circle at 50% 48%, rgba(213,183,255,.86) 0 22%, rgba(139,80,255,.45) 46%, transparent 72%);
    filter: blur(8px);
    transform: scale(.56);
    transition: opacity .3s ease, transform .38s cubic-bezier(.16,1,.3,1);
}
.dashboard-nav-item::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    border: 1px solid rgba(224,205,255,.30);
    background: linear-gradient(135deg, rgba(193,149,255,.11), rgba(255,255,255,.05));
    transition: opacity .26s ease;
}
.dashboard-nav-item:hover:not(.active) { color: #f7f2ff; transform: translateY(-1px); }
.dashboard-nav-item:hover:not(.active)::before { opacity: .82; transform: scale(1.02); }
.dashboard-nav-item:hover:not(.active)::after { opacity: 1; }
.dashboard-nav-item.active {
    color: #241637;
    border-color: rgba(255,255,255,.68);
    background: linear-gradient(135deg, #fff, #e9ddff 55%, #cdaaff);
    box-shadow: 0 5px 18px rgba(129,75,230,.20), inset 0 1px rgba(255,255,255,.86);
    transform: translateY(-1px);
}
.dashboard-nav-item.active::before { opacity: .48; transform: scale(1.12); }
.dashboard-nav-item:focus-visible { outline: 2px solid var(--ax-cyan); outline-offset: 3px; }
.dashboard-logout {
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid rgba(255,104,123,.16);
    border-radius: 9px;
    background: rgba(255,73,100,.035);
    color: #b97680;
    font: 600 10px/1 'Inter', sans-serif;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.dashboard-logout:hover { color: #ff9aa8; border-color: rgba(255,104,123,.3); background: rgba(255,73,100,.08); }
.dashboard-main { display: flex; flex-direction: column; gap: 16px; width: 100%; min-width: 0; }

.desktop-sidebar {
    position: sticky;
    top: 86px;
    width: 245px;
    padding: 14px;
    border-radius: 16px;
    border-color: rgba(255,255,255,.075);
    background: rgba(13,10,18,.78);
    box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.025);
    backdrop-filter: blur(22px);
}

.sidebar-menu-item {
    position: relative;
    min-height: 38px;
    padding: 10px 11px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #7f7887;
    font-size: 12px;
}
.sidebar-menu-item:hover { color: #fff; border-color: rgba(255,255,255,.06); background: rgba(255,255,255,.025); }
.sidebar-menu-item.active { color: #f5efff; border-color: rgba(155,108,255,.22); border-left: 1px solid rgba(155,108,255,.22); background: linear-gradient(90deg, rgba(142,84,255,.16), rgba(142,84,255,.035)); box-shadow: inset 3px 0 0 #9c6bff; }

.dashboard-card {
    position: relative;
    overflow: hidden;
    padding: 22px !important;
    border-radius: 16px !important;
    border-color: rgba(255,255,255,.075) !important;
    background: rgba(14,11,20,.75) !important;
    box-shadow: 0 20px 65px rgba(0,0,0,.23), inset 0 1px rgba(255,255,255,.025) !important;
    backdrop-filter: blur(18px);
}
.dashboard-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(420px circle at var(--cursor-x) var(--cursor-y), rgba(143,84,255,.025), transparent 52%); }
.dashboard-card:hover { border-color: rgba(175,139,255,.16) !important; }
.dashboard-card h1,
.dashboard-card h2,
.dashboard-card h3 { font-family: 'Manrope', sans-serif; font-weight: 590 !important; letter-spacing: -.025em; }
.dashboard-card,
.dashboard-card button,
.dashboard-card input,
.dashboard-card select,
.dashboard-card textarea { font-family: 'Inter', sans-serif; }

/* Full-width environment card: a restrained hint at repeatable isolated sessions. */
.feature-card--full { grid-column: 1 / -1; min-height: 230px !important; }
.environment-card { overflow: hidden; }
.environment-card > p { max-width: 610px !important; }
.environment-preview {
    position: absolute;
    right: 34px;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
    background: rgba(4,3,7,.48);
    box-shadow: inset 0 1px rgba(255,255,255,.025), 0 18px 60px rgba(0,0,0,.26);
}
.environment-preview span,
.environment-preview b { color: #837b8c; font: 650 9px/1 'Inter', sans-serif; letter-spacing: .13em; }
.environment-preview i { width: 40px; height: 1px; background: linear-gradient(90deg, rgba(150,94,255,.25), rgba(105,226,255,.7)); }
.environment-preview b { padding: 7px 9px; border: 1px solid rgba(117,230,209,.22); border-radius: 7px; color: #82e6d2; background: rgba(61,195,169,.06); }

.auth-input,
select.auth-input,
input.auth-input {
    min-height: 43px;
    border-radius: 10px !important;
    border-color: rgba(255,255,255,.085) !important;
    background: rgba(4,3,6,.68) !important;
    color: #eee9f4 !important;
    box-shadow: inset 0 1px 4px rgba(0,0,0,.35);
}
.auth-input:focus { border-color: rgba(163,116,255,.55) !important; box-shadow: 0 0 0 3px rgba(145,88,255,.1), inset 0 1px 4px rgba(0,0,0,.35) !important; }

.btn-dark-sm,
.btn-dark-lg,
.btn-purple-lg,
.btn-modal-primary {
    border-radius: 10px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn-dark-sm:hover, .btn-dark-lg:hover, .btn-purple-lg:hover, .btn-modal-primary:hover { transform: translateY(-2px); }

.auth-modal {
    border-radius: 20px;
    border-color: rgba(188,151,255,.2);
    background: rgba(14,11,20,.94);
    box-shadow: 0 38px 130px rgba(0,0,0,.72), 0 0 80px rgba(115,61,236,.1);
    backdrop-filter: blur(26px);
}
.modal-overlay { backdrop-filter: blur(15px) saturate(.72); background: rgba(2,1,4,.74); }

.wallet-schedule-modal {
    width: min(980px, calc(100vw - 32px));
    max-width: min(980px, calc(100vw - 32px));
    max-height: min(90vh, 920px);
    overflow-y: auto;
    padding: 24px;
}
.wallet-schedule-head { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; }
.wallet-schedule-title { color:#fff; font-size:19px; font-weight:800; }
.wallet-schedule-wallet { color:#a78bfa; font-size:12px; margin-top:5px; font-family:monospace; }
.wallet-schedule-close { border:0; background:transparent; color:#c4b5fd; font-size:25px; line-height:1; cursor:pointer; padding:0 4px; }
.wallet-schedule-notice,
.wallet-schedule-proxy { border-radius:12px; padding:11px 13px; font-size:12px; line-height:1.5; margin-top:14px; }
.wallet-schedule-notice:not([hidden]),
.wallet-schedule-proxy:not([hidden]) { display:flex; align-items:flex-start; gap:10px; }
.wallet-schedule-notice > span,
.wallet-schedule-proxy > span { flex:1; min-width:0; }
.wallet-schedule-notice[hidden],
.wallet-schedule-proxy[hidden] { display:none !important; }
.wallet-schedule-hint-close { appearance:none; border:0; background:transparent; color:inherit; cursor:pointer; font:inherit; font-size:18px; line-height:16px; padding:0 1px; opacity:.76; transition:opacity .18s ease, transform .18s ease; }
.wallet-schedule-hint-close:hover { opacity:1; transform:scale(1.12); }
.wallet-schedule-summary { display:flex; align-items:center; gap:6px; color:var(--text-muted); font-size:11px; line-height:1.4; margin-top:6px; }
.wallet-schedule-summary.is-loading { opacity:.72; }
.wallet-schedule-summary.is-active { color:#a7f3d0; }
.wallet-schedule-summary.is-muted { color:var(--text-muted); }
.wallet-schedule-summary-dot { width:6px; height:6px; flex:0 0 6px; border-radius:50%; background:#22c55e; box-shadow:0 0 9px rgba(34,197,94,.72); }
.wallet-schedule-notice { color:#bfdbfe; border:1px solid rgba(59,130,246,.28); background:rgba(59,130,246,.08); }
.wallet-schedule-proxy { color:#d1fae5; border:1px solid rgba(16,185,129,.3); background:rgba(16,185,129,.08); }
.wallet-schedule-proxy.missing { color:#fecaca; border-color:rgba(239,68,68,.32); background:rgba(239,68,68,.08); }
.wallet-schedule-form { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:16px; }
.wallet-schedule-form label { color:var(--text-muted); font-size:11px; }
.wallet-schedule-form .auth-input { margin-top:6px; padding:10px 12px; font-size:13px; }
.wallet-schedule-check { display:flex; align-items:flex-start; gap:9px; color:#d1d5db; font-size:12px; line-height:1.45; margin-top:13px; cursor:pointer; }
.wallet-schedule-check input { margin-top:2px; accent-color:#8b5cf6; }
.wallet-schedule-consent { border:1px solid rgba(167,139,250,.22); background:rgba(124,58,237,.06); border-radius:10px; padding:10px 12px; }
.wallet-schedule-flex-panel { margin-top:13px; border:1px solid rgba(139,92,246,.35); background:linear-gradient(145deg,rgba(20,12,37,.8),rgba(9,5,18,.62)); border-radius:14px; padding:18px; box-shadow:inset 0 1px 0 rgba(255,255,255,.035), 0 12px 30px rgba(0,0,0,.14); }
.wallet-schedule-flex-description { color:#d8b4fe; font-size:13px; line-height:1.55; margin-bottom:15px; max-width:650px; }
.wallet-schedule-mode-bar { display:flex; flex-wrap:wrap; gap:8px; margin:0 0 15px; }
.wallet-schedule-mode { border:1px solid rgba(196,181,253,.25); background:rgba(0,0,0,.2); color:#c4b5fd; border-radius:9px; padding:8px 11px; font-size:12px; cursor:pointer; transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.wallet-schedule-mode:hover { transform:translateY(-1px); border-color:rgba(196,181,253,.6); }
.wallet-schedule-mode.is-active { background:linear-gradient(135deg,#7c3aed,#8b5cf6); color:#fff; border-color:#a78bfa; box-shadow:0 0 18px rgba(124,58,237,.26); }
.wallet-schedule-flex-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; }
.wallet-schedule-flex-grid label { color:var(--text-muted); font-size:11px; }
.wallet-schedule-flex-grid .auth-input { margin-top:6px; padding:10px 12px; font-size:13px; }
.wallet-schedule-calendar-head { display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-top:15px; }
.wallet-schedule-calendar-head b { display:block; color:#f5f3ff; font-size:12px; }
.wallet-schedule-calendar-head span { display:block; color:var(--text-muted); font-size:10px; line-height:1.4; margin-top:3px; max-width:365px; }
.wallet-schedule-preview-refresh { flex:0 0 auto; border:1px solid rgba(139,92,246,.42); background:rgba(124,58,237,.12); color:#ddd6fe; border-radius:8px; padding:7px 9px; font-size:11px; cursor:pointer; transition:transform .18s ease, background .18s ease, box-shadow .18s ease; }
.wallet-schedule-preview-refresh:hover { background:rgba(124,58,237,.24); box-shadow:0 0 15px rgba(124,58,237,.17); transform:translateY(-1px); }
.wallet-schedule-generated-preview { color:#a7f3d0; font-size:11px; line-height:1.55; margin-top:10px; }
.wallet-schedule-calendar { display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); gap:8px; }
.wallet-schedule-calendar-day { min-height:78px; padding:10px 6px; border:1px solid rgba(255,255,255,.08); border-radius:10px; background:rgba(0,0,0,.18); text-align:center; transition:border-color .18s ease, background .18s ease, transform .18s ease; }
.wallet-schedule-calendar-button { appearance:none; width:100%; color:inherit; font:inherit; cursor:pointer; }
.wallet-schedule-calendar-button:not(.active):hover { transform:translateY(-2px); border-color:rgba(167,139,250,.52); background:rgba(124,58,237,.1); }
.wallet-schedule-calendar-day span { display:block; color:var(--text-muted); font-size:10px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.wallet-schedule-calendar-day b { display:block; color:#64748b; font-size:13px; margin-top:13px; }
.wallet-schedule-calendar-day.active { border-color:rgba(139,92,246,.55); background:linear-gradient(155deg,rgba(124,58,237,.24),rgba(14,165,233,.1)); box-shadow:inset 0 0 18px rgba(124,58,237,.09); }
.wallet-schedule-calendar-day.active b { color:#e9d5ff; }
.wallet-schedule-calendar-day.active:hover { transform:translateY(-2px); border-color:#a78bfa; }
.wallet-schedule-calendar-day input[type="time"] { display:block; width:100%; min-width:0; margin:10px 0 0; padding:5px 4px; border:1px solid rgba(196,181,253,.38); border-radius:7px; background:rgba(5,3,10,.72); color:#f5f3ff; text-align:center; font:600 12px/1 var(--font-main); color-scheme:dark; }
.wallet-schedule-custom-hint { color:#fcd34d; font-size:11px; line-height:1.45; margin:0 0 9px; }
.wallet-schedule-preview-empty { color:#fcd34d; }
.wallet-schedule-status { min-height:18px; margin-top:10px; font-size:12px; }
.wallet-schedule-save { width:auto; padding:11px 18px; margin-top:8px; }
.wallet-schedule-list-head { color:#fff; font-size:14px; font-weight:750; border-top:1px solid var(--border-color); padding-top:17px; margin-top:20px; }
.wallet-schedule-list { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.wallet-schedule-item { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:11px 12px; border:1px solid var(--border-color); background:rgba(0,0,0,.25); border-radius:11px; }
.wallet-schedule-item b { color:#fff; font-size:12px; }
.wallet-schedule-item small { display:block; color:var(--text-muted); font-size:11px; margin-top:4px; }
.wallet-schedule-actions { display:flex; align-items:center; gap:7px; flex-wrap:wrap; justify-content:flex-end; }
.wallet-schedule-reroll { border:1px solid rgba(139,92,246,.45); background:rgba(124,58,237,.12); color:#d8b4fe; border-radius:8px; padding:7px 9px; cursor:pointer; font-size:11px; }
.wallet-schedule-reroll:hover { background:rgba(124,58,237,.24); box-shadow:0 0 16px rgba(124,58,237,.16); }
.wallet-schedule-delete { border:1px solid rgba(239,68,68,.3); background:rgba(239,68,68,.08); color:#fca5a5; border-radius:8px; padding:7px 9px; cursor:pointer; font-size:11px; }
@media (max-width: 620px) {
    .wallet-schedule-form { grid-template-columns:1fr; }
    .wallet-schedule-flex-grid { grid-template-columns:1fr; }
    .wallet-schedule-modal { padding:19px; }
    .wallet-schedule-calendar { grid-template-columns:repeat(4,minmax(0,1fr)); }
    .wallet-schedule-calendar-head { align-items:flex-start; flex-direction:column; }
}

.mobile-nav-bar {
    border-top-color: rgba(255,255,255,.075);
    background: rgba(10,8,14,.88);
    backdrop-filter: blur(22px);
}

@media (max-width: 1020px) {
    .header-nav { display: none; }
    .hero-shell { grid-template-columns: 1fr 390px; }
    .hero h1 { font-size: clamp(50px, 7vw, 76px); }
    .retro-coin { width: 235px; }
    .orbit { width: 360px; height: 360px; }.orbit--two { width: 425px; height: 425px; }
    .features-grid.bento-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .interface-preview { grid-template-columns: 1fr; gap: 50px; }
    .interface-preview__copy { max-width: 650px; }
    .dashboard-topbar { grid-template-columns: auto minmax(0,1fr); }
    .dashboard-logout { display: none; }
    .dashboard-identity__copy small { display: none; }
    .environment-preview { opacity: .55; right: 20px; }
    .safe-start__heading { grid-template-columns: 132px 1fr auto; gap: 18px; }
    .safe-start-panel { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 760px) {
    .header { width: calc(100% - 16px); margin-top: 8px; padding-left: 11px; }
    .brand-wordmark { font-size: 14px; }
    .header-actions { gap: 6px; }
    .hero { min-height: auto; }
    .hero-shell { display: flex; flex-direction: column; width: calc(100% - 34px); min-height: 0; padding: 90px 0 78px; }
    .hero-copy { width: 100%; }
    .hero h1 { margin-top: 21px; font-size: clamp(48px, 14vw, 68px); line-height: .94; }
    .hero p { font-size: 14px; }
    .hero-buttons { align-items: stretch; width: 100%; }
    .hero-buttons .btn-purple-lg, .hero-buttons .btn-dark-lg { width: 100%; }
    .hero-proof { gap: 12px; }
    .hero-visual { min-height: 430px; width: 100%; margin-top: 18px; }
    .retro-coin { width: 220px; }
    .retro-coin__face strong { font-size: 52px; }
    .orbit { width: 310px; height: 310px; }.orbit--two { width: 360px; height: 360px; }
    .hero-visual__label--top { right: 0; }.hero-visual__label--bottom { left: 0; }
    .status-wrap, .product-section, .interface-preview { width: calc(100% - 28px); }
    .status-banner { align-items: flex-start; }
    .status-right { text-align: right; max-width: 52%; line-height: 1.45; }
    .product-section { margin-top: 105px; }
    .section-heading-row { align-items: flex-start; }
    .section-index { display: none; }
    .section-heading-row .section-title { font-size: 44px; }
    .features-grid.bento-grid { grid-template-columns: 1fr; }
    .feature-card--wide { grid-column: auto; }
    .feature-visual { opacity: .72; right: -30px; }
    .gas-bars { opacity: .55; }
    .interface-preview { margin: 110px auto 130px; padding: 0; }
    .interface-preview__metrics { gap: 17px; }
    .product-window { transform: none; }
    .product-window__body { grid-template-columns: 42px 1fr; min-height: 320px; }
    .product-window__content { padding: 17px; }
    .window-grid { grid-template-columns: 1fr; }
    .window-grid > div:last-child { display: none; }
    .dashboard-topbar { display: none; }
    .mobile-nav-item .icon { display: none; }
    .dashboard-wrapper { margin-top: 14px; }
    .feature-card--full { grid-column: auto; }
    .environment-preview { position: relative; top: auto; right: auto; margin-top: 28px; transform: none; flex-wrap: wrap; }
    .environment-preview i { width: 24px; }
    .safe-start-section { width: calc(100% - 28px); margin-top: 108px; padding: 22px 16px; border-radius: 18px; }
    .safe-start__laser { right: 8%; opacity: .34; }
    .safe-start__heading { display: block; }
    .safe-start__heading .section-eyebrow { margin-bottom: 16px; }
    .safe-start__heading h2 { font-size: 41px; }
    .safe-start__heading p { font-size: 13px; }
    .safe-start__counter { position: absolute; top: 1px; right: 0; }
    .safe-stepper { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin-top: 26px; }
    .safe-step { min-height: 47px; padding: 8px 9px; gap: 7px; font-size: 10px; }
    .safe-step span { width: 19px; height: 19px; font-size: 7px; }
    .safe-start-panel { grid-template-columns: 1fr; min-height: 0; padding: 9px; gap: 10px; }
    .safe-start-panel__copy { padding: 15px 7px 10px; }
    .safe-start-panel__copy h3 { font-size: 27px; }
    .safe-start-panel__copy ul { margin-top: 17px; }
    .safe-shot { min-height: 295px; }
    .safe-shot__body { grid-template-columns: 42px 1fr; min-height: 256px; }
    .safe-shot__side { gap: 15px; padding-top: 19px; }
    .safe-shot__content { padding: 22px 16px; }
    .safe-shot__content strong { font-size: 21px; }
    .safe-start-summary { grid-template-columns: 1fr; width: calc(100% - 28px); margin-top: 22px; }
    .safe-start-summary article { min-height: 0; padding: 18px; }
    .safe-start-summary h3 { margin-top: 17px; }
    .footer { flex-direction: column; align-items: flex-start !important; gap: 16px; min-height: 150px; padding-bottom: 70px !important; }
    .footer > div:nth-child(2) { flex-wrap: wrap; gap: 12px !important; }
    .footer-wordmark { bottom: -43px; font-size: 96px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .ax-cursor-light, .ax-click-sparks { display: none; }
    .ax-motion-card,
    .ax-motion-card:hover { transform: none !important; }
}

.ax-reveal-ready .ax-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .9s cubic-bezier(.16,1,.3,1);
}

.ax-reveal-ready .ax-reveal.ax-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Account overview */
.account-overview-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}
.account-kicker {
    color: #b794f6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.account-overview-header h2,
.account-section-heading h3 {
    color: #fff;
    font-size: 18px;
    margin: 6px 0;
}
.account-overview-header p,
.account-subscription-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}
.account-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.account-overview-card {
    background: linear-gradient(145deg, rgba(22, 15, 39, .96), rgba(11, 9, 18, .98));
    border: 1px solid rgba(167, 139, 250, .22);
    border-radius: 14px;
    min-height: 105px;
    padding: 15px;
}
.account-overview-card-wide { grid-column: span 2; }
.account-overview-label {
    color: var(--text-muted);
    display: block;
    font-size: 11px;
    margin-bottom: 13px;
}
.account-overview-card strong {
    color: #f5f3ff;
    display: block;
    font-size: 14px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.account-overview-card small {
    color: #a8a29e;
    display: block;
    font-size: 11px;
    line-height: 1.45;
    margin-top: 7px;
}
.account-overview-columns {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    margin-bottom: 14px;
}
.account-section-heading {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 14px;
}
.account-section-heading h3 { margin-bottom: 0; }
.account-plan-badge {
    background: rgba(124, 58, 237, .15);
    border: 1px solid rgba(167, 139, 250, .35);
    border-radius: 999px;
    color: #ddd6fe;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 9px;
    text-transform: uppercase;
}
.account-subscription-note {
    border-top: 1px solid var(--border-color);
    color: #93c5fd !important;
    font-size: 12px !important;
    margin-top: 13px !important;
    padding-top: 12px;
}
.account-subscription-card .btn-dark-sm { margin-top: 14px; }
.account-subscription-card .account-subscription-max {
    color: #86efac;
    font-weight: 650;
    margin-top: 14px;
}
.account-subscription-card--grace {
    border-color: rgba(245, 158, 11, .42);
    box-shadow: inset 0 0 26px rgba(245, 158, 11, .035);
}
.account-subscription-card--expired {
    border-color: rgba(248, 113, 113, .42);
    box-shadow: inset 0 0 26px rgba(239, 68, 68, .035);
}
.account-quick-actions {
    display: grid;
    gap: 8px;
}
.account-quick-actions button {
    background: rgba(124, 58, 237, .09);
    border: 1px solid rgba(167, 139, 250, .23);
    border-radius: 9px;
    color: #ddd6fe;
    cursor: pointer;
    font-size: 12px;
    padding: 10px 12px;
    text-align: left;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.account-quick-actions button:hover {
    background: rgba(124, 58, 237, .2);
    border-color: #8b5cf6;
    transform: translateX(2px);
}
.account-activity-list { display: grid; gap: 8px; }
.account-activity-row {
    align-items: center;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 11px 12px;
}
.account-activity-main { display: grid; gap: 5px; min-width: 0; }
.account-activity-type { color: #c4b5fd; font-size: 11px; }
.account-activity-value { color: #fff; font-size: 13px; font-weight: 600; }
.account-activity-meta { color: var(--text-muted); display: grid; font-size: 11px; gap: 5px; justify-items: end; text-align: right; }
.account-empty-state { color: var(--text-muted); font-size: 13px; padding: 13px 0; }
.account-readiness-card { margin-bottom: 14px; }
.account-readiness-desc { color: var(--text-muted); font-size: 12px; line-height: 1.5; margin: -5px 0 14px; max-width: 780px; }
.account-readiness-summary { background: rgba(124, 58, 237, .12); border: 1px solid rgba(167, 139, 250, .3); border-radius: 999px; color: #ddd6fe; font-size: 11px; font-weight: 700; padding: 6px 9px; text-align: center; }
.account-readiness-grid { display: grid; gap: 9px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.account-readiness-row { align-items: center; background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 11px; display: flex; gap: 10px; min-width: 0; padding: 11px 12px; }
.account-readiness-dot { background: #78716c; border-radius: 50%; box-shadow: 0 0 0 4px rgba(120, 113, 108, .10); flex: 0 0 auto; height: 7px; width: 7px; }
.account-readiness-dot.is-ready { background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, .1); }
.account-readiness-dot.is-attention { background: #fbbf24; box-shadow: 0 0 0 4px rgba(251, 191, 36, .1); }
.account-readiness-copy { display: grid; flex: 1; gap: 4px; min-width: 0; }
.account-readiness-copy strong { color: #f5f3ff; font-size: 12px; font-weight: 650; }
.account-readiness-copy span { color: var(--text-muted); font-size: 11px; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-readiness-action { background: transparent; border: 0; color: #c4b5fd; cursor: pointer; flex: 0 0 auto; font-size: 11px; padding: 4px; }
.account-readiness-action:hover { color: #fff; text-decoration: underline; }

/* Read-only EVM network overview */
.network-monogram { align-items: center; background: linear-gradient(135deg, rgba(124, 58, 237, .95), rgba(34, 211, 238, .74)); border-radius: 50%; box-shadow: 0 0 16px rgba(139, 92, 246, .32); color: #fff; display: inline-flex; font-size: 10px; font-weight: 800; height: 32px; justify-content: center; letter-spacing: .02em; width: 32px; }
.network-overview-title-row { align-items: flex-start; display: flex; gap: 14px; justify-content: space-between; margin-bottom: 14px; }
.network-overview-title-row h3 { color: #fff; font-size: 16px; margin: 0 0 6px; }
.network-overview-title-row p { color: var(--text-muted); font-size: 13px; line-height: 1.5; margin: 0; max-width: 760px; }
.network-overview-toolbar { align-items: end; background: rgba(124, 58, 237, .07); border: 1px solid rgba(167, 139, 250, .20); border-radius: 12px; display: flex; gap: 12px; justify-content: space-between; margin-bottom: 10px; padding: 12px; }
.network-overview-toolbar label { color: var(--text-muted); display: grid; font-size: 12px; gap: 5px; min-width: min(100%, 350px); }
.network-overview-toolbar select { margin: 0; min-width: 260px; padding: 9px 11px; }
.network-overview-toolbar > div { color: #c4b5fd; display: grid; font-size: 12px; gap: 5px; text-align: right; }
.network-overview-toolbar > div span { color: var(--text-muted); }
.network-overview-note { color: var(--text-muted); font-size: 12px; line-height: 1.45; margin: 0 0 14px; }
.network-overview-grid { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.network-overview-card { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 14px; display: grid; gap: 12px; min-width: 0; padding: 14px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.network-overview-card:hover { border-color: rgba(167, 139, 250, .46); box-shadow: 0 14px 30px rgba(0, 0, 0, .18); transform: translateY(-2px); }
.network-overview-head { align-items: flex-start; display: flex; gap: 9px; justify-content: space-between; }
.network-overview-icon { align-items: center; display: grid; flex: 0 0 auto; height: 32px; place-items: center; width: 32px; }
.network-overview-icon img { border-radius: 50%; height: 32px !important; object-fit: contain; width: 32px !important; }
.network-overview-name { color: #fff; font-size: 14px; font-weight: 700; }
.network-overview-symbol { color: var(--text-muted); font-size: 11px; margin-top: 3px; }
.network-overview-status { background: rgba(34, 197, 94, .08); border: 1px solid rgba(134, 239, 172, .30); border-radius: 999px; color: #86efac; font-size: 10px; padding: 4px 6px; white-space: nowrap; }
.network-overview-data { color: var(--text-muted); display: grid; font-size: 12px; gap: 7px; min-height: 49px; }
.network-overview-balance { color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.network-overview-assets { color: var(--text-muted); display: flex; flex-wrap: wrap; font-size: 11px; gap: 6px 10px; }
.network-overview-gas { border-top: 1px solid var(--border-color); color: var(--text-muted); display: flex; font-size: 11px; gap: 8px; justify-content: space-between; padding-top: 10px; }
.network-overview-gas b { font-weight: 600; text-align: right; }
.network-overview-actions { align-items: center; display: flex; gap: 8px; }
.network-overview-actions .btn-dark-sm { font-size: 11px; padding: 7px 9px; }
.network-overview-actions a { color: #c4b5fd; font-size: 11px; margin-left: auto; text-decoration: none; }
.network-overview-actions a:hover { color: #fff; }

/* Official opportunity monitor */
.opportunity-monitor-heading { align-items: flex-start; display: flex; gap: 12px; justify-content: space-between; }
.opportunity-monitor-heading h3 { color: #fff; font-size: 16px; margin: 3px 0 0; }
.opportunity-refresh { flex: 0 0 auto; font-size: 11px; padding: 8px 10px; }
.opportunity-scan-log { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 12px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; line-height: 1.55; margin-top: 16px; max-height: 210px; min-height: 104px; overflow-y: auto; padding: 14px; }
.opportunity-safety-note { background: rgba(59, 130, 246, .07); border: 1px solid rgba(96, 165, 250, .30); border-radius: 10px; color: #bfdbfe; font-size: 12px; line-height: 1.5; margin: 0 0 12px; padding: 10px 12px; }
.opportunity-count { color: #a78bfa; display: block; font-size: 11px; margin-top: 6px; }
.opportunity-source-card { align-items: center; background: linear-gradient(145deg, rgba(19, 14, 32, .88), rgba(9, 8, 15, .96)); border: 1px solid var(--border-color); border-radius: 12px; display: flex; gap: 14px; justify-content: space-between; overflow: hidden; padding: 14px; position: relative; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.opportunity-source-card::before { background: linear-gradient(90deg, #8b5cf6, #22d3ee); content: ''; height: 2px; left: 0; opacity: .58; position: absolute; right: 0; top: 0; }
.opportunity-source-card:hover { border-color: rgba(167, 139, 250, .48); box-shadow: 0 12px 28px rgba(0, 0, 0, .2); transform: translateY(-2px); }
.opportunity-source-main { min-width: 0; }
.opportunity-source-topline { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; }
.opportunity-source-name { color: #fff; font-size: 14px; font-weight: 700; }
.opportunity-source-name span { color: var(--text-muted); font-size: 12px; font-weight: 400; margin-left: 3px; }
.opportunity-source-status { background: rgba(34, 197, 94, .08); border: 1px solid rgba(134, 239, 172, .26); border-radius: 999px; color: #86efac; font-size: 10px; padding: 4px 7px; }
.opportunity-source-summary { color: var(--text-muted); font-size: 12px; line-height: 1.5; margin-top: 7px; }
.opportunity-source-updated { color: #78716c; font-size: 10px; margin-top: 8px; }
.opportunity-source-actions { align-items: center; display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

/* Unified operation journal */
.operations-journal-heading { align-items: flex-start; display: flex; gap: 14px; justify-content: space-between; }
.operations-journal-heading h3 { color: #fff; font-size: 16px; margin: 0 0 5px; }
.operations-journal-heading p { color: var(--text-muted); font-size: 13px; line-height: 1.5; margin: 0; max-width: 760px; }
.operations-journal-summary { display: grid; gap: 8px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 14px; }
.operations-journal-summary-card { background: rgba(124, 58, 237, .07); border: 1px solid rgba(167, 139, 250, .20); border-radius: 10px; display: flex; flex-direction: column; gap: 5px; min-width: 0; padding: 10px 11px; }
.operations-journal-summary-card span { color: var(--text-muted); font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.operations-journal-summary-card b { font-size: 17px; line-height: 1; }
.operations-journal-toolbar { align-items: end; background: rgba(124, 58, 237, .055); border: 1px solid rgba(167, 139, 250, .16); border-radius: 12px; display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: space-between; margin-top: 12px; padding: 11px; }
.operations-journal-filter-group { display: flex; flex-wrap: wrap; gap: 7px; }
.operations-journal-toolbar label { color: var(--text-muted); display: grid; font-size: 11px; gap: 5px; min-width: 150px; }
.operations-journal-toolbar select { margin: 0; min-width: 150px; padding: 8px 10px; }
.operations-journal-row { align-items: flex-start; background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 11px; display: flex; gap: 12px; justify-content: space-between; margin-top: 8px; padding: 11px 12px; transition: border-color .18s ease, transform .18s ease; }
.operations-journal-row:hover { border-color: rgba(167, 139, 250, .38); transform: translateY(-1px); }

/* Keep operation result areas invisible until they have a real message or review action. */
#baseSwapResult:empty,
#lendingResultContainer:empty { display: none; }

.operation-wallet-connect { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 9px; }
.operation-wallet-connect-button { font-size: 11px; padding: 7px 10px; }
.operation-wallet-connect-wc { border-color: rgba(124, 58, 237, .8) !important; color: #ddd6fe !important; }
.operation-explainer { background: rgba(96, 165, 250, .065); border: 1px solid rgba(96, 165, 250, .25); border-radius: 11px; color: #cbd5e1; display: grid; font-size: 12px; gap: 5px; line-height: 1.5; margin: 0 0 14px; padding: 10px 40px 10px 12px; position: relative; }
.operation-explainer b { color: #dbeafe; font-size: 11px; letter-spacing: .015em; }
.operation-explainer__close { appearance: none; background: transparent; border: 0; color: inherit; cursor: pointer; font-size: 19px; line-height: 1; opacity: .76; padding: 4px; position: absolute; right: 9px; top: 8px; }
.operation-explainer__close:hover { opacity: 1; transform: scale(1.08); }
.operation-explainer--bridges { background: rgba(139, 92, 246, .075); border-color: rgba(167, 139, 250, .28); }
.operation-explainer--bridges b { color: #ddd6fe; }
.operation-explainer--lending { background: rgba(16, 185, 129, .055); border-color: rgba(52, 211, 153, .25); }
.operation-explainer--lending b { color: #bbf7d0; }

.wallet-list-item { align-items: center; background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 12px; display: flex; gap: 12px; justify-content: space-between; padding: 14px; }
.wallet-list-info { min-width: 0; }
.wallet-list-address { color: #d1d5db; font-family: monospace; font-size: 12px; margin-top: 4px; overflow-wrap: anywhere; }
.wallet-list-actions { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.app-empty-state { align-items: flex-start; background: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(15, 13, 20, .36)); border: 1px dashed rgba(196, 181, 253, .28); border-radius: 12px; color: var(--text-muted); display: flex; flex-direction: column; font-size: 12px; gap: 6px; line-height: 1.5; padding: 14px; }
.app-empty-state strong { color: #f5f3ff; font-size: 13px; font-weight: 700; }
.app-empty-state__action { background: rgba(124, 58, 237, .14); border: 1px solid rgba(196, 181, 253, .42); border-radius: 8px; color: #e9d5ff; cursor: pointer; font: inherit; font-size: 11px; font-weight: 650; margin-top: 4px; padding: 8px 10px; }
.app-empty-state__action:hover { background: rgba(124, 58, 237, .25); color: #fff; }

@media (max-width: 760px) {
    .account-overview-header { flex-direction: column; }
    .account-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .account-overview-card-wide { grid-column: span 2; }
    .account-overview-columns { grid-template-columns: 1fr; }
    .account-readiness-grid { grid-template-columns: 1fr; }
    .account-activity-row { align-items: flex-start; flex-direction: column; }
    .account-activity-meta { display: flex; gap: 10px; justify-items: start; text-align: left; }
    .network-overview-title-row, .network-overview-toolbar { align-items: stretch; flex-direction: column; }
    .network-overview-toolbar select { min-width: 0; width: 100%; }
    .network-overview-toolbar > div { text-align: left; }
    .network-overview-grid { grid-template-columns: 1fr; }
    .opportunity-source-card { align-items: stretch; flex-direction: column; }
    .opportunity-source-actions { justify-content: flex-start; }
    .operations-journal-heading { align-items: stretch; flex-direction: column; }
    .operations-journal-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .operations-journal-toolbar { align-items: stretch; flex-direction: column; }
    .operations-journal-toolbar label, .operations-journal-toolbar select { min-width: 0; width: 100%; }
    .operations-journal-row { flex-direction: column; }
}
@media (min-width: 761px) and (max-width: 1100px) {
    .network-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Final mobile dashboard pass */
.mobile-nav-bar {
    align-items: center;
    gap: 5px;
    justify-content: stretch;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    box-shadow: 0 -12px 32px rgba(0, 0, 0, .24);
}
.mobile-nav-item {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #a7a0b6;
    flex: 1 1 0;
    font-size: 10px;
    font-weight: 650;
    justify-content: center;
    letter-spacing: -.01em;
    line-height: 1.1;
    min-height: 43px;
    min-width: 0;
    padding: 7px 4px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.mobile-nav-item:hover { color: #f5f3ff; }
.mobile-nav-item:active { transform: scale(.97); }
.mobile-nav-item.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, .24), rgba(192, 132, 252, .16));
    border-color: rgba(196, 181, 253, .48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 18px rgba(139, 92, 246, .13);
    color: #fff;
}
.bottom-sheet-overlay {
    align-items: flex-end;
    background: rgba(2, 2, 5, .76);
    backdrop-filter: blur(6px);
    padding: 12px;
}
.bottom-sheet-overlay.show { display: flex; }
.bottom-sheet {
    background: linear-gradient(155deg, rgba(24, 17, 35, .98), rgba(10, 8, 14, .99));
    border: 1px solid rgba(196, 181, 253, .24);
    border-radius: 20px;
    box-shadow: 0 -18px 58px rgba(0, 0, 0, .48);
    margin: 0 auto;
    max-width: 560px;
    padding: 12px 12px calc(14px + env(safe-area-inset-bottom));
    width: min(100%, 560px);
    animation: mobile-sheet-enter .2s ease-out both;
}
.sheet-handle { background: rgba(221, 214, 254, .36); border-radius: 999px; height: 4px; margin: 0 auto 12px; width: 38px; }
.mobile-sheet-heading { color: #a78bfa; font-size: 11px; font-weight: 750; letter-spacing: .09em; padding: 4px 8px 10px; text-transform: uppercase; }
.mobile-sheet-item { background: transparent; border: 1px solid transparent; border-radius: 12px; color: #ede9fe; cursor: pointer; display: block; font: inherit; font-size: 14px; font-weight: 650; margin-top: 3px; padding: 14px 12px; text-align: left; width: 100%; }
.mobile-sheet-item:hover, .mobile-sheet-item.active { background: rgba(139, 92, 246, .12); border-color: rgba(196, 181, 253, .25); }
.mobile-sheet-item--logout { color: #fca5a5; margin-top: 8px; }
.mobile-sheet-item--logout:hover { background: rgba(239, 68, 68, .09); border-color: rgba(252, 165, 165, .25); }
body.mobile-sheet-open { overflow: hidden; }
@keyframes mobile-sheet-enter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 760px) {
    html.ax-dashboard-active body { padding-bottom: 76px; }
    .dashboard-wrapper { margin: 12px auto 18px; padding: 0 10px; width: 100%; }
    .dashboard-main { min-width: 0; }
    .dashboard-card { border-radius: 14px; padding: 16px !important; }
    .dashboard-card [style*="grid-template-columns:repeat(2"],
    .dashboard-card [style*="grid-template-columns: repeat(2"] { grid-template-columns: minmax(0, 1fr) !important; }
    .dashboard-card input, .dashboard-card select, .dashboard-card textarea { max-width: 100%; }
    .modal-overlay .auth-modal { max-height: calc(100dvh - 22px); overflow-y: auto; }
    .safe-start__laser { display: none; }
    .wallet-list-item { align-items: stretch; flex-direction: column; }
    .wallet-list-actions { justify-content: flex-start; }
    .wallet-list-actions > button { flex: 0 1 auto; max-width: 100%; }
}

/* Narrow-screen guardrails: keep primary controls reachable at 320–430px. */
@media (max-width: 760px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .hero-buttons .btn-purple-lg,
    .hero-buttons .btn-dark-lg {
        min-height: 44px;
        min-width: 0;
    }

    .header-actions .btn-dark-sm,
    #lang-btn,
    .mobile-nav-item,
    .dashboard-card button,
    .modal-overlay button,
    .wallet-schedule-mode,
    .wallet-schedule-preview-refresh,
    .wallet-schedule-reroll,
    .wallet-schedule-delete,
    .safe-step-control {
        min-height: 44px;
    }
    .icon-button-plain,
    .wallet-schedule-close,
    #antiSybilModal button[aria-label],
    #baseSwapConfirmModal button[aria-label],
    #appConfirmModal button[aria-label] {
        min-width: 44px;
    }

    .modal-overlay { padding: 8px; }
    .modal-overlay .auth-modal {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px;
    }
    #pricingModal .auth-modal > div[style*="grid-template-columns"] {
        grid-template-columns: minmax(0, 1fr) !important;
    }
    #pricingModal .pricing-card {
        min-width: 0;
        padding: 18px !important;
    }

    .wallet-list-actions > button {
        flex: 1 1 136px;
    }
    .wallet-schedule-save { width: 100%; }
    .wallet-schedule-item {
        align-items: stretch;
        flex-direction: column;
    }
    .wallet-schedule-actions { justify-content: flex-start; }
    .operation-explainer { padding-right: 50px; }
}

@media (max-width: 380px) {
    .wallet-schedule-calendar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wallet-schedule-calendar-day input[type="time"] { min-height: 44px; }
}
.icon-button-plain {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 4px 6px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
}

.icon-button-plain:hover,
.icon-button-plain:focus-visible {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    outline: 1px solid rgba(199, 125, 255, 0.45);
}

.footer-link-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: #fff;
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent-banner[hidden] {
    display: none;
}

.cookie-consent-banner {
    position: fixed;
    z-index: 1900;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    width: min(720px, calc(100vw - 44px));
    padding: 18px 20px;
    border: 1px solid rgba(183, 117, 255, .38);
    border-radius: 18px;
    background: rgba(13, 10, 20, .96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .48), 0 0 42px rgba(122, 61, 222, .14);
    backdrop-filter: blur(18px);
}

.cookie-consent-copy {
    min-width: 0;
    flex: 1;
}

.cookie-consent-eyebrow {
    margin: 0 0 5px;
    color: #c69aff;
    font: 700 10px/1 'Space Grotesk', sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cookie-consent-copy h2 {
    margin: 0;
    color: #fff;
    font: 700 16px/1.25 'Space Grotesk', sans-serif;
}

.cookie-consent-copy > p:last-child {
    margin: 7px 0 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 290px;
}

.cookie-consent-button {
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(196, 137, 255, .7);
    border-radius: 9px;
    background: linear-gradient(135deg, #7b2ee4, #a76eff);
    color: #fff;
    font: 700 11px/1.1 Inter, sans-serif;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cookie-consent-button:hover,
.cookie-consent-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(130, 69, 229, .26);
    outline: none;
}

.cookie-consent-button--secondary {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .055);
    color: #ddd7e5;
}

.cookie-consent-button--link {
    border-color: transparent;
    background: transparent;
    color: #c69aff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 700px) {
    .cookie-consent-banner {
        right: 12px;
        bottom: 76px;
        width: calc(100vw - 24px);
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .cookie-consent-actions {
        max-width: none;
        justify-content: stretch;
    }

    .cookie-consent-button {
        flex: 1 1 120px;
    }
}
