:root {
    --primary: #6c5ce7;
    --primary-dark: #4834d4;
    --primary-light: #8c7ae6;
    --secondary: #9c88ff;
    --bg-light: #f8f9fe;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --border-color: rgba(108, 92, 231, 0.2);
    --card-shadow: 0 10px 30px rgba(108, 92, 231, 0.05);
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-main); background-color: var(--bg-light); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Buttons */
.btn { padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; border: none; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(108, 92, 231, 0.3); color: var(--primary); background: transparent; }
.btn-outline:hover { border-color: var(--primary); background: rgba(108, 92, 231, 0.05); }
.btn-outline-purple { border: 1px solid var(--primary-light); color: var(--primary); background: rgba(255,255,255,0.8); }
.btn-outline-purple:hover { background: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-large { padding: 1rem 2rem; font-size: 1rem; border-radius: 12px; }

/* Header */
.header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 4rem; position: absolute; width: 100%; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 0.75rem; color: var(--primary-dark); }
.logo-icon { width: 32px; height: 32px; color: var(--primary); }
.logo-text { font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; display: block; line-height: 1; }
.logo-subtext { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; display: block; }
.nav { display: flex; gap: 2rem; }
.nav a { font-size: 0.85rem; font-weight: 600; color: var(--text-main); position: relative; }
.nav a:hover, .nav a.active { color: var(--primary); }
.auth-buttons { display: flex; gap: 1rem; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--primary); cursor: pointer; }

/* Hero */
.hero { display: flex; min-height: 100vh; padding: 8rem 4rem 4rem; background: radial-gradient(circle at 70% 30%, #e6dffc 0%, #f1eefd 40%, #e8f0fe 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: radial-gradient(rgba(108, 92, 231, 0.1) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 600px; z-index: 10; }
.hero-title { font-size: 4.5rem; font-weight: 800; line-height: 1.1; color: var(--primary-dark); margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-title .highlight { color: var(--primary-light); }
.hero-desc { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-cta { display: flex; gap: 1rem; }
.hero-visual { flex: 1; display: flex; align-items: center; justify-content: center; }
.image-wrapper { position: relative; display: inline-block; width: 100%; max-width: 600px; text-align: center; }
.hero-image { width: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(108,92,231,0.2)); z-index: 2; border-radius: 20px; display: block; margin: 0 auto; }

.floating-badge { position: absolute; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 0.75rem 1.25rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; color: var(--primary-dark); display: flex; align-items: center; gap: 0.5rem; box-shadow: 0 10px 25px rgba(108,92,231,0.1); z-index: 3; border: 1px solid rgba(255,255,255,0.5); animation: float 6s ease-in-out infinite; }
.floating-badge i { color: var(--primary-light); width: 18px; height: 18px; }
.badge-1 { top: 15%; left: 5%; animation-delay: 0s; }
.badge-2 { top: 10%; right: -2%; animation-delay: 1s; }
.badge-3 { bottom: 25%; right: 2%; animation-delay: 2s; }
.badge-4 { bottom: 15%; left: 10%; animation-delay: 3s; }

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

/* Prop Value Grid */
.value-prop { padding: 4rem; background: var(--bg-light); }
.grid-container { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 1.5rem; }
.card { background: var(--white); padding: 2rem; border-radius: 20px; box-shadow: var(--card-shadow); border: 1px solid var(--border-color); }
.card h2 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.card > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; min-height: 40px; }

.cross-list li, .check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-main); }
.cross-list i { color: #ff7675; flex-shrink: 0; width: 20px; }
.check-list { background: rgba(108, 92, 231, 0.05); padding: 1.5rem; border-radius: 12px; height: calc(100% - 100px); }
.check-list i { color: var(--primary); flex-shrink: 0; width: 20px; }

.process-steps { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 2rem; }
.step { flex: 1; text-align: center; position: relative; padding: 0 5px; }
.step-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--white); border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--primary); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.step h4 { font-size: 0.85rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.step p { font-size: 0.75rem; color: var(--text-muted); }
.step-arrow { color: rgba(108, 92, 231, 0.3); padding-top: 15px; }

/* Features Grid */
.features-grid { padding: 0 4rem 4rem; }
.grid-container-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.feature-card { border-radius: 24px; overflow: hidden; position: relative; box-shadow: var(--card-shadow); display: flex; flex-direction: column; }
.dark-card { background: linear-gradient(135deg, #3c2a93, #2d1c6d); color: var(--white); padding: 3rem 2rem; }
.dark-card h2 { color: var(--white); margin-bottom: 1rem; }
.dark-card p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 0.9rem; }

.diamond-diagram { position: relative; height: 250px; width: 100%; margin-top: 2rem; }
.diamond-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-weight: 800; font-size: 1.5rem; z-index: 2; }
.diamond-node { position: absolute; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 0.5rem; text-align: center; width: 100px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); }
.diamond-node strong { display: block; font-size: 1.25rem; }
.diamond-node span { display: block; font-size: 0.7rem; font-weight: 600; margin-top: 2px; }
.diamond-node small { font-size: 0.6rem; opacity: 0.7; }
.diamond-node.top { top: 0; left: 50%; transform: translateX(-50%); }
.diamond-node.bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.diamond-node.left { top: 50%; left: 10%; transform: translateY(-50%); }
.diamond-node.right { top: 50%; right: 10%; transform: translateY(-50%); }

.talent-card, .company-card { background: #f3f0ff; }
.card-content { padding: 2.5rem 2.5rem 1rem; flex: 1; display: flex; flex-direction: column; }
.card-content h2 { color: var(--primary-dark); font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.purple-list { margin-bottom: 2rem; }
.purple-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem; color: var(--text-main); font-weight: 500; }
.purple-list i { color: var(--primary); width: 18px; }
.card-img { width: 100%; height: 280px; object-fit: cover; object-position: top; border-radius: 0 0 24px 24px; }
.btn-primary.mt-auto { margin-top: auto; }

/* Impact Section */
.impact-section { padding: 0 4rem 4rem; }
.impact-container { background: #eef2ff; border-radius: 24px; display: flex; align-items: stretch; overflow: hidden; border: 1px solid var(--border-color); }
.impact-left { display: flex; align-items: center; gap: 2rem; flex: 2; padding-right: 2rem; background: #e0e7ff; }
.impact-img { width: 250px; height: 100%; object-fit: cover; border-radius: 0 24px 24px 0; }
.impact-text-wrapper { display: flex; align-items: center; gap: 1rem; }
.leaf-icon { color: var(--primary); width: 40px; height: 40px; }
.impact-title h2 { font-size: 1.75rem; color: var(--primary-dark); line-height: 1.2; }
.impact-desc { font-size: 0.85rem; color: var(--text-muted); max-width: 300px; padding: 1rem 0; }

.impact-stats { flex: 1.5; display: flex; justify-content: space-around; align-items: center; padding: 2rem; }
.stat { display: flex; align-items: center; gap: 1rem; }
.stat i { color: var(--primary); width: 32px; height: 32px; }
.stat strong { display: block; font-size: 1.5rem; color: var(--primary-dark); line-height: 1.2; }
.stat span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }

/* Responsive */
@media (max-width: 1200px) {
    .grid-container { grid-template-columns: 1fr; }
    .grid-container-3 { grid-template-columns: 1fr; }
    .process-steps { flex-wrap: wrap; gap: 1rem; }
    .step-arrow { display: none; }
    .impact-container { flex-direction: column; }
    .impact-left { padding: 2rem; border-radius: 24px 24px 0 0; }
    .impact-img { height: 150px; border-radius: 12px; }
}
@media (max-width: 768px) {
    .header { padding: 1rem 2rem; }
    .nav, .auth-buttons { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { flex-direction: column; padding: 6rem 2rem 2rem; text-align: center; }
    .hero-cta { flex-direction: column; }
    .hero-title { font-size: 3rem; }
    .value-prop, .features-grid, .impact-section { padding: 2rem; }
    .hero-visual { margin-top: 3rem; }
    .floating-badge { position: relative; margin: 0.5rem auto; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; animation: none; width: fit-content; }
    .diamond-diagram { display: none; /* simplifies mobile view */ }
}
