:root {
    --bg: #050510;
    --surface: #0f0f1e;
    --primary: #00f0ff;
    /* Neon Cyan */
    --secondary: #ff0099;
    /* Neon Pink */
    --text: #ffffff;
    --text-muted: #8b8b9e;
    --gradient: linear-gradient(135deg, #00f0ff 0%, #ff0099 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.glow-1 {
    top: -200px;
    left: -200px;
    background: var(--primary);
}

.glow-2 {
    bottom: -200px;
    right: -200px;
    background: var(--secondary);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switch {
    background: var(--glass);
    padding: 4px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.lang-btn.active {
    background: var(--text);
    color: var(--bg);
}

.btn-download-nav {
    background: var(--text);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-2px);
}

.btn-primary.google:hover {
    border-color: var(--secondary);
    background: rgba(255, 0, 153, 0.05);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background-size: cover;
    margin-left: -12px;
}

.av:first-child {
    margin-left: 0;
}

/* Phone Mockup (CSS Only) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1a1a2e;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 10;
}

.phone-mockup.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a2e;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.screen {
    width: 100%;
    height: 100%;
    background: #0f0f1e;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* App UI Simulation */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.app-greeting {
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: 12px;
}

.app-greeting .sub {
    font-size: 10px;
    color: var(--text-muted);
}

.app-greeting .name {
    font-size: 14px;
    font-weight: 700;
}

.app-notif {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.app-banner {
    background: linear-gradient(135deg, #2a2a40 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.banner-content button {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.banner-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
}

.app-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.cat {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cat.active {
    background: var(--text);
    color: var(--bg);
    font-weight: 600;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.grid-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 12px;
    text-align: center;
}

.card-img {
    height: 80px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.grid-card span {
    font-size: 12px;
    font-weight: 500;
}

.app-nav {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: var(--text-muted);
}

.app-nav .active {
    color: var(--primary);
}

.nav-fab {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -30px;
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.float-card i {
    font-size: 24px;
}

.card-1 {
    top: 100px;
    left: -40px;
    border-left: 3px solid var(--primary);
}

.card-1 i {
    color: var(--primary);
}

.card-2 {
    bottom: 100px;
    right: -40px;
    border-left: 3px solid var(--secondary);
}

.card-2 i {
    color: var(--secondary);
}

/* Features */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Showcase */
.showcase {
    padding: 100px 0;
    background: #02020a;
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
}

.check-list i {
    color: var(--primary);
}

.showcase-visual {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.phone-mockup.small {
    width: 240px;
    height: 480px;
    border-width: 6px;
}

.phone-mockup.offset {
    margin-top: 60px;
}

/* Chat UI */
.chat-ui {
    padding: 0;
    background: #0f0f1e;
}

.chat-header {
    padding: 40px 16px 16px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.chat-area {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    max-width: 80%;
}

.msg.ai {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.msg.user {
    background: var(--primary);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input {
    margin-top: auto;
    padding: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-bar {
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    flex: 1;
}

.send-btn {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
}

/* Result UI */
.result-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }
}

.result-score {
    position: relative;
    width: 120px;
    margin-bottom: 20px;
}

.result-score span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 800;
}

.result-tags {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.result-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #02020a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 30px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    font-size: 18px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(255, 0, 153, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-container {
    max-width: 800px;
    text-align: center;
}

.waitlist-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.waitlist-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.waitlist-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.waitlist-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.spam-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-badge {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .showcase-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-visual {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup.offset {
        margin-top: 0;
    }

    .check-list {
        display: inline-block;
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-content h2 {
        font-size: 32px;
    }
}