/* HARİKA BOT WEBSITE DESIGN SYSTEM */
:root {
    /* Colors */
    --bg-deep: 240 10% 4%;
    --accent: 238 85% 67%;    /* #6366f1 Indigo */
    --gold: 45 93% 58%;      /* #fbbf24 Gold */
    --text: 210 20% 98%;
    --text-dim: 215 15% 70%;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Background Mesh */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('images/bg_mesh.png') center/cover no-repeat;
    opacity: 0.6;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--gold)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 12px 0;
    z-index: 1000;
    border-radius: 100px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: 40px;
}

.logo span {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: hsl(var(--text-dim));
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--accent)), #4338ca);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: hsl(var(--accent));
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.1rem;
    color: hsl(var(--text-dim));
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
}

.mockup-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 120px;
}

.stat-card {
    padding: 32px;
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--gold));
    margin-bottom: 8px;
}

.stat-label {
    color: hsl(var(--text-dim));
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    color: hsl(var(--text-dim));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 120px;
}

.feature-card {
    padding: 40px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
}

.feature-card p {
    color: hsl(var(--text-dim));
    font-size: 15px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-text h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.step-text p {
    color: hsl(var(--text-dim));
    font-size: 14px;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 120px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 320px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid hsl(var(--accent));
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: hsl(var(--accent));
    color: white;
    padding: 4px 40px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
}

.price-card h3 {
    color: hsl(var(--text-dim));
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.price-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: hsl(var(--text-dim));
}

.price-features li::before {
    content: '✓';
    color: hsl(var(--accent));
    margin-right: 12px;
    font-weight: 700;
}

/* Download Section */
.download {
    padding: 80px;
    text-align: center;
    margin-bottom: 120px;
}

.download h2 {
    margin-bottom: 16px;
}

.download p {
    color: hsl(var(--text-dim));
    margin-bottom: 40px;
}

.download-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    color: hsl(var(--text-dim));
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: hsl(var(--text-dim));
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    color: hsl(var(--text-dim));
    font-size: 14px;
}

/* Login Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    width: 90%;
    max-width: 440px;
    padding: 40px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: hsl(var(--text-dim));
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-logo {
    height: 60px;
    margin-bottom: 16px;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: hsl(var(--text-dim));
    font-size: 14px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: hsl(var(--text-dim));
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-family: inherit;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: hsl(var(--accent));
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
    margin-top: 12px;
}

.modal-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: hsl(var(--text-dim));
}

.modal-footer a {
    color: hsl(var(--accent));
    text-decoration: none;
    font-weight: 600;
}

.error-msg {
    color: #ef4444;
    font-size: 13px;
    text-align: center;
    margin-top: 16px;
    min-height: 20px;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-scale {
    animation: scaleIn 0.3s forwards;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .stats { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
