/* Shackleton & Drake - Global Styles */
:root {
    --expedition-navy: #0A1628;
    --aurora-teal: #00D4AA;
    --polar-white: #FFFFFF;
    --ice-gray: #94A3B8;
    --deep-ocean: #1E293B;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --success-green: #10B981;
    --warning-amber: #F59E0B;
    --error-red: #EF4444;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--expedition-navy);
    color: var(--polar-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--ice-gray); }

a {
    color: var(--aurora-teal);
    text-decoration: none;
    transition: opacity 0.2s ease;
}
a:hover { opacity: 0.8; }

.highlight { color: var(--aurora-teal); }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn-primary {
    background: var(--aurora-teal);
    color: var(--expedition-navy);
}
.btn-primary:hover {
    background: #00E5BB;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--polar-white);
    border: 2px solid var(--ice-gray);
}
.btn-secondary:hover {
    border-color: var(--aurora-teal);
    color: var(--aurora-teal);
}


/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--polar-white);
}
.logo span { color: var(--aurora-teal); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--ice-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--polar-white); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--polar-white);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--deep-ocean);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--aurora-teal);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--ice-gray);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aurora-teal);
}
.stat-label {
    font-size: 0.875rem;
    color: var(--ice-gray);
}

.hero-visual {
    position: relative;
}

.hero-graphic {
    width: 100%;
    height: 500px;
    background: var(--deep-ocean);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.platform-preview {
    font-size: 1.5rem;
    color: var(--ice-gray);
    text-align: center;
}
.platform-preview span { display: block; font-size: 3rem; margin-bottom: 16px; }

/* DRAKE OS Platform Visualization */
.platform-viz {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-header {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aurora-teal);
    letter-spacing: 4px;
}

.module-ring {
    position: absolute;
    width: 320px;
    height: 320px;
}

.module-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--expedition-navy);
    border: 2px solid var(--aurora-teal);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.module-node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.4);
}

.module-node span {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.node-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--polar-white);
    letter-spacing: 1px;
}

.node-navigator { top: -40px; left: 50%; transform: translateX(-50%); }
.node-compass { right: -40px; top: 50%; transform: translateY(-50%); }
.node-anchor { bottom: -40px; left: 50%; transform: translateX(-50%); }
.node-beacon { left: -40px; top: 50%; transform: translateY(-50%); }

.ai-core {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.1);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

.core-inner {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--aurora-teal) 0%, #00A88A 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.5);
}

.core-inner span {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.core-label {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--expedition-navy);
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.connection-lines {
    position: absolute;
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.conn-line {
    stroke: var(--aurora-teal);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    opacity: 0.5;
    animation: dashMove 1s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -12; }
}

.data-particles {
    position: absolute;
    width: 320px;
    height: 320px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--aurora-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--aurora-teal);
}

.p1 { top: 50%; left: 0; animation: moveRight 2s ease-in-out infinite; }
.p2 { top: 0; left: 50%; animation: moveDown 2s ease-in-out infinite 0.5s; }
.p3 { top: 50%; right: 0; animation: moveLeft 2s ease-in-out infinite 1s; }
.p4 { bottom: 0; left: 50%; animation: moveUp 2s ease-in-out infinite 1.5s; }

@keyframes moveRight {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(120px); opacity: 0; }
}

@keyframes moveLeft {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(-120px); opacity: 0; }
}

@keyframes moveDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(120px); opacity: 0; }
}

@keyframes moveUp {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-120px); opacity: 0; }
}


/* Problem Section */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--aurora-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

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

.problem-card {
    background: var(--deep-ocean);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.problem-card h4 {
    color: var(--polar-white);
    margin-bottom: 12px;
}

.problem-stat {
    font-size: 2rem;
    font-weight: 700;
    color: #EF4444;
    margin-top: 16px;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(180deg, var(--expedition-navy) 0%, var(--deep-ocean) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--expedition-navy);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--aurora-teal);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.module-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 20px;
}

.module-card h4 {
    color: var(--aurora-teal);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.module-subtitle {
    font-size: 0.875rem;
    color: var(--ice-gray);
    margin-bottom: 16px;
}

.module-features {
    list-style: none;
    text-align: left;
    font-size: 0.875rem;
}

.module-features li {
    padding: 8px 0;
    color: var(--ice-gray);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.module-features li:first-child { border-top: none; }

/* Differentiators Section */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diff-card {
    background: var(--deep-ocean);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--aurora-teal);
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.diff-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--aurora-teal);
    line-height: 1;
    margin-bottom: 8px;
}

.diff-card h4 {
    color: var(--polar-white);
    margin-bottom: 12px;
}

/* Comparison Table */
.comparison-section {
    background: var(--deep-ocean);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-table th {
    color: var(--ice-gray);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child { width: 30%; }

.comparison-table td:nth-child(2) {
    color: var(--aurora-teal);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: rgba(0, 212, 170, 0.05);
}

.table-highlight {
    background: rgba(0, 212, 170, 0.1);
    border-radius: 4px;
    padding: 4px 8px;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--expedition-navy) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
}

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

/* Social Proof */
.social-proof {
    background: var(--expedition-navy);
    padding: 60px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.proof-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--ice-gray);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    background: var(--deep-ocean);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ice-gray);
    font-size: 0.75rem;
}

/* Footer */
.footer {
    background: var(--expedition-navy);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--polar-white);
    margin-bottom: 16px;
}
.footer-logo span { color: var(--aurora-teal); }

.footer-tagline {
    font-style: italic;
    color: var(--ice-gray);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--deep-ocean);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ice-gray);
    transition: all 0.2s ease;
}
.social-link:hover {
    background: var(--aurora-teal);
    color: var(--expedition-navy);
}

.footer-column h5 {
    color: var(--polar-white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--ice-gray);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--polar-white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 0.875rem;
    color: var(--ice-gray);
}

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

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--polar-white);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--deep-ocean);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: var(--polar-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--aurora-teal);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--ice-gray);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.newsletter-form .form-input {
    flex: 1;
}

.newsletter-form .btn {
    white-space: nowrap;
}


/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    
    .problem-grid,
    .solution-grid,
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta .btn-secondary { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .stat { text-align: center; }
    
    .section { padding: 60px 0; }
    
    .problem-grid,
    .solution-grid,
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .cta-buttons { flex-direction: column; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Page-specific styles */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--expedition-navy) 0%, var(--deep-ocean) 100%);
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Platform page */
.architecture-visual {
    background: var(--deep-ocean);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.arch-layer {
    background: var(--expedition-navy);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.arch-layer.highlight {
    border-color: var(--aurora-teal);
    background: rgba(0, 212, 170, 0.05);
}

.arch-connector {
    text-align: center;
    color: var(--aurora-teal);
    font-size: 1.5rem;
    margin: 8px 0;
}

/* Agent cards */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.agent-card {
    background: var(--deep-ocean);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.agent-card:hover {
    border-color: var(--aurora-teal);
    transform: translateY(-4px);
}

.agent-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.agent-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--polar-white);
    margin-bottom: 4px;
}

.agent-auto {
    font-size: 0.75rem;
    color: var(--aurora-teal);
}

@media (max-width: 1024px) {
    .agent-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .agent-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: var(--deep-ocean);
    border-radius: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--deep-ocean);
    padding: 40px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* About page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--deep-ocean);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--slate-700);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.team-name {
    font-weight: 600;
    color: var(--polar-white);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.875rem;
    color: var(--aurora-teal);
}

@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* Utility classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }