:root {
    --ocean-deep: #0a1628;
    --ocean-mid: #132845;
    --ocean-light: #1e3a5f;
    --cyan-electric: #00e5ff;
    --cyan-bright: #64ffda;
    --miami-pink: #ff0080;
    --gold-accent: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--ocean-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Animated blockchain grid background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(var(--cyan-electric) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyan-electric) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--cyan-electric) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.08; }
}

/* Floating nodes */
.node {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--cyan-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan-bright);
    animation: float 20s infinite;
    z-index: 1;
}

.node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.node:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.node:nth-child(3) { top: 40%; left: 30%; animation-delay: 4s; }
.node:nth-child(4) { top: 80%; left: 60%; animation-delay: 6s; }
.node:nth-child(5) { top: 15%; left: 70%; animation-delay: 8s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(20px, 30px); }
}

/* Main container */
.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header/Nav */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan-electric), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-electric);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--cyan-electric);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--cyan-electric);
}

nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    animation: fadeIn 1.2s ease-out 0.3s both;
    padding: 4rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-label {
    font-size: 0.85rem;
    color: var(--cyan-electric);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeIn 1.4s ease-out 0.5s both;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    animation: fadeIn 1.6s ease-out 0.7s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--cyan-electric), var(--cyan-bright), var(--miami-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeIn 1.8s ease-out 0.9s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: fadeIn 2s ease-out 1.1s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan-electric), var(--cyan-bright));
    color: var(--ocean-deep);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--cyan-electric);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}

/* Page Content */
.page-content {
    min-height: 60vh;
    padding: 4rem 0;
    animation: fadeIn 1s ease-out;
}

.page-header {
    margin-bottom: 4rem;
}

/* Diagonal Section Divider */
.diagonal-section {
    position: relative;
    margin: 4rem 0;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cyan-electric), var(--miami-pink));
    padding: 4px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-image-inner {
    width: 100%;
    height: 100%;
    background: var(--ocean-mid);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--cyan-electric);
}

.section-label {
    font-size: 0.85rem;
    color: var(--cyan-electric);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--cyan-bright);
    font-weight: 600;
}

/* Ventures Grid */
.ventures {
    padding: 4rem 0;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.venture-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(19, 40, 69, 0.3));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan-electric), var(--miami-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.venture-card:hover::before {
    transform: scaleX(1);
}

.venture-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan-electric);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5), rgba(19, 40, 69, 0.5));
}

.venture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan-electric), var(--cyan-bright));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.venture-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.venture-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.venture-year {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--cyan-electric);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--cyan-electric);
    font-weight: 600;
}

/* Vision/Quote Section */
.vision {
    padding: 6rem 0;
    text-align: center;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: 'Syne', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: var(--cyan-electric);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 2rem;
}

.quote-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.quote-attribution {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.quote-attribution strong {
    color: var(--cyan-bright);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan-electric), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Credentials */
.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.credential-item {
    text-align: left;
}

.credential-title {
    font-size: 0.75rem;
    color: var(--cyan-electric);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.credential-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.credential-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 3rem auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border: 2px solid var(--cyan-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-electric);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: var(--cyan-electric);
    color: var(--ocean-deep);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4rem;
}

footer a {
    color: var(--cyan-electric);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .about {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    nav {
        gap: 1rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    nav {
        display: none;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}