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

:root {
    --primary: #00C853;
    --primary-dark: #00A844;
    --primary-glow: rgba(0, 200, 83, 0.3);
    --secondary: #00E676;
    --accent: #69F0AE;
    --dark: #0A0F1A;
    --dark-card: #111827;
    --dark-surface: #1A2332;
    --text: #F0F4F8;
    --text-muted: #8899AA;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #00C853, #00E676, #69F0AE);
    --gradient-subtle: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,230,118,0.05));
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    animation: bodyFadeIn 0.6s ease both;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 0;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 15, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: var(--dark);
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; left: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 350px; height: 350px; background: var(--secondary); bottom: -80px; right: -50px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 250px; height: 250px; background: var(--accent); top: 50%; left: 50%; animation: float 12s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text > * {
    animation: heroFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-text > :nth-child(1) { animation-delay: 0.1s; }
.hero-text > :nth-child(2) { animation-delay: 0.2s; }
.hero-text > :nth-child(3) { animation-delay: 0.3s; }
.hero-text > :nth-child(4) { animation-delay: 0.4s; }
.hero-text > :nth-child(5) { animation-delay: 0.5s; }
.hero-text > :nth-child(6) { animation-delay: 0.6s; }

.hero-visual {
    animation: heroSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

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

@keyframes heroSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
    min-height: 1.6em;
}

.description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }

.hero-stats { display: flex; gap: 28px; }
.hero-stat { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.hero-stat-icon { font-size: 1rem; }

/* Hero Brand Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-brand-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: brandGlow 4s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.15); }
}

.hero-brand-block {
    width: 320px;
    height: 320px;
    border-radius: 48px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: brandFloat 6s ease-in-out infinite;
    overflow: hidden;
}

.hero-brand-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.04), transparent);
    animation: brandShimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes brandShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes brandFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.brand-letter {
    font-size: 7rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: letterPulse 3s ease-in-out infinite;
}

@keyframes letterPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.brand-words {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 240px;
}

.brand-word {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--dark-surface);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    animation: wordFade 4s ease-in-out infinite;
}

.brand-word-1 { animation-delay: 0s; }
.brand-word-2 { animation-delay: 1s; }
.brand-word-3 { animation-delay: 2s; }
.brand-word-4 { animation-delay: 3s; }

@keyframes wordFade {
    0%, 100% { opacity: 0.5; border-color: rgba(255, 255, 255, 0.04); }
    50% { opacity: 1; border-color: rgba(0, 200, 83, 0.2); color: var(--primary); }
}

.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 200, 83, 0.15);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.hero-float-badge svg { color: var(--primary); }

.hero-float-badge-1 {
    top: 10%;
    right: -30px;
    animation: floatBadge1 5s ease-in-out infinite;
}

.hero-float-badge-2 {
    bottom: 20%;
    left: -40px;
    animation: floatBadge2 4.5s ease-in-out infinite;
}

.hero-float-badge-3 {
    top: 60%;
    right: -45px;
    animation: floatBadge3 5.5s ease-in-out infinite;
}

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.9; }
    50% { transform: translateY(-10px) translateX(5px); opacity: 1; }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.9; }
    50% { transform: translateY(-12px) translateX(-5px); opacity: 1; }
}

@keyframes floatBadge3 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.9; }
    50% { transform: translateY(-8px) translateX(8px); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroFadeIn 0.7s ease 1.2s both;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--primary);
    border-radius: 2px;
    animation: wheel 2s ease-in-out infinite;
}

@keyframes wheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(7px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-subtle);
    border: 1px solid rgba(0, 200, 83, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.sr {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sr-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-left.sr-visible {
    opacity: 1;
    transform: translateX(0);
}

.sr-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-right.sr-visible {
    opacity: 1;
    transform: translateX(0);
}

.sr-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-scale.sr-visible {
    opacity: 1;
    transform: scale(1);
}

.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }
.sr-d4 { transition-delay: 0.4s; }
.sr-d5 { transition-delay: 0.5s; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.about-text p { color: var(--text-muted); font-size: 1rem; margin-bottom: 14px; line-height: 1.8; }
.about-text strong { color: var(--white); }

.about-values { display: flex; flex-direction: column; gap: 16px; }

.value-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--dark-card);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover { border-color: rgba(0, 200, 83, 0.15); transform: translateX(4px); }
.value-icon { font-size: 1.4rem; flex-shrink: 0; }
.value-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.value-card p { color: var(--text-muted); font-size: 0.82rem; }

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

.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover { border-color: rgba(0, 200, 83, 0.15); transform: translateY(-4px); }

.stat-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid rgba(0, 200, 83, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
}

.stat-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    animation: spin 3s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== APPS / OUR APPS ===== */
.apps { padding: 100px 0; background: var(--dark-card); }

.app-showcase { max-width: 1100px; margin: 0 auto; }

.app-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}

.app-hero-phone { display: flex; justify-content: center; }

.phone-wrapper { position: relative; }

.phone-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.15); }
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: #1C2333;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-notch {
    width: 100px;
    height: 22px;
    background: #1C2333;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 22px);
    background: var(--dark);
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-logo-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), transparent);
}

.app-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.app-logo-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-header-dots { display: flex; gap: 3px; }
.app-header-dots span { width: 3px; height: 3px; background: var(--text-muted); border-radius: 50%; opacity: 0.5; }
.app-header-title { font-size: 0.75rem; font-weight: 700; color: var(--primary); }

.app-content-preview {
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.app-tool-card {
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.app-tool-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.app-tool-icon svg { width: 18px; height: 18px; }
.split-icon { background: linear-gradient(135deg, #00C853, #00E676); }
.trim-icon { background: linear-gradient(135deg, #2979FF, #448AFF); }
.compress-icon { background: linear-gradient(135deg, #FF6D00, #FF9100); }
.merge-icon { background: linear-gradient(135deg, #AA00FF, #D500F9); }
.app-tool-card span { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); }

.video-timeline-preview {
    margin: auto 14px 18px;
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.timeline-bar { display: flex; gap: 3px; height: 28px; }
.timeline-segment { flex: 1; border-radius: 4px; position: relative; overflow: hidden; }
.seg-1 { background: linear-gradient(90deg, var(--primary), var(--secondary)); animation: segmentPulse 3s ease-in-out infinite; }
.seg-2 { background: rgba(0, 200, 83, 0.3); animation: segmentPulse 3s ease-in-out 0.5s infinite; }
.seg-3 { background: rgba(0, 200, 83, 0.2); animation: segmentPulse 3s ease-in-out 1s infinite; }

@keyframes segmentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.timeline-cursor {
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--white);
    top: 6px;
    left: 33%;
    animation: cursorMove 4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes cursorMove {
    0%, 100% { left: 20%; }
    50% { left: 70%; }
}

/* PDF Editor Preview */
.pdf-preview-area {
    flex: 1;
    background: var(--dark-card);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdf-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    animation: pdfLinePulse 3s ease-in-out infinite;
}

.pdf-line.short { width: 60%; }
.pdf-line.medium { width: 80%; }

@keyframes pdfLinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.pdf-toolbar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.pdf-tool-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.pdf-tool-btn.active {
    background: var(--primary);
    color: var(--dark);
}

/* App Hero Info */
.app-hero-info { padding: 0 20px; }

.app-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.app-badge-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: cover;
}

.app-card-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.app-hero-info h3 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.app-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.app-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 460px;
}

.app-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Features Grid (inside apps section) */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.feature-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 200, 83, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { left: 150%; }

.feature-icon-wrap { margin-bottom: 18px; }

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }

.feature-tag {
    display: inline-block;
    background: rgba(0, 200, 83, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* Module Showcase (inside apps section) */
.module-showcase {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 56px;
}

.module-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--dark);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.4s ease;
}

.module-card:hover { border-color: rgba(0, 200, 83, 0.15); }

.module-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.module-info h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.module-info > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; }

.module-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.module-features li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.88rem; }
.module-features li svg { color: var(--primary); flex-shrink: 0; }

/* Story Preview */
.story-preview {
    width: 100%;
    height: 280px;
    background: var(--dark-surface);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.story-audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 60px;
    position: relative;
    z-index: 1;
}

.story-audio-wave span {
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: audioWave 1.2s ease-in-out infinite;
}

.story-audio-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.story-audio-wave span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.story-audio-wave span:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.story-audio-wave span:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.story-audio-wave span:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.story-audio-wave span:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.story-audio-wave span:nth-child(7) { height: 28px; animation-delay: 0.6s; }
.story-audio-wave span:nth-child(8) { height: 40px; animation-delay: 0.7s; }
.story-audio-wave span:nth-child(9) { height: 22px; animation-delay: 0.8s; }
.story-audio-wave span:nth-child(10) { height: 38px; animation-delay: 0.9s; }

@keyframes audioWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.story-play-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    bottom: 16px;
    right: 16px;
    box-shadow: 0 4px 20px var(--primary-glow);
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Saver Preview */
.saver-preview { display: flex; flex-direction: column; gap: 10px; padding: 20px; }

.status-card-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.status-avatar { width: 34px; height: 34px; background: var(--gradient); border-radius: 50%; flex-shrink: 0; }
.status-content { flex: 1; }
.status-name { width: 70px; height: 7px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; margin-bottom: 5px; }
.status-time { width: 45px; height: 5px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; }

.status-save-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0, 200, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.status-save-btn.saved { background: var(--primary); color: var(--dark); }

/* Module Extras */
.module-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.extra-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.extra-card:hover { border-color: rgba(0, 200, 83, 0.15); transform: translateY(-4px); }

.extra-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 14px;
}

.extra-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.extra-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* ===== DOWNLOAD ===== */
.download { padding: 100px 0; }

.download-card {
    background: var(--dark-card);
    border-radius: 28px;
    padding: 64px 36px;
    text-align: center;
    border: 1px solid rgba(0, 200, 83, 0.1);
    position: relative;
    overflow: hidden;
}

.download-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.03), transparent);
    animation: downloadShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes downloadShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.download-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.download-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.3);
    animation: downloadLogoPulse 3s ease-in-out infinite;
}

@keyframes downloadLogoPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 200, 83, 0.2); transform: scale(1); }
    50% { box-shadow: 0 12px 48px rgba(0, 200, 83, 0.4); transform: scale(1.04); }
}

.download-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -1px; }
.download-content > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

.download-features { display: flex; justify-content: center; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.download-features span { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.85rem; }
.download-features svg { color: var(--primary); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--dark-card); }

.contact-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.contact-card {
    background: var(--dark);
    padding: 32px 28px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    min-width: 200px;
    flex: 1;
    max-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card:hover { transform: translateY(-6px); border-color: rgba(0, 200, 83, 0.2); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 14px;
}

.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.82rem; }

/* ===== FOOTER ===== */
.footer { padding: 36px 0; border-top: 1px solid rgba(255, 255, 255, 0.04); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-left p { color: var(--text-muted); font-size: 0.82rem; margin-top: 6px; }
.footer-right p { color: var(--text-muted); font-size: 0.82rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .description { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .app-features-grid { grid-template-columns: repeat(2, 1fr); }
    .app-hero { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .app-description { max-width: 100%; margin-left: auto; margin-right: auto; }
    .app-hero-info { display: flex; flex-direction: column; align-items: center; }
    .module-card { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
    .module-saver .module-visual { order: -1; }
    .about-content { grid-template-columns: 1fr; gap: 36px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero { padding: 90px 0 50px; }
    .hero-text h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .tagline { font-size: 1.05rem; }
    .description { font-size: 0.92rem; }
    .btn { padding: 12px 22px; font-size: 0.88rem; }

    .hero-brand-block { width: 260px; height: 260px; border-radius: 40px; }
    .brand-letter { font-size: 5.5rem; }
    .brand-word { font-size: 0.68rem; padding: 4px 10px; }

    .hero-float-badge { display: none; }

    .phone-mockup { width: 220px; height: 440px; border-radius: 32px; }
    .phone-notch { width: 90px; height: 20px; }
    .phone-screen { border-radius: 0 0 26px 26px; }

    .app-features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 24px; }
    .module-card { padding: 24px; }
    .module-info h3 { font-size: 1.3rem; }
    .module-extras { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-ring { width: 60px; height: 60px; }
    .stat-number { font-size: 1.1rem; }
    .download-card { padding: 48px 20px; }
    .download-content h2 { font-size: 1.6rem; }
    .footer-content { flex-direction: column; gap: 12px; text-align: center; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 80px 0 40px; }
    .hero-text h1 { font-size: 2rem; }
    .badge { font-size: 0.72rem; padding: 6px 12px; }
    .hero-stats { flex-direction: column; gap: 10px; align-items: center; }

    .hero-brand-block { width: 220px; height: 220px; border-radius: 36px; }
    .brand-letter { font-size: 4.5rem; }
    .brand-words { max-width: 180px; gap: 8px; }

    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.9rem; }

    .about, .apps, .download, .contact { padding: 70px 0; }

    .app-hero-info h3 { font-size: 1.8rem; }

    .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 20px 12px; }
    .stat-ring { width: 56px; height: 56px; }
    .stat-number { font-size: 1rem; }
    .stat-label { font-size: 0.72rem; }

    .module-info h3 { font-size: 1.2rem; }
    .module-info > p { font-size: 0.88rem; }

    .contact-grid { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; max-width: none; }
}