/* =============================================
   EMOWARE AI – NEXTSTEP
   Glassmorphism Dark Theme Landing Page
   ============================================= */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #05060f;
    --bg2: #080b1a;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --text: #f0f0fa;
    --text-muted: rgba(240, 240, 250, 0.5);
    --text-dim: rgba(240, 240, 250, 0.3);
    --accent-1: #a78bfa;
    /* violet */
    --accent-2: #818cf8;
    /* indigo */
    --accent-3: #f0abfc;
    /* pink */
    --accent-4: #60a5fa;
    /* blue */
    --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-4));
    --grad-text: linear-gradient(120deg, #c4b5fd, #818cf8, #93c5fd, #f0abfc);
    --font: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

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

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s;
}

/* ---------- GLASSMORPHISM CARD ---------- */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(167, 139, 250, 0.2);
    box-shadow: var(--shadow), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: grad-shift 5s ease infinite;
}

@keyframes grad-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ---------- SECTION BASE ---------- */
.section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 20px;
    text-align: center;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 64px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #6366f1, #4f8ef7);
    color: #fff;
    box-shadow: 0 4px 24px rgba(109, 76, 220, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 36px rgba(109, 76, 220, 0.6);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    border-color: rgba(167, 139, 250, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ---------- SCROLL FADE-IN ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* =============================================
   NAV
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 32px;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

.nav.scrolled {
    background: rgba(5, 6, 15, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-right: auto;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--grad);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.8);
}

.logo-accent {
    color: var(--accent-1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-1);
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 100px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.6);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 40px;
    overflow: hidden;
}

/* Background orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orb-drift 12s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 76, 220, 0.18), transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -4s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240, 171, 252, 0.10), transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes orb-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Hero content */
.hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 100px;
    padding: 8px 16px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-1);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-1);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 6px var(--accent-1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 14px var(--accent-1);
        transform: scale(1.2);
    }
}

.hero-headline {
    font-family: var(--font);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.metric-chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    backdrop-filter: blur(16px);
}

.metric-val {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 400;
}

/* Hero mockup */
.hero-mockup {
    flex: 1;
    max-width: 460px;
    position: relative;
    z-index: 2;
}

.mockup-card {
    padding: 24px;
    position: relative;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.mockup-avatar {
    position: relative;
    width: 36px;
    height: 36px;
}

.avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--grad);
    animation: spin-slow 4s linear infinite;
    mask: linear-gradient(transparent 40%, black 60%);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-dot {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #4f8ef7);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-title-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-name {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
}

.mockup-status {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 6px #34d399;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 4px #34d399;
    }

    50% {
        box-shadow: 0 0 10px #34d399;
    }
}

.mockup-badge {
    margin-left: auto;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 4px;
    padding: 3px 8px;
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.msg {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    font-family: var(--font-body);
}

.msg-user {
    background: rgba(109, 76, 220, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg-ai {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    max-width: 90%;
}

.ai-icon {
    font-size: 12px;
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 2px;
}

.mockup-input {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 8px 8px 8px 16px;
}

.mockup-input input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
}

.send-btn {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.send-btn:hover {
    transform: scale(1.1);
}

/* Mini floating cards on mockup */
.mini-card {
    position: absolute;
    padding: 10px 14px;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.mini-card-1 {
    bottom: -20px;
    left: -30px;
}

.mini-card-2 {
    top: 20px;
    right: -30px;
}

.mini-icon {
    font-size: 16px;
}

/* Float animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-rev {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.float-anim {
    animation: float 5s ease-in-out infinite;
}

.float-anim-slow {
    animation: float-slow 7s ease-in-out infinite;
}

.float-anim-rev {
    animation: float-rev 6s ease-in-out infinite;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 11px;
    font-family: var(--font);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    animation: scroll-line-anim 2s ease-in-out infinite;
}

@keyframes scroll-line-anim {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* =============================================
   LIVE DEMO
   ============================================= */
.demo-section {
    padding-top: 80px;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.demo-chat {
    padding: 28px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #7c3aed, #4f8ef7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.chat-name {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.chat-online {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-messages {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    padding-right: 4px;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

/* Chat message styles */
.chat-msg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: msg-in 0.4s ease forwards;
}

@keyframes msg-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg-user {
    align-items: flex-end;
}

.chat-msg-ai {
    align-items: flex-start;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 80%;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

.chat-bubble-user {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(99, 102, 241, 0.35));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-bottom-right-radius: 4px;
}

.chat-bubble-ai {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ai-spark {
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 13px;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    animation: typing-bounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Presets */
.demo-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.preset-label {
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--font);
    flex-shrink: 0;
}

.preset-btn {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 12px;
    font-family: var(--font);
    color: var(--accent-1);
    cursor: pointer;
    transition: var(--transition);
}

.preset-btn:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.4);
}

.chat-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 10px 10px 10px 20px;
    transition: border-color 0.2s;
}

.chat-input-row:focus-within {
    border-color: rgba(139, 92, 246, 0.4);
}

.chat-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
}

.chat-input::placeholder {
    color: var(--text-dim);
}

.chat-send {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(109, 76, 220, 0.5);
}

/* Emotion panel */
.emotion-panel {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.emotion-title {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.emotion-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ebar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 12px;
    color: var(--text-muted);
}

.ebar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.ebar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
    border-radius: 100px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ebar-val {
    width: 32px;
    text-align: right;
    font-size: 11px;
}

.emotion-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 12px;
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    min-height: 36px;
    transition: all 0.4s;
}

.next-step-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.nsb-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-1);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nsb-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    transition: all 0.4s;
}

/* =============================================
   FEATURES
   ============================================= */
.features-section {
    padding-top: 80px;
}

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

.feature-card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(99, 102, 241, 0.2));
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    font-size: 24px;
}

.feature-card h3 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-tag {
    margin-top: auto;
    display: inline-block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-2);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    padding: 5px 10px;
    width: fit-content;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
    padding-top: 80px;
}

.how-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.how-step {
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.step-num {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-1);
    opacity: 0.6;
}

.step-card {
    padding: 32px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.step-card h3 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
}

.step-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.how-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin-top: 80px;
    flex-shrink: 0;
    color: var(--text-dim);
    position: relative;
}

.arrow-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.arrow-head {
    flex-shrink: 0;
    opacity: 0.5;
}

/* =============================================
   WHY EMOWARE
   ============================================= */
.why-section {
    background: linear-gradient(180deg, transparent, rgba(109, 76, 220, 0.04), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    max-width: 100%;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.why-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.why-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(109, 76, 220, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-headline {
    font-family: var(--font);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.why-body {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}

.pill {
    padding: 12px 20px;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.pill:hover {
    color: var(--text);
    border-color: rgba(167, 139, 250, 0.25);
}

.why-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
}

.quote-bar {
    width: 40px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}

.why-quote p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

.why-quote em {
    color: var(--text);
    font-style: normal;
}

.quote-author {
    font-family: var(--font);
    font-size: 13px;
    color: var(--text-dim);
}

/* =============================================
   FINAL CTA
   ============================================= */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 140px 24px;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 76, 220, 0.15), transparent);
    top: -100px;
    left: -100px;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent);
    bottom: -80px;
    right: -60px;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.cta-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 24px;
}

.cta-headline {
    font-family: var(--font);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.cta-sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-note {
    font-family: var(--font);
    font-size: 13px;
    color: var(--text-dim);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dim);
    flex: 1;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-family: var(--font);
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        flex-direction: column;
        padding: 120px 32px 80px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-mockup {
        max-width: 400px;
        width: 100%;
    }

    .mini-card-1,
    .mini-card-2 {
        display: none;
    }

    .how-flow {
        flex-direction: column;
        align-items: center;
    }

    .how-step {
        max-width: 100%;
        width: 100%;
    }

    .how-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 80px 20px;
    }

    .why-pills {
        gap: 8px;
    }

    .pill {
        font-size: 13px;
        padding: 10px 16px;
    }

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

.hide-mob {
    display: inline;
}

@media (max-width: 600px) {
    .hide-mob {
        display: none;
    }
}