:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-primary: #00f2ea; /* Cyan - Acoustic/Tech */
    --accent-secondary: #ff0055; /* Red - Bio/Blood */
    --surface-color: #111;
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-heading);
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor-follow {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}

.cursor-active {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 234, 0.1);
    border-color: var(--accent-secondary);
}

/* Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: exclusion;
}

.logo {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 1.2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

.cta-button {
    border: 1px solid var(--text-color);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

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

#flowCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    pointer-events: none; /* Let clicks pass to canvas if needed */
}

.hero-label {
    font-family: var(--font-mono);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.glitch-text {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    position: relative;
    color: var(--text-color);
}

.subtitle {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sections */
.content-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.center { text-align: center; }

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reveal-text {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--accent-secondary);
    font-style: italic;
}

/* Visual Block (Data Stream) */
.visual-block {
    background: var(--surface-color);
    padding: 2rem;
    border: 1px solid #333;
    font-family: var(--font-mono);
    color: #444;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.visual-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.data-stream .row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #222;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-left: 1px solid var(--accent-primary);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header .icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
}

.feature-card p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* Quote Section */
.quote-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

blockquote {
    font-size: 3rem;
    text-align: center;
    max-width: 1000px;
    line-height: 1.2;
    font-weight: 200;
    z-index: 2;
    background: linear-gradient(90deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.member-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(30%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-member:hover .member-photo {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.15);
}

.team-member:hover .member-photo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.member-role {
    font-family: var(--font-mono);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-degree {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.member-program {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Advisors */
.advisors-title {
    margin-top: 5rem;
}

.advisors-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.advisor .member-photo {
    width: 130px;
    height: 130px;
}

.advisor .member-role {
    color: var(--accent-primary);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid #222;
    display: flex;
    justify-content: center;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    font-family: var(--font-mono);
    font-weight: 700;
}

.footer-info {
    text-align: right;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .glitch-text { font-size: 3rem; }
    .grid-layout { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}
