:root {
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --bg-card-border: rgba(255, 255, 255, 0.1);
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --primary-cyan: #00f3ff;
    --primary-purple: #bc13fe;
    --whatsapp-green: #25D366;
    
    --font-main: 'Outfit', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: drift 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-cyan);
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    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: 40px 40px;
    opacity: 0.5;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Layout */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

h3.section-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

h3.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--bg-card-border), transparent);
}

p {
    color: var(--text-muted);
    font-weight: 300;
}

.text-white { color: var(--text-main); font-weight: 500; }
.accent { color: var(--primary-cyan); }
.highlight-cyan { color: var(--primary-cyan); text-shadow: 0 0 10px rgba(0, 243, 255, 0.3); }
.highlight-purple { color: var(--primary-purple); text-shadow: 0 0 10px rgba(188, 19, 254, 0.3); }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--bg-card-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.full-width-btn {
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.profile-frame {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
}

.profile-img-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
    background: linear-gradient(rgba(255,255,255,0.05), transparent);
}

.profile-placeholder, .profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
    object-fit: cover;
}

.status-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--bg-card-border);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-group {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* About Section */
.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.section-header h3 {
    margin: 0;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* Ventures Grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

.venture-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.venture-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-cyan);
    transform: translateX(4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.ds-icon { color: var(--primary-cyan); }
.d2c-icon { color: #FF4D4D; }
.fb-icon { color: #96bf48; }
.tools-icon { color: #ff9900; }

.card-content {
    flex: 1;
}

.card-content h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 2px;
}

.card-content p {
    font-size: 0.85rem;
    margin: 0;
}

.card-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.venture-card:hover .card-arrow {
    color: var(--primary-cyan);
    transform: translate(2px, -2px);
}

/* Trusted By */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: var(--spacing-lg);
    animation: scroll 20s linear infinite;
    width: max-content;
}

.logo-item {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    opacity: 0.6;
    transition: var(--transition);
    /* For actual logos later: filter: grayscale(100%); opacity: 0.5; */
}

.logo-item:hover {
    color: var(--text-main);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Focus Areas Helpers */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-card-border);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-main);
}

/* Contact Section */
.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.btn-whatsapp:hover {
    background: #1ebc57;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: var(--transition);
}

.social-btn i {
    font-size: 1.5rem;
    color: var(--text-main);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

/* Footer */
footer {
    text-align: center;
    margin-top: var(--spacing-sm);
    padding-bottom: var(--spacing-lg);
}

.tiny {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Tablet/Desktop Tweaks */
.small-tags {
    margin-top: 6px;
}
.small-tags .tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
}
