@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&display=swap');

:root {
    --bg-base: #0D0D0D;
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-muted: #a1a1aa;

    --accent-indigo: #6366f1;
    --accent-fuchsia: #d946ef;
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-rose: #f43f5e;

    /* Liquid Glass Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.5);
    --blur: blur(32px) saturate(180%);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    z-index: 1;
}

/* MESMERIZING AURORA BACKGROUND (FADED SEAMLESSLY) */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg-base);
    mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    animation: aurora-float 30s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-indigo) 0%, transparent 70%);
    top: -10vw;
    left: -10vw;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-fuchsia) 0%, transparent 70%);
    top: 40%;
    right: -15vw;
    animation-delay: -5s;
    animation-duration: 35s;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    bottom: -15vw;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes aurora-float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(10vw, -10vh) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-10vw, 15vh) scale(0.9) rotate(240deg);
    }

    100% {
        transform: translate(5vw, 5vh) scale(1.2) rotate(360deg);
    }
}

::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* HIGH-END LIQUID GLASS */
.liquid-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-left: 1px solid var(--glass-highlight);
    box-shadow: var(--glass-shadow);
    border-radius: 28px;
    transition: var(--transition);
}

/* NAVBAR (FULL WEBSITE STRUCTURE) */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 3rem;
    align-items: center;
    position: sticky;
    top: 1rem;
    z-index: 100;
    margin: 0 1.5rem;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.4) 0%, rgba(0, 0, 5, 0.7) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-highlight);
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #fff;
    color: #000 !important;
}

/* MAIN LAYOUT */
main {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 2;
}

/* HERO */
.hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.title-text {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    font-weight: 400;
    line-height: 1.6;
}

/* AI LOGO PILLS (Monochrome) */
.hero-logos-wrapper {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-logos-wrapper p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.engine-logos {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.engine-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.engine-pill svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    opacity: 0.8;
}

.engine-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* CTA BUTTON */
.cta-group {
    position: relative;
    z-index: 10;
}

.cta-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1.25rem 3.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.1);
}

/* NATIVE CHATGPT MOCKUP */
.chat-window {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: #212121;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #383838;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.chat-header {
    background: #212121;
    padding: 14px 20px;
    border-bottom: 1px solid #383838;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mac-btn-group {
    display: flex;
    gap: 8px;
    width: 60px;
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mac-btn.close {
    background: #ff5f56;
    border: 1px solid #e0443e;
}

.mac-btn.minimize {
    background: #ffbd2e;
    border: 1px solid #dea123;
}

.mac-btn.maximize {
    background: #27c93f;
    border: 1px solid #1aab29;
}

.chat-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #ececf1;
    font-weight: 500;
    text-align: center;
    flex-grow: 1;
}

.chat-spacer {
    width: 60px;
}

.chat-body {
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.msg-user {
    align-self: flex-end;
    background: #2f2f2f;
    color: #ececf1;
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 1.05rem;
    max-width: 80%;
}

.msg-ai {
    display: flex;
    gap: 16px;
    align-self: flex-start;
    color: #ececf1;
    font-size: 1.05rem;
    line-height: 1.6;
    width: 100%;
}

.ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-avatar svg {
    width: 22px;
    height: 22px;
    fill: #000;
}

.ai-content {
    flex: 1;
    padding-top: 2px;
}

.ai-content p {
    margin-bottom: 16px;
    font-weight: 400;
    color: #ececf1;
}

.competitor-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.competitor-item {
    font-weight: 600;
    color: #fff;
    padding-left: 16px;
    border-left: 3px solid #ececf1;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* NEW: ADVANCED VISIBILITY DASHBOARD */
.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.dash-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.dash-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.dash-meta {
    width: 200px;
    flex-shrink: 0;
}

.dash-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.dash-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dash-bar-wrap {
    flex-grow: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.dash-bar {
    height: 100%;
    border-radius: 100px;
    position: relative;
}

.dash-bar.green {
    background: linear-gradient(90deg, #059669, #34d399);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.dash-bar.red {
    background: linear-gradient(90deg, #e11d48, #fb7185);
    box-shadow: 0 0 20px rgba(251, 113, 133, 0.4);
}

.dash-score {
    width: 80px;
    text-align: right;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}

/* Stat blocks nested in dashboard */
.dash-stats-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 1rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mini-stat-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.mini-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* AUDIT GRID */
.audit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audit-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.audit-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.audit-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.audit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.audit-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* HIGH CONVERSION FORM at bottom */
.cta-zone {
    padding: 5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-zone h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.audit-form-advanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-row {
    display: flex;
    gap: 1rem;
}

.input-row.full {
    flex-direction: column;
    gap: 1.5rem;
}

.audit-form-advanced input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    transition: var(--transition);
    outline: none;
}

.audit-form-advanced input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.audit-form-advanced input::placeholder {
    color: var(--text-muted);
}

.audit-form-advanced button {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.audit-form-advanced button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.guarantee-text {
    font-size: 1rem;
    color: var(--text-muted);
}

/* FOOTER */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive */
@media (max-width: 992px) {

    .audit-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .dash-stats-footer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        margin: 0;
        border-radius: 0;
    }

    .nav-links {
        display: none;
        /* simple mobile nav */
    }

    main {
        padding: 4rem 1.5rem;
        gap: 7rem;
    }

    .input-row {
        flex-direction: column;
    }

    .dash-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .dash-meta {
        width: 100%;
    }

    .dash-bar-wrap {
        width: 100%;
    }

    .dash-score {
        text-align: left;
    }

    .dashboard-container {
        padding: 2rem 1.5rem;
    }
}
/* NEW FLAT WHITE ZONES */
.form-zone, .white-zone {
    background-color: #F8F8F8;
    color: #0D0D0D;
    width: 100%;
    padding: 8rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-zone h2, .white-zone h2 {
    color: #0D0D0D; margin-bottom: 1rem; text-align: center;
}
.form-zone p, .white-zone p {
    color: #444; margin-bottom: 3rem; text-align: center; max-width: 600px;
}
.form-zone .audit-form-advanced {
    width: 100%; max-width: 600px; display: flex; flex-direction: column; gap: 1.5rem;
}
.form-zone .audit-form-advanced input {
    width: 100%; background: #FFF !important; border: 1px solid #CCC !important; color: #000 !important;
    padding: 18px 24px; border-radius: 8px; font-family: var(--font-body); font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.form-zone .audit-form-advanced input::placeholder { color: #888; }
.form-zone .input-row { display: flex; flex-direction: column; gap: 1.5rem; width: 100%;}
@media (min-width: 768px) {
    .form-zone .input-row { flex-direction: row; }
}
.form-zone button {
    background: #0D0D0D !important; color: #FFF; font-family: var(--font-heading); font-weight: 700;
    font-size: 1.2rem; padding: 18px 32px; border-radius: 8px; border: none; cursor: pointer;
    width: 100%; transition: all 0.3s ease; box-shadow: none !important;
}
.form-zone button:hover { background: #333 !important; transform: translateY(-2px); }
.form-zone .guarantee-text { margin-top: 2rem; font-size: 14px; color: #666; text-align: center; }
