:root {
    --bg-color: #030305;
    --text-primary: #ffffff;
    --text-secondary: #888894;
    --accent-gold: #cfaa71;
    --accent-glass: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(207, 170, 113, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Depth */
#noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

#radial-glow {
    position: absolute;
    top: -20vh;
    right: 0;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(207,170,113,0.08) 0%, rgba(3,3,5,0) 60%);
    pointer-events: none;
    z-index: 0;
}

#horizon-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to top, rgba(207,170,113,0.03), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Typography & Utilities */
h1, h2, h3 {
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.mono {
    font-family: monospace;
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-orb {
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.logo-text {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-pill {
    background: rgba(207, 170, 113, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(207, 170, 113, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.nav-pill:hover {
    background: rgba(207, 170, 113, 0.2);
    box-shadow: 0 0 15px rgba(207, 170, 113, 0.2);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding-top: 6rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.cta-primary, .cta-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.cta-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
}

.cta-primary:hover {
    box-shadow: 0 0 20px rgba(207, 170, 113, 0.4);
    background: var(--accent-gold);
}

.cta-secondary {
    background: var(--accent-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(4px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Pearl */
.hero-interactive {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.interaction-field {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 170, 113, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pearl {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d4d4d4 20%, #4a4a52 60%, #1a1a1f 100%);
    box-shadow: 
        inset -10px -10px 30px rgba(0,0,0,0.8),
        0 15px 35px rgba(0,0,0,0.5),
        0 0 40px rgba(255,255,255,0.1);
    position: absolute;
    cursor: grab;
    touch-action: none;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s;
}

.pearl:active {
    cursor: grabbing;
}

.pearl.pulse {
    transform: scale(0.95);
    box-shadow: 0 0 60px rgba(207, 170, 113, 0.4);
}

.pearl-highlight {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.pearl-glint {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #fff;
    top: 25%;
    left: 25%;
    animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
    0% { transform: translate(0, 0); opacity: 0.5; }
    100% { transform: translate(15px, 10px); opacity: 1; }
}

.pearl-orbit {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(207, 170, 113, 0);
    border-radius: 50%;
    transition: border-color 0.3s;
    pointer-events: none;
}

.pearl:hover .pearl-orbit {
    border-color: rgba(207, 170, 113, 0.3);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.pearl-shadow {
    position: absolute;
    bottom: -60px;
    width: 100px;
    height: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
    transition: transform 0.1s;
}

.pearl-instruction {
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-size: 0.8rem;
    color: var(--text-secondary);
    pointer-events: none;
    text-align: right;
    line-height: 1.4;
}

/* Command Capsule */
.command-capsule {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    width: 240px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.command-capsule.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -40%) scale(0.95);
}

.capsule-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.capsule-title {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.2rem;
}

.capsule-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.capsule-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.capsule-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-primary);
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.capsule-btn:hover {
    background: rgba(255,255,255,0.2);
}

.capsule-btn.ghost {
    background: transparent;
    border: 1px solid var(--border-color);
}

.capsule-btn.ghost:hover {
    background: rgba(255,255,255,0.05);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle, .section-body {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* What Auroch Is */
.bridge-row {
    display: flex;
    gap: 1rem;
}

.bridge-chip {
    padding: 1rem 2rem;
    background: var(--accent-glass);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Verticals Grid */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.vertical-card {
    background: var(--accent-glass);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.vertical-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.mini-orb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-primary);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.vertical-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.vertical-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Dotspace & Operator Splitting */
.dotspace-section, .operator-section {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.dotspace-content, .operator-content {
    flex: 1;
}

.dotspace-visual, .operator-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-bullets li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.mock-preview-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a24 0%, #0d0d12 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.preview-badge {
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
}

.preview-overlay {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preview-overlay span {
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.operator-mock-card {
    background: var(--accent-glass);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.docked-pearl-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.docked-pearl {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #ccc 30%, #444 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.pending-action {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.action-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.8rem;
    border-radius: 6px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.action-btn.primary {
    background: var(--text-primary);
    color: var(--bg-color);
}

.action-btn.ghost {
    background: transparent;
    border: 1px solid var(--border-color);
}

/* Footer */
.footer-section {
    border-top: 1px solid var(--border-color);
    padding-bottom: 2rem;
    text-align: center;
}

.footer-content {
    padding: 6rem 0;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-logo {
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-headline {
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-interactive {
        height: 300px;
        order: -1;
    }
    
    .nav-center {
        display: none;
    }
    
    .dotspace-section, .operator-section {
        flex-direction: column;
    }
    
    .operator-section {
        flex-direction: column-reverse;
    }
    
    .bridge-row {
        flex-direction: column;
    }
}
