/* PrimeX AI Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 25, 0.7);
    --primary-blue: #00d2ff;
    --primary-purple: #9d50bb;
    --accent-gradient: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
    border: 3px solid var(--bg-dark);
}

/* Animated Floating Glows */
.glow-bg {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 25s infinite alternate;
    pointer-events: none;
}

.glow-bg-2 {
    position: fixed;
    bottom: -10vw;
    right: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(157, 80, 187, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: float 30s infinite alternate-reverse;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
}

/* Animated Floating Glows */
.glow-bg {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 20s infinite alternate;
}

.glow-bg-2 {
    position: fixed;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 80, 187, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 25s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 150px); }
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
}

/* Utilities */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

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

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(157, 80, 187, 0.5);
}

/* Landing Page Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 5%;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo img {
    height: 90px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.drop-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    min-width: 180px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-muted) !important;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main) !important;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero .cta-group {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Minimalist Footer */
footer {
    padding: 40px 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-socials a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-attribution {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-attribution b {
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* Content Pages (Privacy, Terms, About) */
.content-page {
    padding: 120px 5% 80px;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.content-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.content-section ul li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 40px;
    font-weight: 500;
    transition: transform 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.back-link i {
    margin-right: 10px;
}
