/* MODERN UI/UX RESET 
   Focus: Scannability, Massive Typography, High Contrast
====================================================== */

:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --text-gray: #888888;
    --accent-neon: #0D999E; /* Exact Candibean Teal */
    --accent-orange: #F27B21; /* Candibean Orange secondary */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background: var(--bg-black); color: var(--text-white);
    font-family: var(--font-body); line-height: 1.5; font-size: 16px;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Clean Navigation */
.nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 5%; width: 100%; position: absolute; top: 0; z-index: 100;
}

/* Base Buttons */
.btn {
    font-family: var(--font-body); font-weight: 700; border-radius: 100px;
    cursor: pointer; border: none; letter-spacing: -0.02em; transition: background 0.3s ease, color 0.3s ease, transform 0.1s ease-out, box-shadow 0.3s ease;
}
.btn-outline { background: transparent; border: 1px solid #333; color: white; padding: 10px 24px; }
.btn-outline:hover { background: white; color: black; }
.btn-primary { background: white; color: black; padding: 18px 40px; font-size: 1.1rem; }
.btn-primary:hover { background: var(--accent-neon); color: white; transform: scale(1.02); }
.btn-large { padding: 20px 60px; font-size: 1.3rem; }

/* Hero Wall */
.hero { padding-top: 140px; padding-bottom: 80px; position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center;}
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-content { z-index: 10; position: relative; }

.eyebrow { color: var(--accent-neon); font-weight: 700; letter-spacing: 0.1em; font-size: 0.85rem; margin-bottom: 20px; text-transform: uppercase; }
.display-title { font-family: var(--font-heading); font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; margin-bottom: 30px; }
.text-neon { 
    background: linear-gradient(to right, var(--accent-neon) 0%, var(--accent-orange) 50%, var(--accent-neon) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textGradient 4s linear infinite;
}
@keyframes textGradient { to { background-position: 200% center; } }
.display-subtitle { font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--text-gray); max-width: 600px; margin-bottom: 50px; line-height: 1.6; font-weight: 400;}

.hero-visual-side { display: flex; justify-content: center; position: relative; z-index: 5;}
.hero-mockup-wrapper { position: relative; perspective: 1200px; }
.app-mockup-3d { width: 100%; max-width: 320px; border-radius: 40px; border: 8px solid #0a0a0a; transform: rotateY(-18deg) rotateX(8deg) scale(1.05); box-shadow: -30px 40px 80px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05); transition: transform 0.6s ease;}
.app-mockup-3d:hover { transform: rotateY(-5deg) rotateX(2deg) scale(1.08); }

.ambient-glow-side { position: absolute; width: 400px; height: 400px; background: var(--accent-neon); filter: blur(150px); opacity: 0.25; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; pointer-events: none;}

/* Eye-Bouncing Grid System */
.feature-block { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.align-center { align-items: center; }

.step-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #444; border-bottom: 2px solid #333; padding-bottom: 10px; display: inline-block; margin-bottom: 30px; font-variant-numeric: tabular-nums;}
.huge-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 30px; }
.feature-desc { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--text-gray); line-height: 1.7; }

/* Stark Abstract Graphics */
.graphic-box { width: 100%; }
.abstract-card { height: 450px; border-radius: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center;}
.card-dark { background: #0a0a0a; border: 1px solid #222; }
.card-neon { background: var(--accent-neon); color: black; }

.emoji-huge { font-size: 6rem; margin-bottom: 20px; }
.card-caption { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; }
.text-black { color: #000; }

/* Notification UI Showcase */
.ui-showcase-container { position: relative; height: 450px; border-radius: 30px; overflow: hidden; background: #050505; display: flex; align-items: center; justify-content: center; }
.ui-background { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?auto=format&fit=crop&w=800&q=80') center/cover; opacity: 0.4; filter: blur(4px) scale(1.05); }
.ui-overlay-gradient { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, #000 100%); z-index: 1;}

.notification-stack { position: relative; z-index: 2; width: 85%; max-width: 380px; display: flex; flex-direction: column; gap: 15px; }

.notif-card { padding: 20px; border-radius: 20px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.5);}
.glass-dark { background: rgba(30, 30, 30, 0.65); }
.glass-candibean { 
    background: rgba(13, 153, 158, 0.15); 
    box-shadow: 0 10px 40px rgba(13, 153, 158, 0.2); 
    position: relative; 
    border: 1px solid transparent; 
    background-clip: padding-box; 
}
.glass-candibean::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    border-radius: 20px; 
    padding: 2px; 
    background: linear-gradient(90deg, transparent, rgba(13, 153, 158, 0.8), transparent); 
    background-size: 200% 100%; 
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
    -webkit-mask-composite: xor; 
    mask-composite: exclude; 
    animation: borderScan 3s linear infinite; 
    pointer-events: none; 
}
@keyframes borderScan { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.notif-header { display: flex; align-items: center; margin-bottom: 10px; font-size: 0.85rem; font-weight: 600; color: #bbb; }
.notif-header img { filter: grayscale(1) brightness(2); }
.glass-candibean .notif-header { color: var(--accent-neon); }
.glass-candibean .notif-header img { filter: none; }

.notif-body { font-size: 1.05rem; font-weight: 500; line-height: 1.4; color: white;}

.hover-float { transition: transform 0.4s ease; transform: translateY(0); }
.hover-float:hover { transform: translateY(-5px) scale(1.02); }
.hover-float-delay { transition: transform 0.4s ease 0.1s; transform: translateY(0); }
.hover-float-delay:hover { transform: translateY(-5px) scale(1.02); transition-delay: 0s; }

/* Cinematic Close */
.cinematic-footer { padding: 250px 0 150px; position: relative; margin-top: 100px; display: flex; align-items: center; justify-content: center;}
.cinematic-footer .bg-image { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%); opacity: 0.3; }
.cinematic-footer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #000 0%, transparent 50%, #000 100%); }

.massive-bottom-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px; }
.bottom-subtitle { font-size: 1.5rem; color: #aaa; margin-bottom: 60px; line-height: 1.5;}

.cta-box { border-top: 1px solid #333; padding-top: 60px; margin-top: 60px; }
.cta-headline { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; margin-bottom: 30px; letter-spacing: -0.02em; }

/* Store Badges */
.store-badges { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 12px; text-decoration: none; transition: transform 0.2s ease; cursor: pointer; }
.store-badge:hover { transform: translateY(-3px); }
.store-badge-icon { margin-right: 12px; width: 30px; height: 30px;}
.store-badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-badge-small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px;}
.store-badge-large { font-size: 1.2rem; font-family: var(--font-heading); font-weight: 700; }

.badge-google { background: #fff; color: #000; }
.badge-google .store-badge-small { color: #555; }
.badge-apple { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.badge-apple .store-badge-small { color: #aaa; }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; text-align: left; }
.faq-item { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: #333; }
.faq-question { padding: 25px 30px; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s;}
.faq-question:hover { background: #111; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent-neon); }
details[open] .faq-question::after { content: '-'; }
.faq-answer { padding: 0 30px 30px; color: #888; line-height: 1.6; }
details > summary::-webkit-details-marker { display: none; }

/* Footer elements */
.clean-footer { padding: 80px 0 40px; background: #000; font-family: var(--font-body); }
.clean-footer h4 { font-family: var(--font-heading); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.9rem !important; margin-bottom: 25px !important;}
.flex-between { display: flex; justify-content: space-between; }
.flex-align { display: flex; align-items: center; }
.paystack-chic { font-size: 0.9rem; color: #666; font-weight: 600; padding: 8px 16px; border: 1px solid #222; border-radius: 100px; display: inline-flex; align-items: center;}

/* Light/Dark Mode Handlers */
:root[data-theme="light"] {
    --bg-black: #fafafa;
    --text-white: #111111;
    --text-gray: #555555;
}
:root[data-theme="light"] body { background: var(--bg-black); color: var(--text-white); }
:root[data-theme="light"] .nav { background: rgba(250,250,250,0.9); border-bottom: 1px solid rgba(0,0,0,0.05); }
:root[data-theme="light"] .btn-outline { border-color: #ddd; color: #111; }
:root[data-theme="light"] .btn-outline:hover { background: #111; color: #fff; }
:root[data-theme="light"] .clean-footer { background: #f0f0f0; border-top: 1px solid #e0e0e0; }
:root[data-theme="light"] .clean-footer h4 { color: #111 !important; }
:root[data-theme="light"] .ui-showcase-container { background: #e5e5e5; }
:root[data-theme="light"] .notif-card { border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
:root[data-theme="light"] .glass-dark { background: rgba(255, 255, 255, 0.9); }
:root[data-theme="light"] .glass-candibean { background: rgba(13, 153, 158, 0.1); border: 1px solid rgba(13, 153, 158, 0.3); box-shadow: 0 10px 40px rgba(13, 153, 158, 0.15); }
:root[data-theme="light"] .notif-body { color: #222; }
:root[data-theme="light"] .notif-header { color: #666; }
:root[data-theme="light"] .abstract-card,
:root[data-theme="light"] .faq-item { background: #ffffff; border-color: #e5e5e5; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
:root[data-theme="light"] .faq-item:hover { border-color: #ccc; }
:root[data-theme="light"] .faq-question:hover { background: #fafafa; }
:root[data-theme="light"] .badge { background: #ffffff !important; border-color: #dddddd !important; color: #333333 !important; }
:root[data-theme="light"] .app-mockup-3d { border-color: #fff; box-shadow: -30px 40px 80px rgba(0,0,0,0.2); }
:root[data-theme="light"] .step-num { color: #888; border-bottom-color: #ddd; }
:root[data-theme="light"] .badge-apple { background: rgba(0,0,0,0.8); }
:root[data-theme="light"] .cinematic-footer::after { background: linear-gradient(180deg, #fafafa 0%, transparent 50%, #fafafa 100%); }
:root[data-theme="light"] .bottom-subtitle { color: #555555; font-weight: 500; }

/* Mobile Mechanics */
@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-content { margin-bottom: 60px; }
    .display-subtitle { margin-left: auto; margin-right: auto; }
    .app-mockup-3d { transform: rotateY(0deg) rotateX(0deg) scale(1); }
    
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .reverse-desktop .feature-graphic { order: 2; }
    .reverse-desktop .feature-text { order: 1; }
    .feature-block { padding: 60px 0; }
    .abstract-card, .ui-showcase-container { height: 350px; }
    
    .hero { padding-top: 140px; min-height: auto; }
    
    .mobile-stack { flex-direction: column; text-align: center; gap: 30px; }
    .text-mobile-center { justify-content: center; width: 100%; display: block; margin: 0;}
    .mt-mobile { margin-top: 10px; }
    .security-badges { flex-direction: column; align-items: center; }
}

/* Advanced Textures & Micro-Interactions */
.noise-overlay { position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 9999; background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); opacity: 0.02; animation: grain 8s steps(10) infinite; }
@keyframes grain { 0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-5%, -10%); } 20% { transform: translate(-15%, 5%); } 30% { transform: translate(7%, -25%); } 40% { transform: translate(-5%, 25%); } 50% { transform: translate(-15%, 10%); } 60% { transform: translate(15%, 0%); } 70% { transform: translate(0%, 15%); } 80% { transform: translate(3%, 35%); } 90% { transform: translate(-10%, 10%); } }
:root[data-theme="light"] .noise-overlay { opacity: 0.015; filter: invert(1); }

.cursor-glow { position: fixed; top: 0; left: 0; width: 600px; height: 600px; background: radial-gradient(circle closest-side, rgba(13, 153, 158, 0.15), transparent); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0; mix-blend-mode: screen; transition: width 0.3s, height 0.3s; will-change: transform; }
:root[data-theme="light"] .cursor-glow { mix-blend-mode: multiply; background: radial-gradient(circle closest-side, rgba(13, 153, 158, 0.12), transparent); }

/* --- Partners Section --- */
.partners-section { padding: 40px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.05); background: #020202; }
.partner-item { display: inline-flex; align-items: center; gap: 15px; margin: 0 25px; opacity: 0.6; transition: all 0.3s ease; cursor: default; }
.partner-item:hover { opacity: 1; transform: scale(1.05); }
.partner-logo { height: 35px; max-width: 140px; object-fit: contain; filter: grayscale(100%); transition: all 0.3s ease; }
.partner-item:hover .partner-logo { filter: grayscale(0%); }
.partner-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
:root[data-theme="light"] .partners-section { background: transparent; border-bottom-color: rgba(0,0,0,0.05); }
:root[data-theme="light"] .partner-name { color: #000; }

/* --- Reviews Marquee --- */
.review-section { overflow: hidden; }
.marquee-wrapper { width: 100%; display: flex; overflow: hidden; white-space: nowrap; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 30px; animation: scrollMarquee 40s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card { width: 350px; min-height: 180px; padding: 30px; border-radius: 24px; white-space: normal; display:inline-flex; flex-direction: column; justify-content: space-between; flex-shrink: 0;}

/* --- Vacancies Grid --- */
.vacancies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.vacancy-card { display: flex; justify-content: space-between; align-items: center; padding: 25px 35px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.vacancy-title { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 5px; }
.vacancy-location { color: var(--text-gray); font-size: 0.9rem; }

@media (max-width: 768px) {
    .vacancy-card { flex-direction: column; text-align: center; gap: 20px; }
}

/* --- Blog Grid --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin: 0 auto; }
.blog-card { display: flex; flex-direction: column; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; background: #0a0a0a; transition: transform 0.3s ease, border-color 0.3s ease; text-decoration: none !important; color: var(--text-white) !important; }
.blog-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.blog-image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.05); }
.blog-content { padding: 25px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.blog-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-neon); font-weight: 700; text-decoration: none !important; }
.blog-title { font-family: var(--font-heading); font-size: 1.3rem; line-height: 1.3; color: var(--text-white); text-decoration: none !important; }
.blog-excerpt { font-size: 0.95rem; color: var(--text-gray); line-height: 1.5; text-decoration: none !important; }
.blog-date { font-size: 0.8rem; color: #555; margin-top: auto; padding-top: 15px; text-decoration: none !important; }
:root[data-theme="light"] .blog-card { background: #ffffff; border-color: #e5e5e5; }
:root[data-theme="light"] .blog-image { border-bottom-color: #e5e5e5; }
