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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6;
    color: #ffffff;
    background-color: #02151c;
    overflow-x: hidden;
    position: relative;
}

* {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Ensure HTML is properly rendered */
h1, h2, h3, h4, h5, h6, p, span, div {
    white-space: normal;
    word-wrap: break-word;
}

/* Force proper HTML rendering */
.hero-title, .section-title, .mindset-title {
    white-space: pre-line;
    content: attr(data-content);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.header .container {
    z-index: 10000;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #7aff7f;
    color: #02151c;
    box-shadow: 0 4px 12px rgba(122, 255, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 255, 127, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #02151c;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    height: 40px;
    width: auto;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    white-space: pre-line;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #b0b0b0;
    line-height: 1.5;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.hero-microcopy {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.hero-background {
    display: none;
}

.flow-lines {
    display: none;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mindset Shift Section */
.mindset-shift {
    padding: 120px 0;
    text-align: center;
}

.mindset-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.scroll-indicator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #7aff7f, #c9f420);
    margin: 2rem auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #7aff7f, #c9f420);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

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

.mindset-body {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Positioning Section */
.product-positioning {
    padding: 120px 0;
}

.positioning-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 4rem;
}

.positioning-card {
    background: transparent;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.positioning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.positioning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.positioning-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.connecting-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #7aff7f, #c6a0f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.positioning-cards:hover .connecting-line {
    opacity: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 4rem;
    position: relative;
    align-items: start;
}

.step {
    text-align: center;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7aff7f;
    background: #02151c;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(122, 255, 127, 0.3);
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 2.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step p {
    color: #b0b0b0;
    line-height: 1.6;
}

.progress-line {
    display: none;
}

@keyframes flow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* What You Can Build Section */
.what-you-can-build {
    padding: 120px 0;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 4rem;
}

.use-case-card {
    background: transparent;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.use-case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.use-case-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Learning Mindset Section */
.learning-mindset {
    padding: 120px 0;
}

.learning-body {
    text-align: center;
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

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

.learning-item {
    text-align: center;
    padding: 32px;
}

.checkmark {
    width: 48px;
    height: 48px;
    background: #7aff7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #02151c;
}

.checkmark i {
    font-size: 1.25rem;
}

.learning-item h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.learning-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Company Control Section */
.company-control {
    padding: 120px 0;
}

.control-body {
    text-align: center;
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 4rem;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-icon {
    font-size: 1.5rem;
    color: #7aff7f;
}

.control-icon i {
    font-size: 1.5rem;
}

.control-item span {
    font-weight: 500;
    color: #ffffff;
}

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

.feature {
    background: transparent;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-subtext {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-background {
    display: none;
}

.pulse-lines {
    display: none;
}

@keyframes pulse-lines {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.2; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-logo {
        height: 32px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mindset-title {
        font-size: 2.5rem;
    }
    
    .positioning-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .control-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background-color: #7aff7f;
    color: #02151c;
}

::-moz-selection {
    background-color: #7aff7f;
    color: #02151c;
}

/* Header Styles */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(2, 21, 28, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999 !important;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    display: block !important;
    visibility: visible !important;
    display: flex;
    align-items: center;
    min-height: 56px;
}

.header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 56px;
    padding: 0;
}

.header-logo {
    height: 32px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    object-fit: contain;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 56px;
    padding: 0;
}

.nav {
    display: flex !important;
    gap: 32px !important;
    visibility: visible !important;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: all 0.2s ease;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    position: relative !important;
    display: inline-block !important;
    visibility: visible !important;
}

.nav-link:hover {
    color: #7aff7f;
    background: rgba(122, 255, 127, 0.1);
}

.nav-link.active {
    color: #7aff7f;
    background: rgba(122, 255, 127, 0.15);
}

.nav-link.sign-in-btn {
    background: #c9f420;
    color: #02151c !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 244, 32, 0.35);
}

.nav-link.sign-in-btn:hover {
    color: #02151c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 255, 127, 0.3);
}

.nav-link.language-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.nav-link.language-btn:hover {
    color: #7aff7f !important;
    transform: translateY(-1px);
}

.nav-link.language-btn .lang-text {
    font-weight: 600;
    font-size: 14px;
}

.nav-link.language-btn i {
    font-size: 12px;
    opacity: 0.8;
}

/* Carousel */
.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel .use-case-card {
    min-width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.carousel-prev,
.carousel-next {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255,255,255,0.2);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background: rgba(2, 21, 28, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

/* Green text highlighting */
.text-green {
    color: #7aff7f !important;
}

.hero-title .text-green {
    color: #7aff7f !important;
}

/* Demo Dialog Styles */
.demo-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 21, 28, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-dialog.active {
    display: flex;
}

.demo-dialog-content {
    background: #02151c;
    border: 1px solid rgba(122, 255, 127, 0.2);
    border-radius: 12px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.demo-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(122, 255, 127, 0.2);
}

.demo-dialog-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.demo-dialog-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.demo-dialog-close:hover {
    background: rgba(122, 255, 127, 0.1);
    color: #7aff7f;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid rgba(122, 255, 127, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237aff7f' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: #02151c;
    color: #ffffff;
    padding: 8px 12px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7aff7f;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(122, 255, 127, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

.form-actions .btn {
    min-width: 100px;
}

/* Responsive dialog */
@media (max-width: 768px) {
    .demo-dialog {
        padding: 16px;
    }
    
    .demo-dialog-content {
        padding: 24px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Adjust hero section for fixed header */
.hero {
    padding-top: 140px;
}

/* Responsive header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .hero {
        padding-top: 160px;
    }
}



/* Focus styles for accessibility */
.btn:focus,
button:focus {
    outline: 2px solid #7aff7f;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.last-updated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7aff7f;
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

/* Footer links for legal pages */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #7aff7f;
}

/* Responsive legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 120px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-body {
        padding: 0 16px;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
} 