/* ============================================
   ZWET — India's Technology Ecosystem
   Premium Landing Page Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --bg-primary: #06060a;
    --bg-secondary: #0c0c14;
    --bg-tertiary: #111120;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    --text-primary: #f0f0f5;
    --text-secondary: #8a8aa3;
    --text-tertiary: #5a5a73;

    --accent-1: #6c5ce7;
    --accent-2: #a29bfe;
    --accent-3: #00cec9;
    --accent-4: #fd79a8;
    --accent-gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #00cec9 100%);
    --accent-gradient-2: linear-gradient(135deg, #fd79a8 0%, #a29bfe 100%);

    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(12, 12, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Product Colors */
    --food-color: #ff6b6b;
    --ride-color: #ffd93d;
    --study-color: #6bcb77;
    --web-color: #4d96ff;
    --tools-color: #ff922b;
    --ai-color: #cc5de8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: transform;
}

/* ---------- Particle Canvas ---------- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-medium);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: white;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: white;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 6, 10, 0.98);
    backdrop-filter: blur(30px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 28px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--text-primary);
}

.mobile-cta {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: white;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
    max-width: 860px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-2);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00cec9;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 206, 201, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 206, 201, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.btn-primary svg {
    transition: var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ---------- Section Shared ---------- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-2);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 999px;
    background: rgba(108, 92, 231, 0.05);
}

.center-tag {
    display: block;
    text-align: center;
    margin-bottom: 32px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Products Section ---------- */
.products-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

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

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-medium);
    cursor: pointer;
    display: block;
}

.product-card .card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition-medium);
    border-radius: var(--radius-lg);
}

.product-card[data-product="food"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 107, 0.06), transparent 40%);
}
.product-card[data-product="ride"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 217, 61, 0.06), transparent 40%);
}
.product-card[data-product="study"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(107, 203, 119, 0.06), transparent 40%);
}
.product-card[data-product="web"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(77, 150, 255, 0.06), transparent 40%);
}
.product-card[data-product="tools"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 146, 43, 0.06), transparent 40%);
}
.product-card[data-product="ai"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(204, 93, 232, 0.06), transparent 40%);
}

.product-card:hover .card-glow {
    opacity: 1;
}

.product-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.product-card[data-product="food"]:hover {
    border-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.08);
}
.product-card[data-product="ride"]:hover {
    border-color: rgba(255, 217, 61, 0.2);
    box-shadow: 0 20px 60px rgba(255, 217, 61, 0.08);
}
.product-card[data-product="study"]:hover {
    border-color: rgba(107, 203, 119, 0.2);
    box-shadow: 0 20px 60px rgba(107, 203, 119, 0.08);
}
.product-card[data-product="web"]:hover {
    border-color: rgba(77, 150, 255, 0.2);
    box-shadow: 0 20px 60px rgba(77, 150, 255, 0.08);
}
.product-card[data-product="tools"]:hover {
    border-color: rgba(255, 146, 43, 0.2);
    box-shadow: 0 20px 60px rgba(255, 146, 43, 0.08);
}
.product-card[data-product="ai"]:hover {
    border-color: rgba(204, 93, 232, 0.2);
    box-shadow: 0 20px 60px rgba(204, 93, 232, 0.08);
}

.card-content {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.product-card[data-product="food"] .card-icon { color: var(--food-color); }
.product-card[data-product="ride"] .card-icon { color: var(--ride-color); }
.product-card[data-product="study"] .card-icon { color: var(--study-color); }
.product-card[data-product="web"] .card-icon { color: var(--web-color); }
.product-card[data-product="tools"] .card-icon { color: var(--tools-color); }
.product-card[data-product="ai"] .card-icon { color: var(--ai-color); }

.product-card:hover .card-icon {
    border-color: currentColor;
    background: rgba(255, 255, 255, 0.06);
}

.card-status {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 206, 201, 0.1);
    color: #00cec9;
    border: 1px solid rgba(0, 206, 201, 0.2);
}

.card-status.status-beta {
    background: rgba(255, 217, 61, 0.1);
    color: #ffd93d;
    border-color: rgba(255, 217, 61, 0.2);
}

.card-status.status-new {
    background: rgba(204, 93, 232, 0.1);
    color: #cc5de8;
    border-color: rgba(204, 93, 232, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204, 93, 232, 0); }
    50% { box-shadow: 0 0 12px rgba(204, 93, 232, 0.2); }
}

.card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.card-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.card-footer svg {
    color: var(--text-tertiary);
    transition: var(--transition-fast);
}

.product-card:hover .card-footer svg {
    transform: translate(2px, -2px);
}

.product-card[data-product="food"]:hover .card-footer svg { color: var(--food-color); }
.product-card[data-product="ride"]:hover .card-footer svg { color: var(--ride-color); }
.product-card[data-product="study"]:hover .card-footer svg { color: var(--study-color); }
.product-card[data-product="web"]:hover .card-footer svg { color: var(--web-color); }
.product-card[data-product="tools"]:hover .card-footer svg { color: var(--tools-color); }
.product-card[data-product="ai"]:hover .card-footer svg { color: var(--ai-color); }

/* Featured Card (AI) */
.card-featured {
    background: linear-gradient(135deg, rgba(204, 93, 232, 0.04) 0%, rgba(108, 92, 231, 0.04) 100%);
    border-color: rgba(204, 93, 232, 0.12);
}

/* ---------- Ecosystem Section ---------- */
.ecosystem-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
    background: var(--bg-secondary);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.eco-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-medium);
}

.eco-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.eco-card:hover::before {
    opacity: 1;
}

.eco-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.eco-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.eco-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Stats Section ---------- */
.stats-section {
    position: relative;
    padding: 80px 0;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- Vision Section ---------- */
.vision-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

.vision-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    line-height: 1.1;
}

.vision-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.vision-cta {
    margin-top: 40px;
}

/* ---------- Marquee Section ---------- */
.marquee-section {
    position: relative;
    padding: 80px 0;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-tertiary);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.marquee-item:hover {
    color: var(--text-secondary);
}

.marquee-dot {
    color: var(--text-tertiary);
    opacity: 0.3;
    font-size: 10px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 72px 0 32px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-tertiary);
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--accent-1);
    color: var(--accent-2);
    background: rgba(108, 92, 231, 0.05);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-tertiary);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-copy,
.footer-location {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ---------- Animate In (Intersection Observer) ---------- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product cards stagger */
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                background 0.4s ease,
                box-shadow 0.4s ease;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-metrics {
        gap: 24px;
    }

    .metric-divider {
        display: none;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: -1px;
    }

    .card-content {
        padding: 24px;
    }

    .eco-card {
        padding: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-value {
        font-size: 28px;
    }
}

/* ---------- Selection / Scrollbar ---------- */
::selection {
    background: rgba(108, 92, 231, 0.3);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
