/* 
 * Nala - Hyper-Modern Futuristic Design System (Hebrew RTL)
 * Aesthetic: Off-White/Light Blue (#F5F8FC), Emerald Accent (Hue 153)
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Heebo:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Palette - Hue 153 */
    --emerald-deep: #064E3B;
    --emerald-main: #10B981;
    /* The requested brand emerald */
    --emerald-light: #D1FAE5;
    --emerald-neon: #34D399;

    /* Futuristic White/Blue Palette */
    --bg-base: #F5F8FC;
    /* Off-white with slight blue hue */
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-solid: #FFFFFF;

    /* Functional Colors */
    --text-head: #0B1120;
    --text-body: #334155;
    --text-muted: #64748B;

    /* Layout & Surface */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);

    --shadow-premium: 0 20px 40px -10px rgba(11, 17, 32, 0.08);
    --shadow-hover: 0 30px 60px -15px rgba(11, 17, 32, 0.12);
    --shadow-glow: 0 0 40px rgba(0, 255, 170, 0.15);
    /* Hue ~153 glow */

    /* Typography */
    --font-head: 'Space Grotesk', 'Heebo', sans-serif;
    --font-body: 'Heebo', sans-serif;

    /* Spacing & Rails */
    --radius-premium: 24px;
    --radius-pill: 100px;
    --container-width: 1200px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Foundations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    direction: rtl;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-head);
    color: var(--text-head);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Abstract Background Elements */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-color: var(--bg-base);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(200, 230, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, hsla(153, 100%, 85%, 0.3) 0%, transparent 50%);
    filter: blur(40px);
}

.grain {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 1000;
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-width);
    height: 64px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--emerald-deep);
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 255, 170, 0.3));
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links a:not(.lang-switch):hover {
    color: var(--emerald-main);
    transform: translateY(-1px);
}

.lang-switch {
    background: var(--text-head);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.lang-switch:hover {
    background: var(--emerald-main) !important;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.3);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-head);
    border-radius: 2px;
    position: absolute;
    right: 0;
    transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--emerald-main);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background: var(--emerald-main);
}

/* Hero Section */
.hero {
    padding: 200px 24px 120px;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--emerald-neon), var(--emerald-main));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 480px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
}

/* Premium Form */
.signup-form {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 460px;
    border: 1px solid rgba(0, 255, 170, 0.1);
    transition: var(--transition-smooth);
}

.signup-form:focus-within {
    box-shadow: 0 15px 35px rgba(0, 255, 170, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 255, 170, 0.3);
}

.signup-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-head);
    outline: none;
}

.signup-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.btn-submit {
    background: var(--text-head);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--emerald-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 170, 0.2);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 1rem;
}

/* Hero Visual 3D Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 340px;
    height: 700px;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-radius: 54px;
    padding: 14px;
    position: relative;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.1),
        inset 0 2px 10px rgba(255, 255, 255, 1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transform: rotateY(10deg) rotateX(5deg);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 56px;
    background: linear-gradient(-135deg, rgba(0, 255, 170, 0.4), transparent 50%, rgba(200, 230, 255, 0.8));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
}

.hero-visual:hover .phone-mockup {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 42px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
}

.chat-bubble {
    padding: 16px 20px;
    border-radius: 24px;
    font-size: 0.95rem;
    max-width: 88%;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.chat-bubble.user {
    background: var(--bg-base);
    color: var(--text-head);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    animation-delay: 0.2s;
}

.chat-bubble.assistant {
    background: linear-gradient(-135deg, var(--emerald-main), var(--emerald-neon));
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 255, 170, 0.2);
    animation-delay: 0.8s;
}

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

/* Features Section */
.features {
    padding: 140px 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.features h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 36px;
    border-radius: 32px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(0, 255, 170, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-card-solid);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 255, 170, 0.1);
    color: var(--emerald-main);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--emerald-main);
    color: white;
    box-shadow: 0 12px 30px rgba(0, 255, 170, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Security Section */
.security {
    background: var(--text-head);
    border-radius: 48px;
    padding: 100px 48px;
    max-width: var(--container-width);
    margin: 0 auto 140px;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.security::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 170, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.security h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 56px;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(0, 255, 170, 0.3);
}

.check {
    color: var(--emerald-neon);
    font-size: 1.2rem;
}

/* Footer Style Overhaul */
footer {
    padding: 100px 24px 48px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(-90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.footer-brand p {
    max-width: 320px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-head);
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--emerald-main);
    transform: translateX(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 160px;
        gap: 80px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual .phone-mockup {
        transform: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .features h2 {
        font-size: 2.5rem;
    }

    .security h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .security {
        padding: 60px 24px;
        border-radius: 32px;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
        border-radius: 24px;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }

    .signup-form:focus-within {
        box-shadow: none;
        border-color: transparent;
    }

    .signup-input {
        background: white;
        height: 60px;
        border-radius: var(--radius-pill);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
    }

    .btn-submit {
        height: 60px;
        width: 100%;
        font-size: 1.05rem;
    }

    .navbar {
        top: 16px;
        padding: 0 20px;
        height: 60px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 16px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 28px;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .lang-switch {
        margin-top: 16px;
        padding: 14px 32px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Legal Pages (Privacy, Terms, Support) */
.legal-page {
    padding: 180px 24px 100px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-page .last-updated {
    font-size: 1rem;
    color: var(--emerald-main);
    font-weight: 600;
    margin-bottom: 48px;
    display: inline-block;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 56px;
    margin-bottom: 24px;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page p,
.legal-page li {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    padding-right: 24px;
    padding-left: 0;
    margin-bottom: 24px;
}

.legal-page table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-page th,
.legal-page td {
    padding: 16px 24px;
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

.legal-page th {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--text-head);
    background: #F8FAFC;
}

.legal-page .highlight-box {
    background: white;
    border-right: 4px solid var(--emerald-main);
    border-left: none;
    padding: 24px 32px;
    border-radius: 16px 0 0 16px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Scroll Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Glowing Aura */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: width 0.3s, height 0.3s;
}

body:active .cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0) 60%);
}

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

/* EXTRAVAGANT MESH GRADIENT BACKGROUND */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-color: var(--bg-base);
    background-image: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    animation: drift 20s infinite alternate ease-in-out;
    mix-blend-mode: normal;
}

.mesh-orb-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0) 70%);
    top: -10vw;
    left: -10vw;
    animation-duration: 25s;
}

.mesh-orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.3) 0%, rgba(52, 211, 153, 0) 70%);
    bottom: -10vw;
    right: -10vw;
    animation-duration: 30s;
    animation-delay: -5s;
}

.mesh-orb-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 70%);
    top: 40%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5vw, -5vh) scale(1.1);
    }

    66% {
        transform: translate(-3vw, 8vh) scale(0.9);
    }

    100% {
        transform: translate(2vw, 2vh) scale(1.05);
    }
}

/* MASSIVE KINETIC TYPOGRAPHY */
.hero-content h1 {
    font-size: clamp(4rem, 8vw, 7.5rem);
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(-5deg);
    animation: textSlice 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textSlice {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

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

/* EXTREME GLASSMORPHISM - FEATURE CARDS */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 30px 60px -12px rgba(11, 17, 32, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card:hover::before {
    left: 200%;
    transition: all 0.7s ease;
}

/* ROTATING GLOW BORDER */
.feature-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle), transparent 70%, var(--emerald-main) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: rotate-border 4s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

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

/* FLOATING SPATIAL GEOMETRY */
.floating-geo {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    animation: float-levitate 6s ease-in-out infinite alternate;
    z-index: -1;
}

.geo-1 {
    width: 120px;
    height: 120px;
    top: -40px;
    right: -20px;
    animation-delay: -2s;
}

.geo-2 {
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: -30px;
    background: linear-gradient(135deg, var(--emerald-light), rgba(255, 255, 255, 0.1));
    animation-delay: -4s;
    animation-duration: 8s;
}

@keyframes float-levitate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual .phone-mockup {
    animation: float-levitate 8s ease-in-out infinite alternate;
    box-shadow:
        0 60px 100px -20px rgba(11, 17, 32, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}
.logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}
