/* ========================================
   SMART MANAGE - ULTRA TECH LANDING PAGE
   ======================================== */

/* Root Variables — Deep Space & Neon Palette */
:root {
    --bg-deep: #050510;
    --bg-surface: #0a0a1f;
    --bg-card: rgba(15, 15, 35, 0.6);
    --bg-card-hover: rgba(25, 25, 50, 0.8);

    /* Neon Accents */
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-blue: #4d4dff;
    --neon-pink: #ff0055;

    --accent-gradient: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    --text-main: #e0e0e0;
    --text-muted: #8a8ca0;

    /* Spotlight & Glow */
    --spotlight-color: rgba(0, 243, 255, 0.15);
    --glow-cyan: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);

    /* Legacy override */
    --primary-color: var(--neon-cyan);
}

/* Global Reset & Base */
html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* ========================================
   NAVBAR — Tech Glass
   ======================================== */
.navbar {
    background: rgba(5, 5, 16, 0.7) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.shadow {
    background: rgba(5, 5, 16, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 243, 255, 0.1) !important;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff !important;
    text-transform: uppercase;
}

.navbar-brand span {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar .btn-outline-primary {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.navbar .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-cyan);
    z-index: -1;
    transition: width 0.3s ease-in-out;
}

.navbar .btn-outline-primary:hover {
    color: #000 !important;
    box-shadow: var(--glow-cyan);
}

.navbar .btn-outline-primary:hover::before {
    width: 100%;
}

/* ========================================
   HERO SECTION — Cyberpunk / Tech
   ======================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(76, 29, 149, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Scanline Overlay */
.hero-section::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.4;
}

.hero-particles,
.hero-data-stream {
    z-index: 1;
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-data-stream {
    opacity: 0.12;
}

.data-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    color: var(--neon-cyan);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: dataRain linear infinite;
    white-space: nowrap;
    letter-spacing: 4px;
    text-shadow: 0 0 8px var(--accent-glow-cyan);
}

@keyframes dataRain {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200vh);
    }
}

.hero-particle {
    position: absolute;
    color: var(--neon-cyan);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatTech {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Glitch Title */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px var(--neon-purple);
}

.hero-title span {
    color: var(--neon-cyan);
}

/* Glitch Animation Keyframes */
@keyframes glitch-anim-1 {
    0% {
        clip: rect(20px, 9999px, 15px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 5px, 0);
    }

    40% {
        clip: rect(30px, 9999px, 90px, 0);
    }

    60% {
        clip: rect(10px, 9999px, 50px, 0);
    }

    80% {
        clip: rect(45px, 9999px, 20px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 80px, 0);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--neon-cyan);
    margin-left: 5px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Hero Buttons */
.btn-tech-primary {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-tech-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-tech-primary:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

.btn-tech-primary:hover::before {
    left: 100%;
}

.btn-tech-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-tech-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   TECH TICKER
   ======================================== */
.tech-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

.tech-ticker {
    display: flex;
    width: fit-content;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 2rem;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   APP PREVIEW — Laptop Mockup
   ======================================== */
.app-preview-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 243, 255, 0.06) 0%, transparent 60%);
}

/* ── Promo iframe container ── */
.promo-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.promo-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.18);
    box-shadow:
        0 0 0 1px rgba(0, 243, 255, 0.08),
        0 0 60px rgba(0, 243, 255, 0.1),
        0 24px 80px rgba(0, 0, 0, 0.6);
}

.promo-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

@media (max-width: 576px) {
    .promo-iframe {
        aspect-ratio: 4 / 3;
        min-height: 300px;
    }
}

.device-showcase {
    max-width: 900px;
    margin: 0 auto;
    perspective: 1200px;
}

/* Laptop Frame */
.laptop-mockup {
    position: relative;
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
}

.laptop-mockup:hover {
    transform: rotateX(0deg) scale(1.01);
}

.laptop-screen {
    background: #0c0c1e;
    border: 2px solid rgba(0, 243, 255, 0.25);
    border-radius: 12px 12px 0 0;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(0, 243, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Browser-like top bar */
.laptop-topbar {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    background: rgba(15, 15, 30, 0.95);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    gap: 6px;
}

.topbar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.topbar-dot.red { background: #ff5f57; }
.topbar-dot.yellow { background: #ffbd2e; }
.topbar-dot.green { background: #28ca41; }

.topbar-url {
    margin-left: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 12px;
    border-radius: 4px;
    flex: 1;
    max-width: 200px;
}

/* Screenshot area */
.laptop-content.demo-content {
    position: relative;
    aspect-ratio: 16 / 9.5;
    overflow: hidden;
    background: #0f1117;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Legacy screen-img (keep for fallback) */
.screen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.screen-img.active {
    opacity: 1;
}

/* ── Demo Screen Base ── */
.demo-screen {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    font-size: 0.65rem;
    color: #c9ccd5;
}
.demo-screen.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Sidebar ── */
.demo-sidebar {
    width: 110px;
    min-width: 110px;
    background: #151822;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.demo-sidebar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    color: #6b7280;
    font-size: 0.55rem;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}
.demo-sidebar-item i {
    width: 14px;
    text-align: center;
    font-size: 0.6rem;
}
.demo-sidebar-item.highlight {
    color: var(--neon-cyan);
    background: rgba(0,243,255,0.06);
    border-left-color: var(--neon-cyan);
}

/* ── Main area ── */
.demo-main {
    flex: 1;
    padding: 10px 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ── Header ── */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-page-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}
.demo-actions {
    display: flex;
    gap: 5px;
}
.demo-btn-sm {
    font-size: 0.5rem;
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.demo-btn-info { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.demo-btn-success { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }

/* ── Table ── */
.demo-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
}
.demo-table-head {
    display: flex;
    gap: 4px;
    padding: 4px 6px;
    background: rgba(255,255,255,0.04);
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.demo-table-head span { flex: 1; }
.demo-table-row {
    display: flex;
    gap: 4px;
    padding: 5px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background 0.2s;
    font-size: 0.55rem;
}
.demo-table-row span { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo-table-row:hover { background: rgba(0,243,255,0.04); }

/* ── Badges ── */
.demo-badge-green {
    color: #34d399;
    background: rgba(16,185,129,0.15);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 600;
}
.demo-badge-yellow {
    color: #fbbf24;
    background: rgba(245,158,11,0.15);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 600;
}
.demo-badge-success-pill {
    color: #34d399;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.3);
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.5rem;
    font-weight: 600;
}
.demo-mono { font-family: 'Courier New', monospace; color: var(--neon-cyan); font-size: 0.55rem; }
.demo-fw-bold { font-weight: 700; color: #fff; }
.demo-text-cyan { color: var(--neon-cyan); }
.demo-text-muted { color: #6b7280; }

/* ── Email specific ── */
.demo-email-stats {
    display: flex;
    gap: 16px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 0.55rem;
}
.demo-email-unread {
    background: rgba(0,243,255,0.03);
    border-left: 2px solid var(--neon-cyan);
}

/* ── KPI Cards ── */
.demo-kpi-row {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}
.demo-kpi {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid;
    border-radius: 4px;
    padding: 6px 8px;
}
.demo-kpi-label {
    font-size: 0.45rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.3px;
}
.demo-kpi-value {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

/* ── Charts row ── */
.demo-charts-row {
    display: flex;
    gap: 8px;
    flex: 1;
}
.demo-chart-box {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
}
.demo-chart-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 6px;
}

/* ── Bar Chart ── */
.demo-bar-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-top: 4px;
}
.demo-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    height: 100%;
    justify-content: flex-end;
}
.demo-bar-item span {
    font-size: 0.45rem;
    color: #6b7280;
}
.demo-bar {
    width: 100%;
    border-radius: 2px 2px 0 0;
    min-height: 2px;
}

/* ── Network SVG ── */
.demo-network-svg {
    width: 100%;
    flex: 1;
}

/* ── Detail Card ── */
.demo-detail-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.demo-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px 6px 0 0;
    font-size: 0.7rem;
    font-weight: 700;
}
.demo-detail-body {
    flex: 1;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}
.demo-detail-section {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
}
.demo-detail-section-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 4px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 12px;
    font-size: 0.55rem;
}
.demo-detail-grid > div {
    display: flex;
    gap: 4px;
}
.demo-detail-label {
    color: #6b7280;
    font-weight: 600;
    min-width: 60px;
}

/* ═══════════════════════════════════════════
   DEMO ANIMATIONS
   ═══════════════════════════════════════════ */

/* Row slide-in */
.anim-row {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.demo-screen.active .anim-row {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--row-delay, 0s);
}

/* Bar grow */
.anim-bar {
    height: 0%;
    transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.demo-screen.active .anim-bar {
    height: var(--bar-height, 50%);
    transition-delay: var(--bar-delay, 0s);
}

/* Network nodes pop */
.anim-node {
    r: 0;
    transition: r 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.demo-screen.active .anim-node {
    r: attr(r);
    transition-delay: var(--node-delay, 0s);
}

/* Network links draw */
.anim-link {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.8s ease;
}
.demo-screen.active .anim-link {
    stroke-dashoffset: 0;
    transition-delay: 0.3s;
}

/* Counter animation handled by JS */

/* ── Responsive adjustments ── */
@media (max-width: 768px) {
    .demo-sidebar { width: 40px; min-width: 40px; }
    .demo-sidebar-item span { display: none; }
    .demo-sidebar-item { justify-content: center; padding: 5px; }
    .demo-kpi-row { flex-wrap: wrap; }
    .demo-kpi { min-width: 45%; }
    .demo-charts-row { flex-direction: column; }
    .demo-table-head span:nth-child(n+4),
    .demo-table-row span:nth-child(n+4) { display: none; }
}

/* Laptop base / keyboard */
.laptop-base {
    width: 110%;
    margin-left: -5%;
    height: 16px;
    background: linear-gradient(180deg, #1a1a2e, #0e0e1a);
    border-radius: 0 0 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(0, 243, 255, 0.15);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-notch {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Slide buttons */
.slide-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slide-btn {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slide-btn:hover {
    border-color: rgba(0, 243, 255, 0.3);
    color: #fff;
}

.slide-btn.active {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.08);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .laptop-mockup {
        transform: none;
    }
    .laptop-mockup:hover {
        transform: none;
    }
    .laptop-base {
        width: 104%;
        margin-left: -2%;
    }
    .slide-controls {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   FEATURE CARDS — Spotlight Tech
   ======================================== */
.features-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    /* Spotlight variable defaults */
    --x: 50%;
    --y: 50%;
}

/* Spotlight Gradient Overlay */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x) var(--y), var(--spotlight-color), transparent 40%);
    opacity: 0;
    /* Hidden by default, shown via JS/Hover */
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ========================================
   USE CASES — Workflow Diagrams
   ======================================== */
.use-case-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
    position: relative;
}

.use-case-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    opacity: 0.5;
}

.use-case-title {
    color: #fff;
    margin-bottom: 1rem;
}

.use-case-features li {
    list-style: none;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.use-case-features li i {
    color: var(--neon-cyan);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #020205 !important;
    border-top: 1px solid var(--glass-border);
}

.footer h5,
.footer h6 {
    color: #fff;
    letter-spacing: 1px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* New Feature Card Highlight */
.feature-card.new-feature {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

.feature-card.new-feature .feature-icon {
    color: var(--neon-purple);
    background: rgba(188, 19, 254, 0.1);
    border-color: rgba(188, 19, 254, 0.3);
}

.feature-card.new-feature::after {
    content: 'NEW';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-purple);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

/* Coming Soon Feature Card Highlight */
.feature-card.coming-soon-feature {
    border-color: rgba(255, 255, 255, 0.2);
    border-style: dashed;
    opacity: 0.8;
}

.feature-card.coming-soon-feature:hover {
    border-color: var(--neon-pink);
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.feature-card.coming-soon-feature .feature-icon {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card.coming-soon-feature:hover .feature-icon {
    color: var(--neon-pink);
    background: rgba(255, 0, 85, 0.1);
    border-color: rgba(255, 0, 85, 0.3);
}

.feature-card.coming-soon-feature::after {
    content: 'IN ARRIVO';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    pointer-events: none;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* ========================================
   PRESS SECTION — "PARLANO DI NOI"
   ======================================== */

.press-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.press-card::before {
    content: '\f1ea';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.04);
    pointer-events: none;
    transition: color 0.3s;
}

.press-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.press-card:hover::before {
    color: rgba(59, 130, 246, 0.08);
}

.press-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.press-source {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.press-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
    transition: color 0.2s;
}

.press-card:hover .press-link {
    color: #60a5fa;
}

.press-link i {
    transition: transform 0.2s;
}

.press-card:hover .press-link i {
    transform: translateX(4px);
}