/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #050810;
    --bg-primary: #080c1a;
    --bg-secondary: #0b1022;
    --bg-card: rgba(12, 18, 40, 0.6);
    --bg-card-solid: #0e1530;
    --bg-card-hover: rgba(18, 26, 55, 0.8);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(232, 114, 58, 0.2);
    --text-primary: #eaf0ff;
    --text-secondary: #7b8baa;
    --text-muted: #4a5674;
    --accent: #e8723a;
    --accent-hover: #f28a55;
    --accent-glow: rgba(232, 114, 58, 0.4);
    --accent-subtle: rgba(232, 114, 58, 0.08);
    --blue: #60a5fa;
    --purple: #a78bfa;
    --green: #34d399;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== PAGE FRAME (like the reference's inset look) ===== */
.page-frame {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    background: var(--bg-primary);
    min-height: 100vh;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 0;
}

@media (min-width: 1500px) {
    .page-frame {
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 20px;
        overflow: hidden;
    }
    body {
        background: #020408;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(232, 114, 58, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.gradient-text,
.hero-gradient-text {
    background: linear-gradient(135deg, var(--accent), #f5a060, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #c85a2a 100%);
    color: #fff;
    box-shadow:
        0 0 20px var(--accent-glow),
        0 4px 15px rgba(232, 114, 58, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    box-shadow:
        0 0 35px var(--accent-glow),
        0 8px 25px rgba(232, 114, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(8, 12, 26, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), #c85a2a);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(232, 114, 58, 0.3);
}

.logo-glow {
    position: absolute;
    inset: -4px;
    background: var(--accent);
    border-radius: 14px;
    opacity: 0.15;
    filter: blur(8px);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 5px 6px;
    backdrop-filter: blur(10px);
}

.nav-links a {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.25s;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--accent), #c85a2a);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(232, 114, 58, 0.2);
}

.nav-links .nav-cta:hover {
    box-shadow: 0 0 20px rgba(232, 114, 58, 0.35);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Multiple layered glows like the reference */
.hero-glow-1 {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(232, 114, 58, 0.1) 0%, rgba(232, 114, 58, 0.03) 40%, transparent 70%);
    border-radius: 50%;
}

.hero-glow-2 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-3 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,0,0,0.4) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,0,0,0.4) 0%, transparent 100%);
}

/* Particle dots */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

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

/* Hero layout - two columns like reference */
.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 0;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 36px;
}

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

/* ===== HERO ORB VISUAL (right side) ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-orb {
    position: relative;
    width: 400px;
    height: 400px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(232, 114, 58, 0.6) 0%, rgba(232, 114, 58, 0.1) 60%, transparent 100%);
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(232, 114, 58, 0.4),
        0 0 120px rgba(232, 114, 58, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.orb-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(232, 114, 58, 0.3);
    animation: orbPulse 3s ease-out infinite;
}

@keyframes orbPulse {
    0% { width: 80px; height: 80px; opacity: 0.6; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid;
}

.orb-ring-1 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(0deg);
    border-color: rgba(232, 114, 58, 0.15);
    animation: spin 20s linear infinite;
}

.orb-ring-2 {
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%) rotate(0deg);
    border-color: rgba(96, 165, 250, 0.1);
    animation: spin 30s linear infinite reverse;
}

.orb-ring-3 {
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%) rotate(0deg);
    border-color: rgba(167, 139, 250, 0.07);
    animation: spin 40s linear infinite;
    border-style: dashed;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Connection lines SVG */
.orb-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.conn-line {
    stroke: rgba(232, 114, 58, 0.12);
    stroke-width: 1;
    stroke-dasharray: 4 4;
    animation: dashMove 3s linear infinite;
}

.conn-line-dim {
    stroke: rgba(96, 165, 250, 0.06);
    stroke-dasharray: 2 6;
}

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

/* Agent nodes */
.orb-node {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: nodeFloat 4s ease-in-out infinite;
}

.orb-node span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.node-1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(232, 114, 58, 0.15);
    border-color: rgba(232, 114, 58, 0.25);
    animation-delay: 0s;
}

.node-2 {
    top: 28%;
    right: 2%;
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.25);
    animation-delay: 0.8s;
}

.node-3 {
    bottom: 10%;
    right: 12%;
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.25);
    animation-delay: 1.6s;
}

.node-4 {
    bottom: 10%;
    left: 12%;
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.25);
    animation-delay: 2.4s;
}

.node-5 {
    top: 28%;
    left: 2%;
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.25);
    animation-delay: 3.2s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.node-1 { animation-name: nodeFloat1; }
@keyframes nodeFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== HERO FOCUS CARDS (bottom of hero, like reference) ===== */
.hero-focus {
    position: relative;
    z-index: 1;
    padding: 40px 0 60px;
}

.focus-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.focus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.focus-card {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
}

.focus-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.focus-card-visual {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.focus-mini-orb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orb-color) 0%, transparent 70%);
    opacity: 0.6;
    animation: miniPulse 3s ease-in-out infinite;
}

@keyframes miniPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.focus-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.focus-card-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.focus-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.focus-dot.live {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: dotPulse 2s ease-in-out infinite;
}

.focus-dot.building {
    background: var(--blue);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
    animation: dotPulse 2s ease-in-out infinite 0.5s;
}

.focus-dot.upcoming {
    background: var(--text-muted);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.focus-card-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.focus-card-body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* ===== CARD EFFECTS (used across sections) ===== */
.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(232, 114, 58, 0.1), transparent 50%, rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(1px);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

/* ===== MISSION ===== */
.mission {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 114, 58, 0.03) 0%, transparent 60%),
        var(--bg-secondary);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mission-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mission-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
}

.mission-card:hover .card-glow { opacity: 1; }
.mission-card:hover .card-shine { left: 100%; }

.mission-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border: 1px solid rgba(232, 114, 58, 0.15);
    border-radius: 14px;
    color: var(--accent);
    margin-bottom: 24px;
}

.mission-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.mission-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== PROGRESS TRACKER ===== */
.progress {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.03) 0%, transparent 60%),
        var(--bg-primary);
}

/* Overall Progress */
.overall-progress {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
    margin-bottom: 48px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

.progress-percent {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #f5a060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #f5a060);
    border-radius: 12px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.6;
}

.progress-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.progress-note {
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green), var(--accent), var(--border));
}

.timeline-phase {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-phase:last-child { margin-bottom: 0; }

.phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.phase-badge {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

.phase-badge.completed {
    border-color: var(--green);
    background: rgba(52, 211, 153, 0.15);
}
.phase-badge.completed::after {
    content: '';
    width: 14px;
    height: 8px;
    border-left: 2.5px solid var(--green);
    border-bottom: 2.5px solid var(--green);
    transform: rotate(-45deg) translateY(-1px);
}

.phase-badge.active {
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}
.phase-badge.active::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.phase-badge.upcoming {
    border-color: var(--border-light);
}
.phase-badge.upcoming::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--border-light);
    border-radius: 50%;
}

.phase-header-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.phase-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.phase-label {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 8px;
}

.label-complete { background: rgba(52, 211, 153, 0.1); color: var(--green); }
.label-active { background: var(--accent-subtle); color: var(--accent); }
.label-upcoming { background: rgba(255, 255, 255, 0.03); color: var(--text-muted); }

.phase-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.25s;
}

.phase-item:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.phase-active .phase-item {
    border-color: rgba(232, 114, 58, 0.08);
}

.item-status {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 1px;
    border: 2px solid;
    position: relative;
}

.phase-item.done .item-status {
    background: var(--green);
    border-color: var(--green);
}
.phase-item.done .item-status::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.phase-item.in-progress .item-status {
    border-color: var(--accent);
}
.phase-item.in-progress .item-status::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dotPulse 2s infinite;
}

.phase-item.pending .item-status {
    border-color: var(--border-light);
}

.item-content h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.item-content p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== VERTICALS ===== */
.verticals {
    background:
        radial-gradient(ellipse at 70% 80%, rgba(167, 139, 250, 0.03) 0%, transparent 60%),
        var(--bg-secondary);
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vertical-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vertical-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
}

.vertical-card:hover .card-glow { opacity: 1; }
.vertical-card:hover .card-shine { left: 100%; }

.vertical-card.active-vertical {
    border-color: rgba(232, 114, 58, 0.15);
    background:
        linear-gradient(135deg, rgba(232, 114, 58, 0.04), transparent 60%),
        var(--bg-card);
}

.vertical-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vertical-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-muted);
}

.active-vertical .vertical-icon {
    color: var(--accent);
    background: var(--accent-subtle);
    border-color: rgba(232, 114, 58, 0.15);
}

.vertical-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
}

.status-active { background: var(--accent-subtle); color: var(--accent); }
.status-dev { background: rgba(96, 165, 250, 0.08); color: var(--blue); }
.status-planned { background: rgba(255, 255, 255, 0.03); color: var(--text-muted); }

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.live {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
    animation: dotPulse 2s infinite;
}

.status-dot.building {
    background: var(--blue);
    box-shadow: 0 0 6px rgba(96, 165, 250, 0.4);
    animation: dotPulse 2s infinite;
}

.status-dot.upcoming {
    background: var(--text-muted);
}

.vertical-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.vertical-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== BLOG ===== */
.blog {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(232, 114, 58, 0.02) 0%, transparent 50%),
        var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blog-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
}

.blog-card:hover .card-glow { opacity: 1; }
.blog-card:hover .card-shine { left: 100%; }

.blog-card.featured {
    grid-column: span 2;
    background:
        linear-gradient(135deg, rgba(232, 114, 58, 0.04), transparent 60%),
        var(--bg-card);
    border-color: rgba(232, 114, 58, 0.12);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-card-tag {
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
}

.tag-featured { background: var(--accent-subtle); color: var(--accent); }
.tag-tech { background: rgba(96, 165, 250, 0.1); color: var(--blue); }
.tag-arch { background: rgba(167, 139, 250, 0.1); color: var(--purple); }
.tag-vision { background: rgba(52, 211, 153, 0.1); color: var(--green); }

.blog-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.25s;
}

.blog-link:hover {
    color: var(--accent-hover);
    gap: 10px;
}

.blog-coming-soon {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 500;
    cursor: default;
}

.blog-coming-soon:hover {
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-secondary);
}

.cta-box {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(232, 114, 58, 0.06), transparent 40%, rgba(96, 165, 250, 0.03)),
        var(--bg-card);
    border: 1px solid rgba(232, 114, 58, 0.12);
    border-radius: 24px;
    padding: 72px 60px;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 114, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

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

/* ===== RESEARCH OBJECTIVES ===== */
.research-objectives {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 114, 58, 0.04) 0%, transparent 50%),
        var(--bg-primary);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.objective-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.objective-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.objective-number {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, rgba(232, 114, 58, 0.3), rgba(232, 114, 58, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.objective-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.objective-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== METHODOLOGY ===== */
.methodology {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(96, 165, 250, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

.methodology-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    position: relative;
}

.method-step:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.method-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--accent-subtle);
    border: 1px solid rgba(232, 114, 58, 0.15);
    color: var(--accent);
}

.method-step-content {
    flex: 1;
}

.method-step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.method-step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 600px;
}

.method-step-connector {
    display: none;
}

/* ===== PUBLICATIONS ===== */
.publications {
    background:
        radial-gradient(ellipse at 60% 30%, rgba(167, 139, 250, 0.03) 0%, transparent 50%),
        var(--bg-secondary);
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pub-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 32px;
    transition: all 0.3s;
}

.pub-card:hover {
    border-color: var(--border-light);
}

.pub-type {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
    background: var(--accent-subtle);
    color: var(--accent);
    margin-bottom: 14px;
}

.pub-type-prep {
    background: rgba(167, 139, 250, 0.1);
    color: var(--purple);
}

.pub-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.pub-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pub-authors {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pub-venue {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

.pub-abstract {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== FOOTER EMAIL ===== */
.footer-email {
    color: var(--accent) !important;
    font-size: 0.85rem;
    margin-top: 6px !important;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .focus-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .mission-cards {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .vertical-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .stats-inner {
        gap: 24px;
        flex-wrap: wrap;
    }

    .cta-box {
        padding: 48px 28px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        background: rgba(14, 21, 48, 0.95);
        backdrop-filter: blur(24px);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 12px;
        gap: 4px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        text-align: center;
        justify-content: center;
    }

    .section {
        padding: 80px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .footer-links {
        gap: 48px;
    }

    .timeline-phase {
        padding-left: 48px;
    }

    .stat-divider { display: none; }
}
