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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(57, 229, 117, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #39e575;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #39e575;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #39e575;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #39e575, #2dd866);
    color: black;
    box-shadow: 0 4px 15px rgba(57, 229, 117, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 229, 117, 0.6);
}

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

.btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: #111;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.vision-text p {
    margin-bottom: 2rem;
    color: #ccc;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point i {
    font-size: 1.5rem;
    color: #39e575;
    margin-top: 5px;
}

.point h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.point p {
    color: #ccc;
    margin: 0;
}

.vision-visual {
    position: relative;
    height: 400px;
}

.floating-elements .element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #39e575, #2dd866);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(57, 229, 117, 0.3);
}

.floating-elements .element:nth-child(1) { top: 10%; left: 20%; }
.floating-elements .element:nth-child(2) { top: 20%; right: 10%; }
.floating-elements .element:nth-child(3) { bottom: 30%; left: 10%; }
.floating-elements .element:nth-child(4) { bottom: 10%; right: 20%; }

/* Campus Section */
.campus {
    padding: 100px 0;
    background: #000;
    background-image: 
        linear-gradient(rgba(57, 229, 117, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 229, 117, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    color: white;
    position: relative;
}

.campus .section-header h2,
.campus .section-header p {
    color: white;
}

.campus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.campus-central {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campus-core {
    background: linear-gradient(135deg, #39e575, #2dd866);
    border-radius: 0;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(57, 229, 117, 0.4);
    animation: pulse 2s infinite;
    color: black;
}

.campus-core i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.campus-core h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.campus-connections {
    position: absolute;
    width: 300px;
    height: 300px;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, #39e575, transparent);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(var(--angle));
    animation: connectionPulse 3s ease-in-out infinite;
}

.campus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.feature {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(57, 229, 117, 0.3);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #39e575;
}

.feature i {
    font-size: 2.5rem;
    color: #39e575;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background: #111;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.modules-card {
    background: #000;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.modules-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.modules-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modules-card:hover .modules-image img {
    transform: scale(1.05);
}

.modules-card-content {
    padding: 2rem;
}

.modules-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 229, 117, 0.3);
    border-color: #39e575;
}

.modules-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #39e575, #2dd866);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modules-icon i {
    font-size: 1.5rem;
    color: black;
}

.modules-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.modules-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.modules-card ul {
    list-style: none;
}

.modules-card li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.modules-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #39e575;
    font-weight: bold;
}

.modules-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.modules-card.ready .building-status {
    background: #39e575;
    color: black;
}

.modules-card.in-progress .building-status {
    background: #333;
    color: #ccc;
    border: 1px solid #555;
}

.modules-card.build-your-own {
    border: 2px dashed #39e575;
    background: rgba(57, 229, 117, 0.05);
}

.modules-card.build-your-own:hover {
    background: rgba(57, 229, 117, 0.1);
}

.mt-2 {
    margin-top: 1rem;
}

/* District Key Section */
.district-key {
    padding: 100px 0;
    background: linear-gradient(135deg, #000, #111);
    color: white;
}

.key-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.key-visual {
    display: flex;
    justify-content: center;
}

.key-card {
    max-width: 600px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.key-benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.key-benefits > p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit i {
    font-size: 1.3rem;
    color: #39e575;
    margin-top: 0.2rem;
    min-width: 20px;
}

.benefit h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0;
}

/* Business Section */
.business {
    padding: 100px 0;
    background: #111;
}

/* Transformation Diagram Styles */
.transformation-diagram {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.diagram-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 229, 117, 0.3);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diagram-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #39e575, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diagram-step:hover {
    transform: translateY(-5px);
    border-color: #39e575;
    box-shadow: 0 20px 40px rgba(57, 229, 117, 0.2);
}

.diagram-step:hover::before {
    opacity: 1;
}

.step-circle {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #39e575, #2dd866);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(57, 229, 117, 0.4);
    position: relative;
}

.step-circle::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #39e575, #2dd866, #39e575);
    border-radius: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diagram-step:hover .step-circle::after {
    opacity: 1;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    font-family: 'Inter', sans-serif;
}

.step-content {
    flex: 1;
    padding-left: 1rem;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #39e575;
    transition: width 0.3s ease;
}

.diagram-step:hover .step-content h3::after {
    width: 100px;
}

.step-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-content li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #39e575;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.diagram-step:hover .step-content li {
    color: #fff;
}

.diagram-step:hover .step-content li::before {
    transform: translateX(5px);
}

.diagram-arrow {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.diagram-arrow i {
    font-size: 2rem;
    color: #39e575;
    animation: pulse 2s infinite;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border: 1px solid rgba(57, 229, 117, 0.3);
    border-radius: 0;
}

.diagram-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #39e575, transparent);
    z-index: -1;
}

/* Business CTA Section */
.business-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 229, 117, 0.3);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.business-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 229, 117, 0.1), transparent);
    transition: left 0.8s ease;
}

.business-cta:hover::before {
    left: 100%;
}

.business-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.business-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.business-cta .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.business-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(57, 229, 117, 0.5);
}

/* Progressive Enhancement */
.diagram-step:nth-child(1) {
    animation-delay: 0.1s;
}

.diagram-step:nth-child(3) {
    animation-delay: 0.2s;
}

.diagram-step:nth-child(5) {
    animation-delay: 0.3s;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.business-text > p {
    margin-bottom: 2rem;
    color: #ccc;
}

.business-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.business-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.business-feature i {
    font-size: 1.3rem;
    color: #39e575;
    margin-top: 0.3rem;
}

.business-feature h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.business-feature p {
    color: #ccc;
    margin: 0;
}

.business-visual {
    display: flex;
    justify-content: center;
}

.twin-diagram {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #000;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.physical-side, .virtual-side {
    text-align: center;
    min-width: 120px;
}

.physical-side h4, .virtual-side h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.business-elements {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.business-elements .element {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #333;
    border-radius: 0;
    font-size: 0.8rem;
    color: #ccc;
}

.business-elements .element.virtual {
    background: linear-gradient(135deg, rgba(57, 229, 117, 0.2), rgba(45, 216, 102, 0.2));
}

.business-elements .element i {
    color: #39e575;
}

.sync-arrow {
    font-size: 1.5rem;
    color: #39e575;
    animation: pulse 2s infinite;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(135deg, #39e575, #2dd866);
    color: black;
    text-align: center;
}

.waitlist-content {
    max-width: 800px;
    margin: 0 auto;
}

.waitlist-header {
    margin-bottom: 3rem;
}

.waitlist-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.waitlist-header p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-section {
    margin-bottom: 2rem;
    text-align: left;
}

.form-section h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #39e575;
    border-radius: 1px;
}

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

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

.form-group label {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.waitlist-form {
    max-width: 100%;
    margin: 0;
}

.waitlist-form input,
.waitlist-form select {
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    outline: none;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    border-color: #39e575;
    box-shadow: 0 0 0 3px rgba(57, 229, 117, 0.1);
}

.waitlist-form input::placeholder {
    color: #6b7280;
}

.waitlist-form select {
    cursor: pointer;
}

.waitlist-form select option {
    background: #fff;
    color: #000;
}

/* Enhanced Waitlist Submit Button */
.waitlist-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #39e575, #2dd866) !important;
    color: black !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    padding: 1.2rem 2rem !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(57, 229, 117, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin-top: 1rem !important;
}

.waitlist-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.waitlist-submit-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(57, 229, 117, 0.6) !important;
    background: linear-gradient(135deg, #2dd866, #39e575) !important;
}

.waitlist-submit-btn:hover::before {
    left: 100%;
}

.waitlist-submit-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(57, 229, 117, 0.5) !important;
}

.waitlist-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.waitlist-submit-btn:hover i {
    transform: translateX(3px);
}

.waitlist-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Countdown Section */
.countdown {
    padding: 80px 0;
    background: #000;
    color: white;
    text-align: center;
}

.countdown h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 2rem 1.5rem;
    min-width: 100px;
    border: 1px solid #39e575;
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #39e575;
    font-family: 'Courier New', monospace;
}

.time-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #111;
}

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

.team-member {
    background: #000;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #39e575;
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 0;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid #39e575;
    transition: transform 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo i {
    font-size: 2rem;
    color: black;
    background: linear-gradient(135deg, #39e575, #2dd866);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.member-role {
    color: #39e575;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-links a {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
}

.member-links a:hover {
    background: #39e575;
    color: black;
}

.investors {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.investors h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
}

.investor-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.investor-img {
    display: inline-block;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    border: 1px solid #444;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 250px;
    height: 140px;
    overflow: hidden;
}

.investor-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.investor-img:hover {
    border-color: #39e575;
    background: rgba(57, 229, 117, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 229, 117, 0.2);
}

.investor-img:hover img {
    transform: scale(1.05);
}

.investor-contact-btn {
    margin-top: 2rem;
}

/* Team Expansion Section */
.team-expansion {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 229, 117, 0.3);
    border-radius: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-expansion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 229, 117, 0.1), transparent);
    transition: left 0.8s ease;
}

.team-expansion:hover::before {
    left: 100%;
}

.expansion-content {
    position: relative;
    z-index: 1;
}

.team-expansion h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.team-expansion p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-expansion strong {
    color: #39e575;
    font-weight: 600;
}

.team-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #39e575;
    border: 2px solid #39e575;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
}

.team-learn-more:hover {
    background: #39e575;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 229, 117, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid #2a2a2a;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #39e575 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #39e575;
    border-radius: 1px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39e575;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: #111;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 229, 117, 0.3);
    border-radius: 0;
    padding: 3rem;
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #39e575;
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #39e575;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #39e575;
    margin-bottom: 1rem;
}

.policy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.policy-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: #ccc;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.policy-section a {
    color: #39e575;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #2dd866;
    text-decoration: underline;
}

.contact-info {
    background: rgba(57, 229, 117, 0.1);
    border: 1px solid rgba(57, 229, 117, 0.3);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info p:first-child {
    color: #39e575;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section ul {
        padding-left: 1.5rem;
    }
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a:hover {
    color: #39e575;
    padding-left: 8px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #39e575;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -8px;
}

.footer-section a {
    color: #39e575;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-section a:hover {
    color: #2dd866;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #39e575;
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.social-links a:hover {
    color: #39e575;
    padding-left: 8px;
}

.social-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    width: 0;
    height: 1px;
    background: #39e575;
    transition: all 0.3s ease;
    opacity: 0;
}

.social-links a:hover::before {
    width: 8px;
    opacity: 1;
    left: -8px;
}

.social-links i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
}

.social-links span {
    font-weight: 500;
}



/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #39e575 50%, transparent 100%);
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-bottom a {
    color: #39e575;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #2dd866;
}

.footer-bottom a:visited {
    color: #39e575;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-section h4::after {
        width: 25px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .social-links a {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-links a {
        min-width: auto;
        justify-content: flex-start;
    }
}

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



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-content,
    .key-content,
    .business-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .campus-connections {
        display: none;
    }
    
    .twin-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form-container {
        padding: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1.5rem 1rem;
        min-width: 80px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .waitlist-stats {
        gap: 2rem;
    }
    
    .investor-logos {
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .investor-img {
        max-width: 180px;
        height: 100px;
        padding: 0.6rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Transformation Diagram Mobile */
    .transformation-diagram {
        padding: 1rem;
    }
    
    .diagram-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .step-circle {
        min-width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-content {
        padding-left: 0;
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-content li {
        padding-left: 1.5rem;
        text-align: left;
    }
    
    .business-cta {
        padding: 2rem 1rem;
    }
    
    .business-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .key-card {
        width: 300px;
        height: 200px;
        padding: 1.5rem;
    }
    
    /* Transformation Diagram Small Mobile */
    .diagram-step {
        padding: 1.5rem;
    }
    
    .step-circle {
        min-width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .business-cta {
        padding: 1.5rem 1rem;
    }
    
    .business-cta h3 {
        font-size: 1.4rem;
    }
    
    .business-cta p {
        font-size: 1rem;
    }
} 