@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #060204;
    --bg-surface: rgba(18, 6, 11, 0.75);
    --bg-glass-card: rgba(26, 8, 15, 0.58);
    --bg-glass-card-hover: rgba(38, 12, 22, 0.82);
    --bg-glass-heavy: rgba(16, 5, 10, 0.9);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.16);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(225, 29, 72, 0.55);
    --border-crimson: rgba(244, 63, 94, 0.65);
    --border-emerald: rgba(16, 185, 129, 0.55);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --brand-primary: #e11d48;
    --brand-ruby: #f43f5e;
    --brand-scarlet: #ff2a5f;
    --brand-rose: #fda4af;
    --brand-sky: #ff4d79;
    --brand-emerald: #10b981;
    --brand-amber: #f59e0b;

    --gradient-primary: linear-gradient(135deg, #ff2a5f 0%, #e11d48 50%, #9f1239 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.015) 100%);
    --gradient-button: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    --gradient-button-hover: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --glass-blur: blur(28px);
    --glass-blur-heavy: blur(40px);

    --shadow-glass: 0 20px 50px -10px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    --shadow-glow: 0 0 35px rgba(225, 29, 72, 0.35);
    --shadow-crimson: 0 0 35px rgba(244, 63, 94, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.cyber-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 54px 54px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 20%, #000 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 20%, #000 60%, transparent 100%);
}

/* Ambient Floating Aurora Orbs */
.aurora-orb-1 {
    position: fixed;
    top: -15%;
    right: 10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.28) 0%, rgba(244, 63, 94, 0.08) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: auroraFloat1 18s ease-in-out infinite alternate;
}

.aurora-orb-2 {
    position: fixed;
    bottom: -10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(159, 18, 57, 0.22) 0%, rgba(225, 29, 72, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: auroraFloat2 22s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.15); }
    100% { transform: translate(60px, -40px) scale(0.95); }
}

@keyframes auroraFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(90px, -70px) scale(1.2); }
    100% { transform: translate(-50px, 40px) scale(0.9); }
}

/* Cyber Border Beam (Laser perimeter) */
.border-beam-card {
    position: relative;
    overflow: hidden;
}

.border-beam-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, #ff2a5f 330deg, #ff7597 360deg);
    animation: rotateBeam 6s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1.5px;
}

@keyframes rotateBeam {
    100% { transform: rotate(360deg); }
}

/* Smooth Tab Transitions */
.page-container {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tabSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

code, pre, .mono {
    font-family: 'JetBrains Mono', Consolas, monospace;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #060204;
}
::-webkit-scrollbar-thumb {
    background: #2b0c15;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4c1424;
}

/* ==================== GLASS PANELS & SPOTLIGHTS ==================== */
.glass-panel {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 95, 0.4), transparent);
    pointer-events: none;
}

.glass-panel:hover {
    border-color: rgba(225, 29, 72, 0.6);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.glass-card-heavy {
    background: var(--bg-glass-heavy);
    border: 1px solid var(--border-highlight);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
}

/* Spotlight Card */
.spotlight-card {
    position: relative;
}

.spotlight-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(225, 29, 72, 0.16),
        transparent 50%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spotlight-card:hover::after {
    opacity: 1;
}

/* ==================== SHINY TEXT ==================== */
.shiny-text {
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 1) 35%,
        rgba(244, 63, 94, 0.95) 55%,
        rgba(255, 42, 95, 0.95) 75%,
        rgba(255, 255, 255, 0.7) 100%
    );
    background-size: 250% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to { background-position: 250% center; }
}

/* ==================== GLOWING PILL ==================== */
.glowing-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.4);
    color: #fda4af;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.2);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.glowing-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: pillShine 4s infinite;
}

@keyframes pillShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* ==================== HIGH-END BUTTON SYSTEM ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    outline: none;
    user-select: none;
    white-space: nowrap;
    position: relative;
}

.btn:active {
    transform: translateY(0px) scale(0.97) !important;
}

.btn-primary {
    background: linear-gradient(180deg, #ff2a5f 0%, #e11d48 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 3px 12px rgba(225, 29, 72, 0.45);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ff4373 0%, #f43f5e 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 6px 22px rgba(225, 29, 72, 0.65), 0 0 25px rgba(255, 42, 95, 0.35);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 18px rgba(0, 0, 0, 0.5);
}

.btn-danger {
    background: rgba(244, 63, 94, 0.12);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-danger:hover {
    background: linear-gradient(180deg, #f43f5e 0%, #e11d48 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 20px rgba(244, 63, 94, 0.55);
}

.btn-warning {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-warning:hover {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-success {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-success:hover {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-sm {
    padding: 7px 14px;
    font-size: 12px;
    border-radius: 8px;
}

/* ==================== NAVBAR ==================== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: rgba(6, 2, 4, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 1000;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.5);
}

.brand-title {
    font-size: 17.5px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.4px;
}

.brand-title span {
    color: #ff4d79;
    font-size: 10.5px;
    display: block;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #fff;
}

/* ==================== HERO SECTION ==================== */
.hero-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 135px 32px 70px 32px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-heading {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.8px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 34px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.hero-stats-row {
    display: flex;
    gap: 36px;
    border-top: 1px solid var(--border-glass);
    padding-top: 26px;
}

.stat-metric h4 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.stat-metric p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Hero Cyber Card HUD */
.cyber-hud-card {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.hud-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 16px;
}

.hud-dots {
    display: flex;
    gap: 7px;
}

.hud-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hud-dot.red { background: #f43f5e; }
.hud-dot.yellow { background: #f59e0b; }
.hud-dot.green { background: #10b981; }

.hud-live-badge {
    font-size: 10.5px;
    color: #ff4d79;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.35);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 800;
}

.hud-app-parameters-box {
    background: rgba(10, 3, 6, 0.65);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hud-param-item span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
}

.hud-param-item strong {
    font-size: 12px;
    color: #fff;
}

.hud-code-window {
    background: #060204;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.6;
    color: #e2e8f0;
    max-height: 175px;
    overflow-y: auto;
}

.hud-interactive-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid var(--border-glow);
    padding: 12px 16px;
    border-radius: var(--radius-md);
}

/* ==================== DASHBOARD ADVANCED LAYOUT ==================== */
.app-container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.sidebar {
    width: 275px;
    background: rgba(12, 4, 8, 0.94);
    backdrop-filter: blur(28px);
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 20px 8px;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 20px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.45);
}

.brand-text h1 {
    font-size: 16.5px;
    font-weight: 900;
    color: #fff;
}

.brand-text span {
    font-size: 10.5px;
    color: #ff4d79;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
}

.nav-item svg {
    width: 17px;
    height: 17px;
    stroke-width: 2;
}

.nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.16) 0%, rgba(225, 29, 72, 0.12) 100%);
    border: 1px solid rgba(244, 63, 94, 0.4);
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.25);
}

.nav-item.active svg {
    color: #ff4d79;
}

.sidebar-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #18060c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ff4d79;
    border: 1px solid var(--border-glow);
}

.user-info .username {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.user-info .role {
    font-size: 11px;
    color: #ff4d79;
    font-family: 'JetBrains Mono', monospace;
}

.btn-logout {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.btn-logout:hover {
    color: var(--brand-rose);
    background: rgba(244, 63, 94, 0.12);
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-y: auto;
    height: 100vh;
}

.top-header {
    height: 74px;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(10, 3, 6, 0.9);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.app-selector-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-select {
    background: #14050a;
    color: #fff;
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    outline: none;
}

.app-select:focus {
    border-color: var(--brand-primary);
}

.page-container {
    padding: 32px;
    flex-grow: 1;
    display: none;
}

.page-container.active {
    display: block;
    animation: fadeIn 0.25s ease forwards;
}

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

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.page-title h2 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
}

.page-title p {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* App Credentials Banner */
.app-credentials-banner {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.cred-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cred-label {
    font-size: 10.5px;
    font-weight: 800;
    color: #ff4d79;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cred-val {
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cred-copy-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    transition: 0.2s;
}

.btn-copy-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 63, 94, 0.4);
    box-shadow: 0 15px 35px -10px rgba(225, 29, 72, 0.25);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stat-header span {
    font-size: 12.5px;
    color: var(--text-secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 18px;
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.stat-footer {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Glass Tables */
.table-card {
    background: var(--bg-glass-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.table-toolbar {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.search-input-wrap {
    position: relative;
    flex-grow: 1;
    max-width: 340px;
}

.search-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 16px;
    height: 16px;
}

.search-input {
    width: 100%;
    background: #0a0306;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 9px 14px 9px 40px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: 0.2s;
}

.search-input:focus {
    border-color: var(--brand-primary);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th {
    background: rgba(0, 0, 0, 0.55);
    padding: 14px 24px;
    font-size: 11.5px;
    font-weight: 900;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid var(--border-glass);
}

.data-table td {
    padding: 16px 24px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-primary);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 800;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge-success { background: rgba(16, 185, 129, 0.14); color: #34d399; }
.badge-success .badge-dot { background: #10b981; }

.badge-warning { background: rgba(245, 158, 11, 0.14); color: #fbbf24; }
.badge-warning .badge-dot { background: #f59e0b; }

.badge-danger { background: rgba(244, 63, 94, 0.14); color: #fb7185; }
.badge-danger .badge-dot { background: #f43f5e; }

.badge-purple { background: rgba(225, 29, 72, 0.14); color: #fda4af; }
.badge-purple .badge-dot { background: #e11d48; }

.badge-cyan { background: rgba(255, 42, 95, 0.14); color: #ff4d79; }
.badge-cyan .badge-dot { background: #ff2a5f; }

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 1, 3, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-overlay.active .modal-box {
    animation: modalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPopIn {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(24px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
    }
}

.modal-box {
    background: linear-gradient(170deg, rgba(22, 6, 12, 0.98) 0%, rgba(10, 3, 6, 0.99) 100%);
    border: 1.5px solid rgba(244, 63, 94, 0.45);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.95), 0 0 45px rgba(225, 29, 72, 0.35);
    position: relative;
    transform-origin: center center;
}

.modal-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2a5f, #ff7597, transparent);
}

.modal-header {
    padding: 22px 30px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.015);
}

.modal-header h3 {
    font-size: 17.5px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
    background: rgba(244, 63, 94, 0.3);
    border-color: rgba(244, 63, 94, 0.8);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 28px 30px;
}

.modal-footer {
    padding: 18px 30px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: rgba(0, 0, 0, 0.45);
}

/* Dropdown Cyber Menus */
.dropdown-menu-cyber {
    animation: dropdownPop 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownPop {
    0% { opacity: 0; transform: translateY(-8px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-item-cyber {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item-cyber:hover {
    background: rgba(225, 29, 72, 0.25) !important;
    transform: translateX(4px);
    color: #fff !important;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: #0a0306;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #fff;
    font-size: 13.5px;
    outline: none;
    transition: 0.2s;
}

.form-control:focus {
    border-color: var(--brand-primary);
}

/* Toast */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #14050a;
    border: 1px solid var(--border-glass);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    box-shadow: var(--shadow-glass);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-success { border-left: 4px solid var(--brand-emerald); }
.toast-error { border-left: 4px solid var(--brand-ruby); }
.toast-info { border-left: 4px solid #ff4d79; }

/* Code Snippet Box */
.code-container {
    background: #060204;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 16px;
    box-shadow: var(--shadow-glass);
}

.code-tabs {
    display: flex;
    background: #120408;
    border-bottom: 1px solid var(--border-glass);
}

.code-tab-btn {
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.code-tab-btn.active {
    color: #fff;
    background: #1c070d;
    border-bottom: 2px solid #ff4d79;
}

.code-block {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #e2e8f0;
    overflow-x: auto;
    max-height: 480px;
    white-space: pre;
    line-height: 1.7;
}

#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* Locked Feature Paywall */
.locked-feature-paywall {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: radial-gradient(circle at 50% 30%, rgba(225, 29, 72, 0.15), rgba(6, 2, 4, 0.95) 75%);
    border: 1px solid rgba(225, 29, 72, 0.35);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 50px rgba(225, 29, 72, 0.2);
    margin-top: 10px;
}
.paywall-icon-bubble {
    width: 80px;
    height: 80px;
    background: rgba(225, 29, 72, 0.18);
    border: 2px solid rgba(225, 29, 72, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 24px;
    box-shadow: 0 0 35px rgba(225, 29, 72, 0.4);
    animation: pulseLock 2.5s infinite ease-in-out;
}
@keyframes pulseLock {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(225, 29, 72, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 50px rgba(244, 63, 94, 0.6); }
}
.locked-feature-paywall h2 {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.locked-feature-paywall p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.paywall-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    max-width: 600px;
    width: 100%;
    margin-bottom: 32px;
}
.paywall-perk-item {
    background: rgba(18, 4, 8, 0.7);
    border: 1px solid rgba(225, 29, 72, 0.2);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.paywall-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   ADVANCED LUXURY LANDING PAGE ANIMATIONS & INTERACTION SYSTEM
   ========================================================================== */

/* 1. Aurora Background Fluid Orbs */
.hero-aurora-glow-1 {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.28) 0%, rgba(159, 18, 57, 0.12) 50%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    animation: auroraFloat 10s ease-in-out infinite alternate;
}

.hero-aurora-glow-2 {
    position: absolute;
    top: 25%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(225, 29, 72, 0.08) 50%, transparent 75%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    animation: auroraDrift 14s ease-in-out infinite alternate;
}

@keyframes auroraFloat {
    0% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-45%, 30px) scale(1.12); }
    100% { transform: translate(-55%, -20px) scale(0.95); }
}

@keyframes auroraDrift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 40px) scale(1.15); }
    100% { transform: translate(-40px, 20px) scale(0.9); }
}

/* 2. Floating Tech Badges */
.floating-badge {
    position: absolute;
    background: rgba(18, 4, 8, 0.85);
    border: 1px solid rgba(225, 29, 72, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(225, 29, 72, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 12.5px;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(16px);
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
}

.badge-top-left {
    top: 15%;
    left: 5%;
    animation: floatSlow 5s ease-in-out infinite;
}

.badge-top-right {
    top: 18%;
    right: 5%;
    animation: floatSlow 6s ease-in-out infinite 1s;
}

.badge-bottom-left {
    bottom: 22%;
    left: 8%;
    animation: floatSlow 5.5s ease-in-out infinite 0.5s;
}

.badge-bottom-right {
    bottom: 24%;
    right: 8%;
    animation: floatSlow 6.5s ease-in-out infinite 1.5s;
}

@media (max-width: 1024px) {
    .floating-badge { display: none; }
}

/* 3. Luxury Shiny Chrome Shimmer Text */
.shiny-text {
    background: linear-gradient(110deg, #ff4d79 0%, #ffffff 30%, #ff2a5f 60%, #ffffff 85%, #ff4d79 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
    display: inline-block;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

/* 4. Interactive Live Metric Pills */
.hero-live-metric-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: rgba(14, 4, 8, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 16px 36px;
    margin: 40px auto 0 auto;
    max-width: 960px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.live-metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-metric-item .metric-val {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.5px;
}

.live-metric-item .metric-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
}

/* 5. Spotlight Glow on Cards (Raycast / Vercel style) */
.spotlight-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(225, 29, 72, 0.18), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* 6. Ultra-Smooth Scroll Reveal Animation System */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 7. Continuous Idle Animations (Auto-Animated Without Hovering) */
@keyframes continuousCardAura {
    0%, 100% {
        box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 20px rgba(225, 29, 72, 0.08);
        border-color: rgba(255, 255, 255, 0.09);
    }
    50% {
        box-shadow: 0 20px 45px -5px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 35px rgba(244, 63, 94, 0.3);
        border-color: rgba(225, 29, 72, 0.45);
    }
}

@keyframes continuousIconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 0 20px rgba(225, 29, 72, 0.25);
    }
    50% {
        transform: translateY(-4px) scale(1.06);
        box-shadow: 0 0 35px rgba(244, 63, 94, 0.6);
    }
}

@keyframes continuousSheen {
    0% { transform: translateX(-150%) rotate(35deg); }
    100% { transform: translateX(250%) rotate(35deg); }
}

.pipeline-step, .glass-panel, .hero-matrix-card {
    position: relative;
    animation: continuousCardAura 5s ease-in-out infinite;
    overflow: hidden;
}

.pipeline-step::after, .glass-panel::after, .hero-matrix-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 40%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 77, 121, 0.09) 55%,
        transparent 65%
    );
    animation: continuousSheen 7s infinite linear;
    pointer-events: none;
}

.card-icon-pod {
    animation: continuousIconFloat 3.5s ease-in-out infinite;
}

/* ========================================================
   GLOBAL TOP FROSTED GLASS DYNAMIC ISLAND TOAST SYSTEM
   ======================================================== */
#toast-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    width: auto;
    max-width: 90vw;
}

.toast {
    background: rgba(12, 3, 7, 0.88);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border-radius: 9999px;
    padding: 11px 26px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: dynamicIslandDrop 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    white-space: nowrap;
}

.toast-success {
    border: 1px solid rgba(16, 185, 129, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.toast-error {
    border: 1px solid rgba(239, 68, 68, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(239, 68, 68, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.toast-info {
    border: 1px solid rgba(244, 63, 94, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(244, 63, 94, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes dynamicIslandDrop {
    0% {
        opacity: 0;
        transform: translateY(-35px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================================
   ULTRA-RESPONSIVE MOBILE STYLES (iOS & Android Optimized)
   ======================================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .landing-nav {
        padding: 12px 16px !important;
    }
    
    .landing-nav .nav-links {
        display: none !important;
    }
    
    .hero-container {
        padding: 40px 16px 60px !important;
    }
    
    .hero-title {
        font-size: 30px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 0 8px !important;
    }
    
    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .hero-cta-group .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-stats-row {
        flex-wrap: wrap !important;
        gap: 16px !important;
        justify-content: center !important;
    }
    
    .stat-metric {
        flex: 1 1 40% !important;
        text-align: center !important;
    }
    
    .grid-2, .grid-3, .grid-4, .features-grid, .pricing-grid, .pipeline-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .auth-card {
        width: 92% !important;
        max-width: 420px !important;
        padding: 28px 20px !important;
        margin: 20px auto !important;
    }
    
    #toast-container {
        left: 16px !important;
        right: 16px !important;
        bottom: 20px !important;
    }
    
    .toast {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px !important;
    }
    
    .hero-badge {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
    
    .card-icon-pod {
        width: 40px !important;
        height: 40px !important;
    }
}


