/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--slate-900);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #00C6A2;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #009189;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--slate-800);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--emerald-400);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 50%, var(--slate-900) 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

.orb-1 {
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(16, 185, 129, 0.2);
}

.orb-2 {
    bottom: 5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(20, 184, 166, 0.2);
    animation-delay: 1s;
}

.molecule-circles {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.circle-1 {
    width: 24rem;
    height: 24rem;
    border-color: rgba(52, 211, 153, 0.3);
    animation: slowspin 40s linear infinite;
}

.circle-2 {
    width: 18rem;
    height: 18rem;
    border-color: rgba(45, 212, 191, 0.3);
    animation: slowspin-reverse 30s linear infinite;
}

.circle-3 {
    width: 12rem;
    height: 12rem;
    border-color: rgba(110, 231, 183, 0.4);
    animation: slowspin 40s linear infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #6ee7b7, #2dd4bf, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease-out;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #a7f3d0;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 48rem;
    margin: 1.5rem auto;
    line-height: 1.8;
    animation: fadeIn 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem auto;
    animation: fadeIn 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.badge {
    padding: 0.625rem 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald-300);
    backdrop-filter: blur(4px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeIn 0.8s ease-out 0.8s;
    animation-fill-mode: both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-500));
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    border: 2px solid var(--emerald-400);
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 6rem 4rem;
    background: #020617;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--emerald-300);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
    border-radius: 1rem;
    border: 1px solid var(--slate-700);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-300);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.container-small {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

/* Page Title */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald-300);
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    min-height: 100vh;
}

.about-story {
    margin-bottom: 3rem;
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--emerald-300);
    margin-bottom: 1.5rem;
}

.about-story p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--emerald-300);
}

.quote {
    font-style: italic;
    padding-left: 2rem;
    border-left: 4px solid var(--emerald-500);
}

.emphasis {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--emerald-300);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
    border-radius: 1rem;
    border: 1px solid var(--slate-700);
}

.card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--emerald-300);
    margin-bottom: 1rem;
}

.card p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.7;
}

.founder-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.founder-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--emerald-300);
    margin-bottom: 1rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #a7f3d0;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.founder-card p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Pipeline Section */
.pipeline-section {
    min-height: 100vh;
}

.pipeline-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pipeline-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
    border-radius: 1rem;
    border: 1px solid var(--slate-700);
    transition: all 0.3s;
}

.pipeline-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.pipeline-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.pipeline-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--emerald-300);
    margin-bottom: 0.5rem;
}

.pipeline-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pipeline-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pipeline-list li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pipeline-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--emerald-400);
}

.pipeline-use {
    padding-top: 1rem;
    border-top: 1px solid var(--slate-700);
    color: var(--gray-400);
}

.pipeline-use strong {
    color: var(--emerald-400);
    font-size: 0.875rem;
}

.workflow-banner {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.5);
    text-align: center;
}

.workflow-banner h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--emerald-300);
    margin-bottom: 1rem;
}

.workflow-banner p {
    font-size: 1.25rem;
    color: var(--gray-300);
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
}

.contact-form {
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-700);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-300);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--slate-900);
    border: 2px solid var(--slate-700);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--emerald-500);
    border-radius: 0.5rem;
    color: #6ee7b7;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #020617;
    border-top: 1px solid var(--slate-800);
    padding: 3rem 4rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--emerald-300);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--emerald-300);
}

.footer-section p {
    color: var(--gray-400);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    text-align: center;
    color: var(--gray-400);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slowspin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slowspin-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container,
    .container-small {
        padding: 3rem 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .pipeline-card {
        flex-direction: column;
    }
}