



:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --bg-card: #0d0d0d;
    --bg-hover: #1a1a1a;
    --bg-input: #0a0a0a;

    --border: #222222;
    --border-focus: #00ff6a;
    --border-subtle: #181818;

    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #888888;
    --text-inverse: #000000;

    --accent: #00ff6a;
    --accent-hover: #33ff8a;
    --accent-glow: rgba(0, 255, 106, 0.12);
    --accent-subtle: rgba(0, 255, 106, 0.06);
    --accent-rgb: 0, 255, 106;

    --success: #00ff6a;
    --warning: #ffaa00;
    --danger: #ff3333;
    --info: #00aaff;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--accent-glow);

    --transition: 150ms ease;
}



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

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

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}



.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.brand-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 255, 106, 0.22));
}

.brand-text {
    letter-spacing: -0.5px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link--muted {
    color: var(--text-muted);
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 24px rgba(0, 255, 106, 0.35);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.btn-danger {
    background: transparent;
    color: var(--danger);
    border-color: var(--danger);
}

.btn-danger:hover {
    background: var(--danger);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.5rem;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}



.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-checkbox input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.form-error {
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 0.25rem;
}



.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.card-header {
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.card-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}



.flash-container {
    max-width: 600px;
    margin: 1rem auto;
    padding: 0 1.5rem;
}

.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    border: 1px solid;
}

.flash-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: var(--success); }
.flash-danger { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: var(--danger); }
.flash-warning { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: var(--warning); }
.flash-info { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: var(--info); }

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    padding: 0 0.25rem;
}

.flash-close:hover { opacity: 1; }



.main-content {
    flex: 1;
    position: relative;
    z-index: 1;
}



.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
    padding: 3rem 0 0;
    position: relative;
    z-index: 2;
}

.site-footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.site-footer-brand p {
    margin: 0;
}

.site-footer-col {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.site-footer-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-secondary);
    margin-bottom: .35rem;
}

.site-footer-col a {
    font-size: .82rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .12s;
}

.site-footer-col a:hover {
    color: var(--accent);
}

.site-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    text-align: center;
}

.site-footer-bottom p {
    font-size: .75rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 640px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .site-footer-brand {
        grid-column: 1 / -1;
    }
}




.hero-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.landing-intro,
.landing-steps,
.features-section,
.landing-trust,
.landing-cta {
    position: relative;
    z-index: 1;
}

#cyberCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0,0,0,0.07) 3px,
        rgba(0,0,0,0.07) 4px
    );
    animation: scanlines-drift 10s linear infinite;
}
@keyframes scanlines-drift {
    0%   { background-position: 0 0; }
    100% { background-position: 0 80px; }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 7rem 1.5rem 6rem;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(0,255,106,0.45);
    margin-bottom: 1.2rem;
    animation: fade-in-up 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(0,255,106,0.08);
    border: 1px solid rgba(0,255,106,0.28);
    border-radius: 100px;
    margin-bottom: 2.25rem;
    backdrop-filter: blur(12px);
    animation: fade-in-up 0.9s 0.1s ease both;
}

.hero-badge-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: badge-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes badge-pulse {
    0%,100% { opacity:1; box-shadow: 0 0 8px var(--accent); }
    50%      { opacity:0.35; box-shadow: 0 0 3px var(--accent); }
}

.hero-content h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -4px;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: fade-in-up 0.9s 0.2s ease both;
}

.hero-sub {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    animation: fade-in-up 0.9s 0.35s ease both;
}

.hero-content p {
    font-size: 0.95rem;
    color: #444;
    max-width: 520px;
    margin: 0 auto 2.75rem;
    line-height: 1.85;
    animation: fade-in-up 0.9s 0.45s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.9s 0.55s ease both;
}

.hero-btn-primary {
    position: relative;
    padding: 1rem 3rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    overflow: hidden;
    letter-spacing: 0.03em !important;
}
.hero-btn-pulse {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    animation: btn-pulse-ring 2.5s ease-out infinite;
    pointer-events: none;
}
@keyframes btn-pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(0,255,106,0.55); }
    70%  { box-shadow: 0 0 0 16px rgba(0,255,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,106,0); }
}

.hero-btn-secondary {
    padding: 1rem 2.5rem !important;
    border-radius: 10px !important;
    color: #999 !important;
    border-color: #333 !important;
    background: transparent !important;
}
.hero-btn-secondary:hover {
    color: #ddd !important;
    border-color: #555 !important;
    background: rgba(255,255,255,0.03) !important;
}

.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 3.5rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2a2a2a;
    animation: fade-in-up 1s 1.1s ease both, scroll-hint-bob 2.5s 2s ease-in-out infinite;
}
@keyframes scroll-hint-bob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}
@keyframes fade-in-up {
    from { opacity:0; transform: translateY(20px); }
    to   { opacity:1; transform: translateY(0); }
}


.glitch {
    position: relative;
    display: inline-block;
    animation: glitch-skew 3s infinite linear;
}
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    overflow: hidden;
}
.glitch::before {
    color: #0ff;
    animation: glitch-top 3s infinite linear;
}
.glitch::after {
    color: #f0f;
    animation: glitch-bot 3s infinite linear;
}
.glitch.glitch--morphing { animation: glitch-skew-burst 1.2s steps(24, jump-end) 1; }
.glitch.glitch--morphing::before { animation: glitch-top-burst 1.2s steps(24, jump-end) 1; }
.glitch.glitch--morphing::after  { animation: glitch-bot-burst 1.2s steps(24, jump-end) 1; }
@keyframes glitch-skew-burst {
    0%, 100% { transform: skewX(0deg); }
    8%  { transform: skewX(-6deg); }
    14% { transform: skewX(4deg); }
    24% { transform: skewX(-3deg); }
    36% { transform: skewX(5deg); }
    50% { transform: skewX(-7deg); }
    66% { transform: skewX(3deg); }
    78% { transform: skewX(-4deg); }
    92% { transform: skewX(2deg); }
}
@keyframes glitch-top-burst {
    0%   { clip-path: inset(0 0 100% 0); opacity: 0; transform: translate(0); }
    5%   { clip-path: inset(5% 0 55% 0);   opacity: 1; transform: translate(-12px, -3px); }
    10%  { clip-path: inset(35% 0 35% 0);  opacity: 1; transform: translate(8px, 2px); }
    15%  { clip-path: inset(0 0 70% 0);    opacity: 1; transform: translate(-9px, 0); }
    22%  { clip-path: inset(50% 0 10% 0);  opacity: 1; transform: translate(11px, -2px); }
    30%  { clip-path: inset(15% 0 50% 0);  opacity: 1; transform: translate(-7px, 3px); }
    38%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    46%  { clip-path: inset(60% 0 5% 0);   opacity: 1; transform: translate(-10px, 2px); }
    55%  { clip-path: inset(20% 0 40% 0);  opacity: 1; transform: translate(9px, -3px); }
    63%  { clip-path: inset(40% 0 25% 0);  opacity: 1; transform: translate(-6px, 0); }
    72%  { clip-path: inset(5% 0 65% 0);   opacity: 1; transform: translate(8px, -1px); }
    80%  { clip-path: inset(45% 0 20% 0);  opacity: 1; transform: translate(-5px, 2px); }
    88%  { clip-path: inset(20% 0 50% 0);  opacity: 0.85; transform: translate(4px, 0); }
    96%  { clip-path: inset(35% 0 35% 0);  opacity: 0.6; transform: translate(-2px, 0); }
    100% { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
}
@keyframes glitch-bot-burst {
    0%   { clip-path: inset(100% 0 0 0); opacity: 0; transform: translate(0); }
    5%   { clip-path: inset(55% 0 5% 0);   opacity: 1; transform: translate(12px, 3px); }
    10%  { clip-path: inset(35% 0 35% 0);  opacity: 1; transform: translate(-8px, -2px); }
    15%  { clip-path: inset(70% 0 0 0);    opacity: 1; transform: translate(9px, 0); }
    22%  { clip-path: inset(10% 0 50% 0);  opacity: 1; transform: translate(-11px, 2px); }
    30%  { clip-path: inset(50% 0 15% 0);  opacity: 1; transform: translate(7px, -3px); }
    38%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    46%  { clip-path: inset(5% 0 60% 0);   opacity: 1; transform: translate(10px, -2px); }
    55%  { clip-path: inset(40% 0 20% 0);  opacity: 1; transform: translate(-9px, 3px); }
    63%  { clip-path: inset(25% 0 40% 0);  opacity: 1; transform: translate(6px, 0); }
    72%  { clip-path: inset(65% 0 5% 0);   opacity: 1; transform: translate(-8px, 1px); }
    80%  { clip-path: inset(20% 0 45% 0);  opacity: 1; transform: translate(5px, -2px); }
    88%  { clip-path: inset(50% 0 20% 0);  opacity: 0.85; transform: translate(-4px, 0); }
    96%  { clip-path: inset(35% 0 35% 0);  opacity: 0.6; transform: translate(2px, 0); }
    100% { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
}
@keyframes glitch-skew {
    0%   { transform: skewX(0deg); }
    20%  { transform: skewX(0deg); }
    21%  { transform: skewX(-2deg); }
    22%  { transform: skewX(0deg); }
    60%  { transform: skewX(0deg); }
    61%  { transform: skewX(1deg); }
    62%  { transform: skewX(0deg); }
    100% { transform: skewX(0deg); }
}
@keyframes glitch-top {
    0%   { clip-path: inset(0 0 100% 0); opacity: 0; transform: translate(0); }
    20%  { clip-path: inset(0 0 100% 0); opacity: 0; transform: translate(0); }
    21%  { clip-path: inset(10% 0 60% 0);  opacity: 1; transform: translate(-6px, -2px); }
    23%  { clip-path: inset(30% 0 40% 0);  opacity: 1; transform: translate(4px, 1px); }
    24%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    25%  { clip-path: inset(5% 0 70% 0);   opacity: 1; transform: translate(-3px, 0px); }
    26%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    60%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    61%  { clip-path: inset(20% 0 50% 0);  opacity: 1; transform: translate(5px, -1px); }
    62%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    63%  { clip-path: inset(60% 0 10% 0);  opacity: 1; transform: translate(-4px, 2px); }
    64%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    80%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    81%  { clip-path: inset(40% 0 30% 0);  opacity: 0.7; transform: translate(3px, 0px); }
    82%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    100% { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
}
@keyframes glitch-bot {
    0%   { clip-path: inset(100% 0 0 0); opacity: 0; transform: translate(0); }
    20%  { clip-path: inset(100% 0 0 0); opacity: 0; transform: translate(0); }
    21%  { clip-path: inset(60% 0 10% 0);  opacity: 1; transform: translate(6px, 2px); }
    23%  { clip-path: inset(40% 0 30% 0);  opacity: 1; transform: translate(-4px, -1px); }
    24%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    25%  { clip-path: inset(70% 0 5% 0);   opacity: 1; transform: translate(3px, 0px); }
    26%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    60%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    61%  { clip-path: inset(50% 0 20% 0);  opacity: 1; transform: translate(-5px, 1px); }
    62%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    63%  { clip-path: inset(10% 0 60% 0);  opacity: 1; transform: translate(4px, -2px); }
    64%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    80%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    81%  { clip-path: inset(30% 0 40% 0);  opacity: 0.7; transform: translate(-3px, 0px); }
    82%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    100% { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
}

@media (hover: none) and (pointer: coarse), (max-width: 768px) {
    .navbar,
    .hero-badge {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-scanlines,
    .hero-badge-dot,
    .hero-btn-pulse,
    .hero-scroll-hint {
        animation: none !important;
    }

}

@media (max-width: 480px) {
    .glitch::before { animation-name: glitch-top-sm; }
    .glitch::after  { animation-name: glitch-bot-sm; }
}
@keyframes glitch-top-sm {
    0%   { clip-path: inset(0 0 100% 0); opacity: 0; transform: translate(0); }
    20%  { clip-path: inset(0 0 100% 0); opacity: 0; transform: translate(0); }
    21%  { clip-path: inset(10% 0 60% 0);  opacity: 1; transform: translate(-3px, -1px); }
    23%  { clip-path: inset(30% 0 40% 0);  opacity: 1; transform: translate(2px, 1px); }
    24%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    25%  { clip-path: inset(5% 0 70% 0);   opacity: 1; transform: translate(-2px, 0px); }
    26%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    60%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    61%  { clip-path: inset(20% 0 50% 0);  opacity: 1; transform: translate(3px, -1px); }
    62%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    63%  { clip-path: inset(60% 0 10% 0);  opacity: 1; transform: translate(-2px, 1px); }
    64%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    80%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    81%  { clip-path: inset(40% 0 30% 0);  opacity: 0.7; transform: translate(2px, 0px); }
    82%  { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
    100% { clip-path: inset(0 0 100% 0);   opacity: 0; transform: translate(0); }
}
@keyframes glitch-bot-sm {
    0%   { clip-path: inset(100% 0 0 0); opacity: 0; transform: translate(0); }
    20%  { clip-path: inset(100% 0 0 0); opacity: 0; transform: translate(0); }
    21%  { clip-path: inset(60% 0 10% 0);  opacity: 1; transform: translate(3px, 1px); }
    23%  { clip-path: inset(40% 0 30% 0);  opacity: 1; transform: translate(-2px, -1px); }
    24%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    25%  { clip-path: inset(70% 0 5% 0);   opacity: 1; transform: translate(2px, 0px); }
    26%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    60%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    61%  { clip-path: inset(50% 0 20% 0);  opacity: 1; transform: translate(-3px, 1px); }
    62%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    63%  { clip-path: inset(10% 0 60% 0);  opacity: 1; transform: translate(2px, -1px); }
    64%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    80%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    81%  { clip-path: inset(30% 0 40% 0);  opacity: 0.7; transform: translate(-2px, 0px); }
    82%  { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
    100% { clip-path: inset(100% 0 0 0);   opacity: 0; transform: translate(0); }
}




.landing-intro {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
    text-align: center;
}

.landing-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    color: #fff;
}

.landing-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}


.landing-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.landing-steps-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.landing-step:hover {
    border-color: rgba(0, 255, 106, 0.25);
    box-shadow: 0 0 30px rgba(0, 255, 106, 0.06);
}

.landing-step-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-family: var(--font-mono);
}

.landing-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.landing-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.landing-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 3rem;
    color: var(--border);
}


.features-section {
    padding: 5rem 1.5rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    margin-bottom: 3rem;
    text-align: center;
}

.features-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.features-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1.15;
}

.features-header-muted {
    color: #c4c4c4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.feat-card {
    padding: 1.5rem 1.25rem;
    background: rgba(13,16,15,0.92);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.feat-card:hover {
    border-color: rgba(0,255,106,0.3);
    background: rgba(17,27,22,0.95);
}

.feat-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(0,255,106,0.06);
    border: 1px solid rgba(0,255,106,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: background 0.25s, border-color 0.25s;
}

.feat-card:hover .feat-card-icon {
    background: rgba(0,255,106,0.12);
    border-color: rgba(0,255,106,0.25);
}

.feat-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 0.4rem;
    letter-spacing: -0.2px;
}

.feat-card p {
    font-size: 0.85rem;
    color: #b8b8b8;
    line-height: 1.55;
}

.feat-card-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.15rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    border: 1px solid rgba(0,255,106,0.25);
    border-radius: 20px;
    background: rgba(0,255,106,0.06);
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .feat-card { padding: 1.25rem 1rem; }
    .features-section { padding: 3.5rem 1rem 3rem; }
}


.landing-trust {
    background: transparent;
    border-top: none;
    border-bottom: none;
    padding: 5rem 1.5rem;
}

.landing-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.landing-trust-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(0, 255, 106, 0.12);
    border: 1px solid rgba(0, 255, 106, 0.2);
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.landing-trust-copy h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #fff;
}

.landing-trust-copy p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.landing-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.landing-trust-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}


.trust-terminal {
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.trust-terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

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

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

.trust-terminal-body {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 2;
}

.trust-line {
    color: var(--text-primary);
}

.trust-line.dim {
    color: var(--text-muted);
}

.trust-line.accent,
.trust-line .accent {
    color: var(--accent);
}

.trust-prompt {
    color: var(--accent);
    margin-right: 0.5rem;
}


.landing-cta {
    text-align: center;
    padding: 6rem 1.5rem 7rem;
}

.landing-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    color: #fff;
}

.landing-cta p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.page-network-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.page-network-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}
@media (max-width: 820px) {
    .page-network-canvas { opacity: 0.4; }
}
.subpage-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    background: transparent;
}
.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}
.subpage-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.15;
}
.subpage-hero-sub {
    font-size: 1rem;
    color: #c4c4c4;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}
.subpage-body {
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem 4rem;
}
.subpage-body::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 6%, rgba(0,0,0,0.6) 94%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 14%, rgba(0,0,0,0.55) 86%, transparent 100%);
}
.subpage-inner {
    max-width: 780px;
    margin: 0 auto;
}
.subpage-section {
    margin-bottom: 2.5rem;
}
.subpage-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--text-primary);
    margin-bottom: .75rem;
}
.subpage-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 .5rem;
}
.subpage-section p {
    color: #bdbdbd;
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: .75rem;
}
.subpage-section ul {
    margin: .75rem 0 1rem 1.5rem;
    color: #bdbdbd;
    font-size: .92rem;
    line-height: 2;
}
.subpage-section ul strong {
    color: var(--text-primary);
}
.subpage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .75rem;
    margin-top: 1rem;
}
.subpage-grid-card {
    padding: 1.25rem;
    background: rgba(13,16,15,0.92);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    transition: border-color .2s;
}
.subpage-grid-card:hover {
    border-color: rgba(0,255,106,0.15);
}
.subpage-grid-card h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 .35rem;
}
.subpage-grid-card p {
    font-size: .82rem;
    color: #bdbdbd;
    line-height: 1.55;
    margin: 0;
}
.subpage-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .9rem;
}
.subpage-table th {
    text-align: left;
    padding: .6rem .75rem;
    color: #c4c4c4;
    border-bottom: 2px solid var(--border);
    font-weight: 600;
}
.subpage-table td {
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--border-subtle);
}
.subpage-table td:first-child { color: #bdbdbd; }
.subpage-table td:last-child { color: var(--text-primary); }
.subpage-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.subpage-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: .92rem;
    transition: opacity .15s;
}
.subpage-links a:hover { opacity: .8; }
@media (max-width: 640px) {
    .subpage-hero { padding: 4rem 1rem 2.5rem; }
    .subpage-grid { grid-template-columns: 1fr; }
}

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
    padding: 1.1rem 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before {
    content: '+';
    display: inline-block;
    width: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}
details[open] > .faq-question::before { content: '\2212'; }
.faq-answer {
    padding: 0 0 1.25rem 1.5rem;
    color: #bdbdbd;
    font-size: .88rem;
    line-height: 1.7;
}
.faq-answer p { margin: 0; }

.auth-hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 60px);
    background: #000;
    display: flex;
    align-items: center;
}

.auth-network-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.auth-hero-vignette {
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.auth-stage {
    position: relative;
    z-index: 2;
    width: min(460px, 100%);
    margin: 0 auto;
    padding: clamp(3.25rem, 7vw, 6rem) 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.auth-stage-copy {
    max-width: 560px;
}

.auth-stage-badge {
    margin-bottom: 1.2rem;
}

.auth-stage-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #fff;
}

.auth-stage-text {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.auth-card {
    padding: 2rem;
    background: rgba(7, 10, 8, 0.82);
    border: 1px solid rgba(0, 255, 106, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
}

.auth-card h2 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-card .subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.35rem;
}

.auth-inline-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.auth-inline-callout strong,
.auth-inline-callout span {
    display: block;
}

.auth-inline-callout strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.auth-inline-callout span {
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.auth-inline-callout form {
    margin: 0;
    flex-shrink: 0;
}

.auth-inline-callout-warning {
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(245, 158, 11, 0.08);
}

.auth-social-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
}

.auth-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 50px;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.auth-social-btn:hover {
    border-color: rgba(0, 255, 106, 0.38);
    background: rgba(0, 255, 106, 0.08);
    box-shadow: 0 10px 30px rgba(0, 255, 106, 0.08);
    transform: translateY(-1px);
}

.auth-social-btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.auth-social-btn-disabled:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    transform: none;
}

.auth-social-icon {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1.35rem;
    color: #fff;
}

.auth-social-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.auth-social-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.auth-social-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.1;
}

.auth-social-note {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.67rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.auth-social-help {
    margin-bottom: 1rem;
    font-size: 0.74rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.auth-social-help strong {
    color: var(--text-secondary);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1rem 0 1.35rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
}

.auth-terms-checkbox {
    align-items: flex-start;
    line-height: 1.45;
    cursor: pointer;
}

.auth-terms-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-terms-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

.auth-oauth-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 0 0.875rem;
    line-height: 1.5;
}

.auth-oauth-disclaimer a {
    color: var(--text-secondary);
    text-decoration: underline;
}

@media (max-width: 960px) {
    .auth-stage {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .auth-stage-copy {
        max-width: none;
    }

    .auth-stage-copy h1 {
        font-size: clamp(2.4rem, 9vw, 4rem);
    }
}

@media (max-width: 640px) {
    .auth-inline-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-inline-callout form {
        width: 100%;
    }

    .auth-inline-callout .btn {
        width: 100%;
        justify-content: center;
    }

    .auth-hero-section {
        min-height: auto;
    }

    .auth-stage {
        padding: 2.5rem 1rem 3rem;
    }

    .auth-card {
        padding: 1.35rem;
    }

    .auth-social-btn {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .auth-social-btn {
        width: 100%;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        min-height: 46px;
        gap: 0.5rem;
    }
}



.pricing-hero {
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-grid,
.pricing-includes,
.pricing-faq,
.pricing-bottom-cta,
.pricing-crypto-note {
    position: relative;
    z-index: 1;
}

.pricing-hero-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(0, 255, 106, 0.06);
    border: 1px solid rgba(0, 255, 106, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.pricing-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-glow {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 255, 106, 0.3), 0 0 40px rgba(0, 255, 106, 0.1);
}

.pricing-toggle {
    display: inline-flex;
    gap: 2px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
    margin-top: 1.5rem;
}

.pricing-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-toggle-btn:hover {
    color: var(--text-secondary);
}

.pricing-toggle-btn.active {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.pricing-toggle-save {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: rgba(0, 255, 106, 0.08);
    padding: 0.15rem 0.45rem;
    border-radius: 100px;
}

.pricing-billed-yearly {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.15rem;
}

.pricing-includes-icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem;
    transition: transform 0.2s ease, border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 255, 106, 0.08), 0 12px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(0, 255, 106, 0.03) 0%, transparent 40%), var(--bg-card);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 50px rgba(0, 255, 106, 0.12), 0 16px 50px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 255, 106, 0.35);
}

.pricing-plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-amount {
    font-size: 3.25rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 2px;
}

.pricing-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    min-height: 2.6em;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 1.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-btn {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    transition: all 0.15s ease !important;
}

.pricing-btn-current {
    opacity: 0.5;
    cursor: default;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 10px !important;
}


.pricing-includes {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.pricing-includes h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 2.5rem;
}

.pricing-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.pricing-includes-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.pricing-includes-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 255, 106, 0.12);
    border-radius: var(--radius);
}

.pricing-includes-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #eee;
    margin-bottom: 0.4rem;
}

.pricing-includes-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}


.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.pricing-faq h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 1.25rem;
}

.pricing-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.pricing-faq-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #eee;
    margin-bottom: 0.5rem;
}

.pricing-faq-item p {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


.pricing-bottom-cta {
    text-align: center;
    padding: 4rem 1.5rem 6rem;
    border-top: 1px solid var(--border-subtle);
}

.pricing-bottom-cta h2 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing-bottom-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}



.chat-layout {
    display: flex;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    overflow: hidden;
}

.chat-sidebar {
    width: 280px;
    min-width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.chat-sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.chat-sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.chat-sidebar-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.chat-sidebar-item.active {
    background: var(--accent-subtle);
    color: var(--accent);
}

.chat-sidebar-item .pin-icon {
    font-size: 0.75rem;
    color: var(--warning);
}

.chat-sidebar-folder {
    padding: 0.5rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.chat-message {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    display: flex;
    gap: 1rem;
}

.chat-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.chat-message-avatar.user {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.chat-message-avatar.assistant {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 8px rgba(0, 255, 106, 0.25);
}

.chat-message-content {
    flex: 1;
    min-width: 0;
}

.chat-message-content p {
    margin-bottom: 0.75rem;
}

.chat-message-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.chat-message-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.chat-message:hover .chat-message-actions {
    opacity: 1;
}



.chat-input-area {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.chat-input-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.chat-input-controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.chat-input-box {
    display: flex;
    align-items: flex-end;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    transition: border-color var(--transition);
}

.chat-input-box:focus-within {
    border-color: var(--border-focus);
}

.chat-input-box textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    resize: none;
    min-height: 24px;
    max-height: 200px;
    padding: 0.375rem 0.5rem;
    line-height: 1.5;
}

.chat-input-box textarea::placeholder {
    color: var(--text-muted);
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    flex-shrink: 0;
}

.chat-send-btn:hover {
    background: var(--accent-hover);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-quota-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
    padding: 0 0.25rem;
}



.model-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.model-selector:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.model-selector.active {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}



.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.toggle-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.toggle-btn.active {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}



.code-block {
    position: relative;
    margin: 1rem 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.code-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.code-block-actions {
    display: flex;
    gap: 0.25rem;
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    line-height: 1.6;
}



.citation {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
}

.citation:hover {
    background: rgba(0, 255, 106, 0.15);
}

.citation-panel {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.citation-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
}

.citation-item:last-child {
    border-bottom: none;
}

.citation-item a {
    font-weight: 500;
}

.citation-item p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}



.tool-trace {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.8125rem;
}

.tool-trace-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    color: var(--accent);
}

.tool-trace-body {
    color: var(--text-secondary);
    font-size: 0.75rem;
}



.admin-layout {
    display: flex;
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
}

.admin-sidebar {
    width: 240px;
    min-width: 240px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    padding: 1rem 0;
}

.admin-sidebar-item {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.admin-sidebar-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.admin-sidebar-item.active {
    color: var(--accent);
    background: var(--accent-subtle);
    border-right: 2px solid var(--accent);
}

.admin-sidebar-section {
    padding: 0.75rem 1.25rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.admin-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.admin-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}



.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

tr:hover td {
    background: var(--bg-hover);
}



.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid;
}

.badge-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: var(--success); }
.badge-danger { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: var(--danger); }
.badge-warning { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: var(--warning); }
.badge-info { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: var(--info); }
.badge-neutral { background: rgba(148, 148, 168, 0.1); border-color: rgba(148, 148, 168, 0.3); color: var(--text-secondary); }



.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}



.docs-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.docs-layout h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.docs-layout h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.docs-layout h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.docs-layout p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.docs-endpoint {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.docs-method {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-right: 0.5rem;
}

.docs-method.post { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.docs-method.get { background: rgba(59, 130, 246, 0.15); color: var(--info); }
.docs-method.delete { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.docs-path {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
}



.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.8125rem; }
.text-xs { font-size: 0.75rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }



.markdown-body h1 { font-size: 1.5rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
.markdown-body h2 { font-size: 1.25rem; font-weight: 600; margin: 1.25rem 0 0.625rem; }
.markdown-body h3 { font-size: 1.125rem; font-weight: 600; margin: 1rem 0 0.5rem; }
.markdown-body p { margin-bottom: 0.75rem; line-height: 1.7; }
.markdown-body ul, .markdown-body ol { margin: 0.5rem 0 0.75rem 1.25rem; }
.markdown-body li { margin-bottom: 0.375rem; line-height: 1.6; }
.markdown-body code {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    padding: 0.125rem 0.375rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    color: var(--accent-hover);
}
.markdown-body pre code {
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: var(--text-primary);
}
.markdown-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.5rem 1rem;
    margin: 0.75rem 0;
    color: var(--text-secondary);
    background: var(--accent-subtle);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.markdown-body table {
    margin: 0.75rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.markdown-body img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 0.75rem 0;
}
.markdown-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}



::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }



@media (max-width: 1024px) {
    .navbar-inner { padding: 0 1rem; }
    .pricing-grid { gap: 1rem; }
    .pricing-hero h1 { font-size: 2.5rem; }
    .landing-trust-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .landing-intro h2 { font-size: 2rem; }
    .landing-cta h2 { font-size: 2.25rem; }
}



@media (max-width: 768px) {
    .hero-section { min-height: 100svh; }
    .hero-content { padding: 5rem 1.25rem 4rem; }
    .hero-content p { max-width: 90vw; }
    .hero-sub { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; align-items: center; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

    .navbar-inner { padding: 0 0.75rem; }
    .navbar-links { gap: 0.5rem; }
    .navbar-links .nav-link { font-size: 0.8rem; }
    .navbar-links .btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }

    .chat-sidebar { display: none; }
    .admin-sidebar { display: none; }

    .pricing-hero { padding: 3rem 1.25rem 2rem; }
    .pricing-hero h1 { font-size: 2rem; letter-spacing: -1px; }
    .pricing-hero p { font-size: 0.95rem; }
    .pricing-includes-grid { grid-template-columns: 1fr 1fr; }
    .pricing-faq-grid { grid-template-columns: 1fr; }
    .pricing-bottom-cta h2 { font-size: 1.75rem; }
    .features-grid { grid-template-columns: 1fr; padding: 2rem 1.25rem; }

    .landing-step-arrow { display: none; }
    .landing-steps-inner { flex-direction: column; align-items: center; }
    .landing-step { max-width: 100%; }
    .landing-trust-inner { grid-template-columns: 1fr; }
    .landing-intro { padding: 3rem 1.25rem 2rem; }
    .landing-intro h2 { font-size: 1.75rem; }
    .landing-cta { padding: 4rem 1.25rem 5rem; }
    .landing-cta h2 { font-size: 2rem; }

    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.9rem; }

    .footer-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
}



@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; letter-spacing: -1px; }
    .hero-content p { font-size: 0.875rem; }
    .hero-sub { font-size: 1rem; }
    .navbar-links { gap: 0.35rem; }
    .navbar-links .nav-link { font-size: 0.75rem; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .btn-sm { padding: 0.35rem 0.75rem; font-size: 0.75rem; }
    .pricing-card { padding: 1.25rem; }
    .feature-card { padding: 1.25rem; }
    .trust-terminal-body { font-size: 0.75rem; padding: 1rem; }
}

:focus-visible {
    outline: 2px solid var(--accent, #00ff6a);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .hero-glitch, .glitch, .glitch::before, .glitch::after,
    .pulse-ring, .badge-pulse, .scanlines-drift, .scroll-hint-bob {
        animation: none !important;
    }
}
