/* ═══════════════════════════════════════════════════════════════
   SUITE HOMEPAGE - Premium Dark Theme
   Architecture for AI that serves humanity
   ═══════════════════════════════════════════════════════════════ */

/* === CSS VARIABLES === */
:root {
    /* Dark Premium Palette */
    --bg-deep: #0a0a0f;
    --bg-elevated: #12121a;
    --bg-surface: #1a1a28;
    --bg-surface-hover: #22222e;

    /* Warm Human Accents */
    --accent-warm: #ff8c42;
    --accent-amber: #fbbf24;
    --accent-coral: #ff6b6b;
    --accent-purple: #a855f7;

    /* Text */
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);

    /* Glow Effects */
    --glow-warm: rgba(255, 140, 66, 0.4);
    --glow-amber: rgba(251, 191, 36, 0.3);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Spacing */
    --section-gap: 120px;
    --content-max: 1200px;
}

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 20%, rgba(255, 140, 66, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 500px at 80% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 60% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: ambientFloat 20s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 20px) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translate(20px, -10px) scale(0.95);
        opacity: 0.9;
    }
}

/* Ensure all content is above the ambient background */
nav, section, footer, .container {
    position: relative;
    z-index: 1;
}

/* === TYPOGRAPHY === */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === LAYOUT UTILITIES === */
.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

/* === GLASS CARD BASE === */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-coral));
    color: white;
    box-shadow: 0 8px 32px var(--glow-warm);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--glow-warm);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--accent-warm);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - Orbital Animation
   ═══════════════════════════════════════════════════════════════ */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text .lead {
    margin-left: 0;
    margin-bottom: 32px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.metric {
    text-align: left;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-warm);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Orbital Animation Container */
.orbital-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.orbital-center img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

/* Orbital Rings */
.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbital-ring-1 {
    width: 220px;
    height: 220px;
    animation: orbitRotate 40s linear infinite;
}

.orbital-ring-2 {
    width: 340px;
    height: 340px;
    animation: orbitRotate 55s linear infinite reverse;
}

.orbital-ring-3 {
    width: 440px;
    height: 440px;
    border-style: dashed;
    opacity: 0.5;
    animation: orbitRotate 70s linear infinite;
}

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

/* Counter-rotation to keep icons upright + wobble */
@keyframes counterRotate1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

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

@keyframes iconWobble {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
    50% { transform: translate(-50%, -50%) rotate(5deg); }
}

/* Orbiting Agent Nodes */
.orbital-node {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 2px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Counter-rotate icons to stay upright */
.orbital-ring-1 .orbital-node {
    animation: counterRotate1 40s linear infinite, iconWobble 4s ease-in-out infinite;
}

.orbital-ring-2 .orbital-node {
    animation: counterRotate2 55s linear infinite, iconWobble 5s ease-in-out infinite;
}

.orbital-node:hover {
    box-shadow: 0 8px 32px var(--glow-warm);
    border-color: var(--accent-warm);
    z-index: 20;
}

.orbital-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Position nodes around circle using transform-origin trick */
/* Ring 1: 4 icons at 0°, 90°, 180°, 270° */
.orbital-ring-1 .pos-0 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbital-ring-1 .pos-90 { top: 50%; right: 0; transform: translate(50%, -50%); }
.orbital-ring-1 .pos-180 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.orbital-ring-1 .pos-270 { top: 50%; left: 0; transform: translate(-50%, -50%); }

/* Ring 2: 6 icons at 0°, 60°, 120°, 180°, 240°, 300° */
.orbital-ring-2 .pos-0 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbital-ring-2 .pos-60 { top: 25%; right: 6.7%; transform: translate(50%, -50%); }
.orbital-ring-2 .pos-120 { bottom: 25%; right: 6.7%; transform: translate(50%, 50%); }
.orbital-ring-2 .pos-180 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.orbital-ring-2 .pos-240 { bottom: 25%; left: 6.7%; transform: translate(-50%, 50%); }
.orbital-ring-2 .pos-300 { top: 25%; left: 6.7%; transform: translate(-50%, -50%); }

/* Human Photo Touchpoints */
.orbital-photo {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-warm);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.orbital-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-1 { top: 10%; right: 5%; }
.photo-2 { bottom: 20%; right: 10%; }
.photo-3 { bottom: 10%; left: 15%; }
.photo-4 { top: 25%; left: 5%; }

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .lead {
        margin-left: auto;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .orbital-container {
        width: 400px;
        height: 400px;
    }

    .orbital-ring-1 { width: 180px; height: 180px; }
    .orbital-ring-2 { width: 280px; height: 280px; }
    .orbital-ring-3 { width: 360px; height: 360px; }

    .orbital-node {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .hero-premium {
        padding: 100px 16px 60px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .metric {
        text-align: center;
    }

    .orbital-container {
        width: 280px;
        height: 280px;
    }

    .orbital-center {
        width: 70px;
        height: 70px;
    }

    .orbital-center img {
        width: 45px;
        height: 45px;
    }

    .orbital-ring-1 { width: 130px; height: 130px; }
    .orbital-ring-2 { width: 200px; height: 200px; }
    .orbital-ring-3 { width: 260px; height: 260px; }

    .orbital-node {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .orbital-node img {
        border-radius: 4px;
    }

    .orbital-photo {
        width: 48px;
        height: 48px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HUMAN OUTCOMES SECTION
   ═══════════════════════════════════════════════════════════════ */
.outcomes-section {
    padding: var(--section-gap) 24px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.outcome-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.outcome-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.outcome-card:hover .outcome-card-bg {
    transform: scale(1.05);
}

.outcome-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.outcome-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.outcome-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: white;
}

.outcome-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.outcome-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--accent-warm);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.outcome-app-badge:hover {
    background: var(--accent-warm);
    color: white;
}

.outcome-app-badge img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

/* Secondary outcomes row */
.outcomes-secondary {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.outcome-mini:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.outcome-mini img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.outcome-mini span {
    font-weight: 600;
    color: var(--text-primary);
}

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

    .outcome-card {
        height: 280px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LIVING SYSTEM SECTION (AI Fleet)
   ═══════════════════════════════════════════════════════════════ */
.living-system-section {
    padding: var(--section-gap) 24px;
    background: var(--bg-elevated);
}

.system-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.system-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.system-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.system-card-label {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-coral));
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.system-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.system-card-icon img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
}

.system-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.system-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Countdown Styling */
.countdown-premium {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.time-unit-premium {
    background: var(--bg-deep);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    min-width: 60px;
}

.time-unit-premium span {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-warm);
    line-height: 1;
}

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

/* ═══════════════════════════════════════════════════════════════
   ARCHITECTURE SECTION (Philosophy)
   ═══════════════════════════════════════════════════════════════ */
.architecture-section {
    padding: var(--section-gap) 24px;
    position: relative;
}

.architecture-content {
    max-width: 900px;
    margin: 0 auto;
}

.architecture-philosophy {
    text-align: center;
    margin-bottom: 60px;
}

.architecture-philosophy p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.principle-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--accent-warm);
    transform: translateY(-4px);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.principle-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Robot Images */
.robots-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.robot-image {
    position: relative;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.robot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.robot-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, transparent 60%);
}

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

    .robots-gallery {
        grid-template-columns: 1fr;
    }

    .robot-image {
        height: 200px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ACTIVE AGENTS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.agents-section {
    padding: var(--section-gap) 0;
}

.agents-section .section-header {
    padding: 0 24px;
}

.apps-carousel-wrapper-premium {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.apps-carousel-premium,
.apps-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: carousel-scroll 35s linear infinite;
    width: max-content;
}

.apps-carousel-premium:hover,
.apps-carousel:hover {
    animation-play-state: paused;
    cursor: grab;
}

.carousel-card-premium,
.carousel-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-card-premium:hover,
.carousel-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
}

.carousel-card-premium .card-header,
.carousel-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.carousel-card-premium .card-icon,
.carousel-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--bg-surface);
}

.carousel-card-premium .card-icon img,
.carousel-card .card-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.carousel-card-premium .card-info h3,
.carousel-card .card-info h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.carousel-card-premium .card-info p,
.carousel-card .card-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-card-premium .card-tagline,
.carousel-card .card-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Dragging state */
.apps-carousel.dragging {
    animation: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats-section {
    padding: 80px 24px;
    background: var(--bg-elevated);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .stats-grid {
        gap: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ROADMAP SECTION
   ═══════════════════════════════════════════════════════════════ */
.roadmap-section {
    padding: var(--section-gap) 24px;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.roadmap-card.complete {
    border-left: 4px solid #22c55e;
}

.roadmap-card.in-progress {
    border-left: 4px solid var(--accent-warm);
}

.roadmap-card.upcoming {
    border-left: 4px solid var(--text-muted);
    opacity: 0.7;
}

.roadmap-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.roadmap-card.complete .roadmap-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.roadmap-card.in-progress .roadmap-badge {
    background: rgba(255, 140, 66, 0.15);
    color: var(--accent-warm);
}

.roadmap-card.upcoming .roadmap-badge {
    background: rgba(113, 113, 122, 0.15);
    color: var(--text-muted);
}

.roadmap-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.roadmap-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}

.roadmap-card.complete li::before {
    background: #22c55e;
}

.roadmap-card.in-progress li::before {
    background: var(--accent-warm);
}

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

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-premium {
    padding: 80px 24px 40px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--content-max);
    margin: 0 auto 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-brand .logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-column h5 {
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent-warm);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: var(--content-max);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   APP MODAL
   ═══════════════════════════════════════════════════════════════ */
.app-expand-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.app-expand-modal.open {
    display: flex;
}

.app-expand-content {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.expand-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.expand-close:hover {
    color: var(--text-primary);
}

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

.expand-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--bg-elevated);
}

.expand-icon img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.expand-title h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.expand-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.expand-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.expand-actions {
    display: flex;
    gap: 12px;
}

.expand-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.expand-btn.primary {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-coral));
    color: white;
}

.expand-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-warm);
}

.expand-btn.secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.expand-btn.secondary:hover {
    background: var(--glass-bg-hover);
}

@media (max-width: 480px) {
    .app-expand-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .app-expand-content {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .expand-actions {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NAV OVERRIDE - Dark Premium Theme
   ═══════════════════════════════════════════════════════════════ */
.nav {
    transition: transform 0.3s ease;
}

.nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    background: rgba(18, 18, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.nav-logo {
    color: var(--text-primary) !important;
}

.nav-links a {
    color: var(--text-secondary) !important;
}

.nav-links a:hover {
    background: rgba(255, 140, 66, 0.15) !important;
    color: var(--accent-warm) !important;
}

.nav-links a.active {
    background: var(--accent-warm) !important;
    color: white !important;
}

.nav-dropdown-trigger {
    color: var(--text-secondary) !important;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
    background: rgba(255, 140, 66, 0.15) !important;
    color: var(--accent-warm) !important;
}

.nav-dropdown-menu {
    background: rgba(18, 18, 26, 0.98) !important;
    border: 1px solid var(--glass-border);
}

.nav-dropdown-menu a {
    color: var(--text-secondary) !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 140, 66, 0.1) !important;
    color: var(--accent-warm) !important;
}

.nav-wallet {
    background: var(--glass-bg) !important;
    color: var(--text-secondary) !important;
    border-color: var(--glass-border) !important;
}

.nav-wallet:hover {
    background: var(--accent-warm) !important;
    color: white !important;
    border-color: var(--accent-warm) !important;
}

.nav-actions .connect-btn {
    background: var(--accent-warm) !important;
}

.mobile-menu-btn span {
    background: var(--text-primary) !important;
}

@media (max-width: 768px) {
    .nav-links.mobile-open {
        background: rgba(18, 18, 26, 0.98) !important;
        border: 1px solid var(--glass-border);
    }

    .nav-links.mobile-open a:hover {
        background: var(--accent-warm) !important;
        color: white !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   SMALL SCREEN OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root {
        --section-gap: 80px;
    }

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

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

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

/* ═══════════════════════════════════════════════════════════════
   NEW SIMPLIFIED HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Hero Simple - Clean, Centered */
.hero-simple {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-simple-content {
    max-width: 700px;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.2);
}

.hero-simple h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 48px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Mega Glow Button - Attention Grabbing */
.btn-glow-mega {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-coral));
    color: white;
    padding: 20px 56px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 100px;
    box-shadow:
        0 0 30px rgba(255, 140, 66, 0.5),
        0 0 60px rgba(255, 140, 66, 0.3),
        0 0 100px rgba(255, 140, 66, 0.2);
    animation: mega-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-glow-mega:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 0 40px rgba(255, 140, 66, 0.6),
        0 0 80px rgba(255, 140, 66, 0.4),
        0 0 120px rgba(255, 140, 66, 0.3);
}

@keyframes mega-pulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 140, 66, 0.5),
            0 0 60px rgba(255, 140, 66, 0.3),
            0 0 100px rgba(255, 140, 66, 0.2);
    }
    50% {
        box-shadow:
            0 0 40px rgba(255, 140, 66, 0.6),
            0 0 80px rgba(255, 140, 66, 0.4),
            0 0 120px rgba(255, 140, 66, 0.25);
    }
}

.hero-learn-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.hero-learn-link:hover {
    color: var(--accent-warm);
    border-bottom-color: var(--accent-warm);
}

/* What is SUITE Section */
.what-is-suite-section {
    padding: 100px 24px 120px;
}

.suite-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.suite-point {
    text-align: center;
    padding: 40px 24px;
}

.suite-point-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--accent-warm);
}

.suite-point h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.suite-point p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .suite-points {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .suite-point {
        padding: 32px 16px;
    }
}

/* Who Is This For Section */
.who-section {
    padding: 80px 24px 120px;
    background: var(--bg-elevated);
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-cards.two-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
}

.who-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--accent-warm);
    transform: translateY(-8px);
}

.who-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    color: var(--accent-warm);
}

.who-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.who-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.who-card-cta {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.who-card:hover .who-card-cta {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    color: white;
}

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

/* Simple Footer */
.footer-simple {
    padding: 60px 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-simple-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-simple-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-simple-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-simple-links a:hover {
    color: var(--accent-warm);
}

.footer-simple-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .footer-simple-links {
        gap: 20px;
    }

    .hero-simple {
        padding: 100px 20px 60px;
    }

    .hero-logo img {
        width: 80px;
        height: 80px;
    }

    .btn-glow-mega {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}
