/* ============================================================
   KREARIA ATERACTIVE VERSE — STYLESHEET
   Dark Premium | Cinematic | Cultural
   ============================================================ */

:root {
    --black: #050505;
    --charcoal: #0a0a0a;
    --surface: #111111;
    --surface-2: #181818;
    --border: rgba(255,255,255,0.07);
    --border-gold: rgba(212,175,55,0.25);
    --white: #F0EDE8;
    --muted: rgba(240,237,232,0.45);
    --muted-2: rgba(240,237,232,0.25);
    --gold: #D4AF37;
    --gold-dim: rgba(212,175,55,0.12);
    --gold-glow: rgba(212,175,55,0.06);
    --gold-bright: #E8C84A;
    --red: #c0392b;

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--black); }

/* ============================================================ CANVAS & NOISE */
#particle-canvas {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0; pointer-events: none;
}
.noise-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9990; pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ============================================================ CURSOR */
.cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: background 0.2s;
}
.cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}
.cursor-ring.hovered {
    width: 60px; height: 60px;
    border-color: rgba(212,175,55,0.7);
}

/* ============================================================ NAV */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 2rem 4rem;
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    padding: 1.2rem 4rem;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    display: flex; align-items: center; gap: 0.8rem;
    text-decoration: none; cursor: none;
}
.logo-mark {
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex; flex-direction: column;
    line-height: 1.2;
}
.logo-sub {
    font-size: 0.55rem;
    color: var(--muted);
    letter-spacing: 0.25em;
}
.nav-links {
    display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: none;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-cta {
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.2rem;
}
.nav-links a.nav-cta:hover {
    background: var(--gold-dim);
}
.nav-indicator {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.7rem;
    color: var(--muted-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}
.status-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================================ HERO */
.hero {
    position: relative;
    width: 100%; height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.2) saturate(0.7);
    transform: scale(1.05);
    transition: transform 0.1s;
}
.hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.7) 100%);
}
.hero-bottom-fade {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--black));
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 0 2rem;
}
.hero-eyebrow {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.eyebrow-line {
    display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.01em;
    display: flex; flex-direction: column;
    overflow: hidden;
    margin-bottom: 2rem;
}
.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s var(--ease-out) forwards;
}
.hero-line[data-delay="0"] { animation-delay: 0.5s; }
.hero-line[data-delay="1"] { animation-delay: 0.7s; }
.hero-line[data-delay="2"] { animation-delay: 0.9s; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.hero-stats {
    position: absolute; bottom: 5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 3rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.8s forwards;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    font-family: var(--font-mono);
}
.stat-divider {
    width: 1px; height: 50px;
    background: var(--border);
}
.scroll-cue {
    position: absolute; bottom: 2.5rem; left: 4rem;
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.6s var(--ease-out) 2s forwards;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: growLine 2s ease-in-out infinite;
}
@keyframes growLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-cue span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted-2);
    writing-mode: vertical-lr;
}

/* ============================================================ BUTTONS */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 40px rgba(212,175,55,0.2);
}
.btn-primary.full-width { width: 100%; margin-top: 1.5rem; }
.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem;
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ============================================================ SECTION HEADER SYSTEM */
.section-header {
    margin-bottom: 5rem;
}
.section-header.centered { text-align: center; }
.section-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    font-weight: 300;
}
.section-header.centered .section-desc { margin: 0 auto; }

/* ============================================================ ABOUT */
.about {
    position: relative; z-index: 1;
    padding: 10rem 4rem;
    border-top: 1px solid var(--border);
}
.about-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
}
.about-label {
    display: flex; flex-direction: column; gap: 0.4rem;
    padding-top: 0.5rem;
}
.about-label .section-num { margin-bottom: 0; }
.section-name {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--muted-2);
    text-transform: uppercase;
}
.about-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 3rem;
    line-height: 1.1;
}
.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.about-large {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
}
.about-col-right p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
}
.about-tags {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin-top: 2rem;
}
.about-tags span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.4rem 1rem;
}

/* ============================================================ DOMAINS */
.domains {
    position: relative; z-index: 1;
    padding: 8rem 4rem;
    background: var(--charcoal);
    border-top: 1px solid var(--border);
}
.domains-inner {
    max-width: 1300px; margin: 0 auto;
}
.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.domain-card {
    position: relative;
    background: var(--charcoal);
    padding: 3rem 2.5rem;
    overflow: hidden;
    transition: background 0.4s;
    cursor: none;
}
.domain-card::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold-glow);
    opacity: 0;
    transition: opacity 0.4s;
}
.domain-card:hover { background: var(--surface); }
.domain-card:hover::before { opacity: 1; }
.domain-card:hover .domain-number { opacity: 0.15; }
.domain-icon {
    width: 48px; height: 48px;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.domain-card:hover .domain-icon { opacity: 1; }
.domain-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.domain-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}
.domain-number {
    position: absolute;
    bottom: 1.5rem; right: 2rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.04;
    line-height: 1;
    transition: opacity 0.4s;
}

/* ============================================================ THE VERSE */
.verse {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 8rem 4rem;
    z-index: 1;
}
.verse-visual {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.verse-orb {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(212,175,55,0.15) 0%,
        rgba(212,175,55,0.04) 40%,
        transparent 70%);
    filter: blur(80px);
    animation: orbPulse 10s ease-in-out infinite alternate;
}
@keyframes orbPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}
.verse-rings { position: relative; width: 600px; height: 600px; }
.ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.07);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: ringRotate 30s linear infinite;
}
.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 450px; height: 450px; animation-duration: 45s; animation-direction: reverse; border-color: rgba(212,175,55,0.05); }
.ring-3 { width: 600px; height: 600px; animation-duration: 60s; border-color: rgba(212,175,55,0.03); }
@keyframes ringRotate { 0% { transform: translate(-50%,-50%) rotate(0deg); } 100% { transform: translate(-50%,-50%) rotate(360deg); } }

.verse-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 700px;
}
.verse-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}
.verse-features {
    display: flex; flex-wrap: wrap;
    gap: 0.75rem; justify-content: center;
}
.verse-feat span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.2rem;
    display: block;
}

/* ============================================================ LIVE */
.live-section {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
}
.live-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 2rem 4rem;
}
.live-badge {
    display: flex; align-items: center; gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.live-dot {
    width: 8px; height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: blink 1.2s infinite;
    box-shadow: 0 0 8px rgba(231,76,60,0.6);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.live-sub {
    font-size: 0.75rem;
    color: var(--muted-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}
.live-reel {
    position: relative;
    width: 100%; height: 70vh;
    overflow: hidden;
}
.reel-video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.85);
}
.reel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.6) 0%, transparent 60%);
}
.reel-tag {
    position: absolute; top: 1.5rem; right: 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #e74c3c;
    background: rgba(0,0,0,0.6);
    padding: 0.3rem 0.8rem;
    backdrop-filter: blur(4px);
}

/* ============================================================ WORKS */
.works {
    position: relative; z-index: 1;
    padding: 8rem 4rem;
    border-top: 1px solid var(--border);
}
.works-inner { max-width: 1300px; margin: 0 auto; }
.works-list {
    display: flex; flex-direction: column; gap: 0;
}
.work-item {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    min-height: 75vh;
}
.work-item-reverse { grid-template-columns: 1fr 55%; }
.work-item-reverse .work-media { order: 2; }
.work-item-reverse .work-info { order: 1; }

.work-media {
    position: relative; overflow: hidden;
    background: var(--surface);
}
.work-media video,
.work-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1) saturate(0.85);
    transition: filter 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.work-item:hover .work-media video,
.work-item:hover .work-media img {
    filter: brightness(0.9) contrast(1.05) saturate(1);
    transform: scale(1.03);
}
.work-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5,5,5,0.5);
    opacity: 0;
    transition: opacity 0.4s;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-view {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    border: 1px solid var(--border-gold);
    padding: 0.8rem 1.8rem;
}
.work-info {
    padding: 4rem 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--charcoal);
    border-left: 1px solid var(--border);
}
.work-item-reverse .work-info {
    border-left: none; border-right: 1px solid var(--border);
}
.work-meta-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}
.work-category {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.work-year {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--muted-2);
}
.work-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.work-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.work-tags {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.work-tags span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-2);
    border: 1px solid var(--border);
    padding: 0.35rem 0.8rem;
}

/* ============================================================ TEAM */
.team {
    position: relative; z-index: 1;
    padding: 8rem 4rem;
    background: var(--charcoal);
    border-top: 1px solid var(--border);
}
.team-inner { max-width: 1300px; margin: 0 auto; }

/* Founder */
.team-founder {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border);
}
.founder-visual {
    position: relative;
}
.founder-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--surface) 0%, #1a1a1a 100%);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.founder-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.founder-monogram {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(212,175,55,0.3);
    letter-spacing: 0.1em;
}
.founder-glow {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.founder-credential-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.4rem 0.8rem;
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(4px);
}
.founder-role-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.founder-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.founder-statement {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-gold);
}
.founder-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.founder-areas {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.founder-areas span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 0.8rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}
.team-card {
    background: var(--charcoal);
    padding: 0;
    overflow: hidden;
    cursor: none;
    position: relative;
    transition: background 0.4s;
}
.team-card:hover { background: var(--surface); }
.team-portrait {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--surface) 0%, #1c1c1c 100%);
    overflow: hidden;
}
.portrait-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(212,175,55,0.25);
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}
.team-portrait::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(212,175,55,0.06) 0%, transparent 60%);
    z-index: 0;
}
.team-card:hover .portrait-placeholder { color: rgba(212,175,55,0.4); }
.portrait-frame {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}
.team-card:hover .portrait-frame { transform: scaleX(1); }
.team-info {
    padding: 2rem 1.8rem;
    border-top: 1px solid var(--border);
}
.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}
.team-role {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.team-bio {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.team-skills {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.team-skills span {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    border: 1px solid var(--border);
    padding: 0.25rem 0.6rem;
    transition: color 0.3s, border-color 0.3s;
}
.team-card:hover .team-skills span {
    color: var(--gold);
    border-color: var(--border-gold);
}

/* ============================================================ BUSINESS */
.business {
    position: relative; z-index: 1;
    padding: 8rem 4rem;
    border-top: 1px solid var(--border);
}
.business-inner { max-width: 1300px; margin: 0 auto; }
.business-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 5rem;
}
.pillar {
    position: relative;
    background: var(--black);
    padding: 3.5rem 3rem;
    overflow: hidden;
    transition: background 0.4s;
}
.pillar:hover { background: var(--surface); }
.pillar-featured {
    background: var(--charcoal);
    border-top: 2px solid var(--gold);
}
.pillar-glow {
    position: absolute; top: 0; left: 0; right: 0;
    height: 200px;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08), transparent);
    pointer-events: none;
}
.pillar-icon {
    width: 64px; height: 64px;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 2rem;
    transition: opacity 0.3s;
}
.pillar:hover .pillar-icon { opacity: 1; }
.pillar h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.pillar p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.pillar-list {
    list-style: none;
}
.pillar-list li {
    font-size: 0.82rem;
    color: var(--muted-2);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.8rem;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}
.pillar-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.5rem;
    opacity: 0.5;
    flex-shrink: 0;
}
.investment-cta {
    text-align: center;
}
.investment-cta p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* ============================================================ VISION */
.vision {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 8rem 4rem;
    z-index: 1;
}
.vision-bg {
    position: absolute; inset: 0;
}
.vision-video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.2) contrast(1.2) saturate(0.3);
}
.vision-vignette {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        var(--black) 0%,
        rgba(5,5,5,0.3) 30%,
        rgba(5,5,5,0.3) 70%,
        var(--black) 100%
    );
}
.vision-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 900px;
}
.vision-overline {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
}
.vision-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--white);
}
.vision-manifesto {
    max-width: 500px; margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.vision-manifesto p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 2;
    font-style: italic;
    font-family: var(--font-display);
}

/* ============================================================ CONTACT */
.contact {
    position: relative; z-index: 1;
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 8rem 4rem 0;
}
.contact-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 8rem;
    padding-bottom: 6rem;
}
.contact-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 4rem;
    max-width: 440px;
}
.contact-ways {
    display: flex; flex-direction: column; gap: 2.5rem;
}
.contact-way { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.way-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 0.5rem;
}
.way-link {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    cursor: none;
    transition: color 0.3s;
}
.way-link:hover { color: var(--gold); }
.way-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--muted);
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}
.card-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.contact-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.card-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}
.card-trust {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.card-trust span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--muted-2);
}

/* ============================================================ FOOTER */
.footer {
    max-width: 1300px; margin: 0 auto;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
    display: flex; align-items: center; gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-2);
}
.footer-links {
    display: flex; gap: 2rem;
}
.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-2);
    text-decoration: none;
    cursor: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
    display: flex; align-items: center; gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--muted-2);
}
.footer-status {
    display: flex; align-items: center; gap: 0.5rem;
}
.status-dot-sm {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* ============================================================ ANIMATIONS */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    0% { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
}

.reveal-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-block.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1200px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-founder { grid-template-columns: 280px 1fr; gap: 4rem; }
}
@media (max-width: 1024px) {
    .domains-grid { grid-template-columns: repeat(2, 1fr); }
    .business-pillars { grid-template-columns: 1fr; }
    .work-item, .work-item-reverse { grid-template-columns: 1fr; }
    .work-item-reverse .work-media { order: 0; }
    .work-item-reverse .work-info { order: 0; border-right: none; border-top: 1px solid var(--border); }
    .work-info { border-left: none; border-top: 1px solid var(--border); }
    .work-media { height: 50vw; }
    .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
    .about-inner { grid-template-columns: 1fr; }
    .about-columns { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
    .nav-indicator { display: none; }
    section { padding: 5rem 2rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-divider { display: none; }
    .hero-actions { flex-direction: column; }
    .domains-grid { grid-template-columns: 1fr; }
    .team-founder { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .business-pillars { grid-template-columns: 1fr; }
    .footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .about, .domains, .works, .team, .business, .contact { padding: 5rem 2rem; }
    .live-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; padding: 1.5rem 2rem; }
    .work-info { padding: 2.5rem 2rem; }
}
