@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-color: #080a10;
    --primary: #5865F2;
    --accent-teal: #00f2fe;
    --accent-purple: #9b51e0;
    --accent-pink: #ff007f;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Claymorphism core variables */
    --clay-card-bg: #121625;
    --clay-btn-blue: #5865F2;
    --clay-dark-inset: rgba(0, 0, 0, 0.55);
    --clay-light-inset: rgba(255, 255, 255, 0.1);
    
    --transition-premium: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 3D Moving Clay Orbs in Background */
.aurora-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2;
    background-color: var(--bg-color);
    overflow: hidden;
}

.noise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    width: 60vw; height: 60vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    mix-blend-mode: screen;
    transition: transform 10s ease-in-out;
}

.orb-1 {
    background: radial-gradient(circle, rgba(0, 242, 254, 0.5) 0%, transparent 70%);
    top: -20%; left: -10%;
    animation: drift 25s infinite alternate ease-in-out;
}
.orb-2 {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.4) 0%, transparent 70%);
    bottom: -20%; right: -10%;
    animation: drift 30s infinite alternate-reverse ease-in-out;
}
.orb-3 {
    background: radial-gradient(circle, rgba(255, 0, 127, 0.3) 0%, transparent 70%);
    top: 30%; right: -20%;
    animation: drift 22s infinite alternate ease-in-out;
}
.orb-4 {
    background: radial-gradient(circle, rgba(155, 81, 224, 0.4) 0%, transparent 70%);
    bottom: -10%; left: -10%;
    animation: drift 28s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(8vw, 12vh) scale(1.15) rotate(180deg); }
    100% { transform: translate(-5vw, -8vh) scale(0.9) rotate(360deg); }
}

/* Floating header as a volumetric clay pill */
#smart-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: 72px;
    background: #141829;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    z-index: 1000;
    transition: var(--transition-premium);
    box-shadow: 
        10px 14px 28px rgba(0, 0, 0, 0.55),
        inset -4px -4px 10px rgba(0, 0, 0, 0.45),
        inset 4px 4px 10px rgba(255, 255, 255, 0.05);
}

#smart-header.scrolled {
    width: 82%;
    height: 64px;
    top: 16px;
    background: #12161f;
    box-shadow: 
        10px 16px 36px rgba(0, 0, 0, 0.7),
        inset -5px -5px 12px rgba(0, 0, 0, 0.55),
        inset 5px 5px 12px rgba(255, 255, 255, 0.07);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    transition: var(--transition-premium);
}

.logo:hover {
    transform: scale(1.06);
}

.logo span {
    background: linear-gradient(135deg, #00f2fe, #5865F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.desktop-nav {
    display: flex;
    gap: 36px;
    background: rgba(8, 10, 18, 0.5);
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.4),
        inset -2px -2px 5px rgba(255, 255, 255, 0.04);
}

.desktop-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-premium);
}

.desktop-nav a:hover {
    color: white;
    transform: scale(1.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-theme-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.05);
    transition: var(--transition-premium);
}

.btn-theme-toggle:hover {
    color: white;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.07);
}

.btn-signin {
    color: white;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 20px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
    transition: var(--transition-premium);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 
        6px 8px 12px rgba(0, 0, 0, 0.4),
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.08);
}

.btn-signin:active {
    transform: scale(0.96) translateY(1px);
}

.btn-discord {
    color: white;
    background: var(--primary);
    padding: 10px 22px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        5px 6px 12px rgba(88, 101, 242, 0.3),
        inset -4px -4px 8px rgba(0, 0, 0, 0.5),
        inset 4px 4px 8px rgba(255, 255, 255, 0.25);
    transition: var(--transition-premium);
}

.btn-discord:hover {
    background: #6c79ff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        6px 8px 16px rgba(88, 101, 242, 0.45),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.btn-discord:active {
    transform: scale(0.96) translateY(1px);
}

/* Volumetric Clay Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 32px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 
        8px 10px 20px rgba(88, 101, 242, 0.35),
        inset -6px -6px 12px rgba(0, 0, 0, 0.5),
        inset 6px 6px 12px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        10px 14px 28px rgba(88, 101, 242, 0.5),
        inset -4px -4px 10px rgba(0, 0, 0, 0.4),
        inset 4px 4px 10px rgba(255, 255, 255, 0.45);
}

.btn-primary:active {
    transform: scale(0.96) translateY(2px);
    box-shadow: 
        4px 6px 12px rgba(88, 101, 242, 0.3),
        inset -8px -8px 14px rgba(0, 0, 0, 0.6),
        inset 2px 2px 6px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: rgba(22, 25, 41, 0.7);
    color: white;
    box-shadow: 
        8px 10px 20px rgba(0, 0, 0, 0.4),
        inset -5px -5px 12px rgba(0, 0, 0, 0.55),
        inset 5px 5px 12px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    background: rgba(26, 30, 48, 0.85);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        10px 14px 28px rgba(0, 0, 0, 0.5),
        inset -4px -4px 10px rgba(0, 0, 0, 0.45),
        inset 4px 4px 10px rgba(255, 255, 255, 0.12);
}

.btn-outline:active {
    transform: scale(0.96) translateY(2px);
    box-shadow: 
        4px 6px 12px rgba(0, 0, 0, 0.35),
        inset -8px -8px 14px rgba(0, 0, 0, 0.65),
        inset 2px 2px 6px rgba(255, 255, 255, 0.05);
}

/* Immersive Hero Section */
.hero-immersive {
    padding: 200px 5% 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Puffy Volumetric 3D Medallion Avatar Ring */
.avatar-glow-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    top: -12px; left: -12px; right: -12px; bottom: -12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary), var(--accent-pink), var(--accent-teal));
    background-size: 300% 300%;
    animation: rotateGlow 8s linear infinite;
    box-shadow: 
        12px 16px 32px rgba(0, 0, 0, 0.65),
        inset -8px -8px 16px rgba(0, 0, 0, 0.6),
        inset 8px 8px 16px rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.glow-ring::after {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    background: var(--bg-color);
    border-radius: 50%;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.hero-avatar {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    position: relative;
    border: none;
    box-shadow: 
        inset -6px -6px 12px rgba(0, 0, 0, 0.7),
        inset 6px 6px 12px rgba(255, 255, 255, 0.2),
        6px 8px 20px rgba(0, 0, 0, 0.7);
}

.sparkle {
    position: absolute;
    color: #60a5fa;
    font-size: 1.5rem;
    z-index: 4;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.8));
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sp-1 { top: 8%; left: -6%; animation-delay: 0s; }
.sp-2 { bottom: 12%; right: -6%; animation-delay: 1.3s; }
.sp-3 { top: 45%; right: -12%; animation-delay: 2.7s; }

@keyframes rotateGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(0.9); opacity: 0.4; }
    50% { transform: translateY(-12px) scale(1.3); opacity: 1; }
}

.hero-content {
    max-width: 850px;
    z-index: 10;
}

/* Volumetric Clay Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(18, 22, 37, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 
        5px 6px 12px rgba(0, 0, 0, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.08);
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

/* Beautiful Bouncy 3D Typographic Headers */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
    color: white;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.5),
        4px 4px 0px rgba(0, 0, 0, 0.3),
        8px 12px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-teal), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 44px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-ctas {
    display: flex;
    gap: 24px;
    justify-content: center;
}

/* Scrolling Server Ticker Section - Volumetric Clay Plates */
.ticker-section {
    padding: 100px 0 80px 0;
    background: #0b0e1a;
    border-radius: 50px;
    margin: 0 4%;
    box-shadow: 
        15px 20px 45px rgba(0, 0, 0, 0.6),
        inset -8px -8px 20px rgba(0, 0, 0, 0.65),
        inset 8px 8px 20px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    text-align: center;
}

.ticker-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ticker-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 600;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; width: 220px; height: 100%;
    z-index: 5;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0b0e1a, transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0b0e1a, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    gap: 28px;
    padding-right: 28px;
    animation: scrollMarquee 35s linear infinite;
}

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

/* Ticker cards as gorgeous bouncy clay pills */
.ticker-card {
    background: #141829;
    border-radius: 28px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 270px;
    transition: var(--transition-premium);
    box-shadow: 
        6px 8px 16px rgba(0, 0, 0, 0.45),
        inset -4px -4px 10px rgba(0, 0, 0, 0.5),
        inset 4px 4px 10px rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.ticker-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 
        10px 16px 28px rgba(0, 0, 0, 0.55),
        inset -2px -2px 6px rgba(0, 0, 0, 0.35),
        inset 2px 2px 6px rgba(255, 255, 255, 0.12);
}

.ticker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    overflow: hidden;
    box-shadow: 
        3px 4px 8px rgba(0, 0, 0, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5),
        inset 2px 2px 5px rgba(255, 255, 255, 0.25);
}

.ticker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ta-1 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.ta-2 { background: linear-gradient(135deg, #10b981, #047857); }
.ta-3 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.ta-4 { background: linear-gradient(135deg, #ec4899, #be185d); }
.ta-5 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.ta-6 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.ta-7 { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.ta-8 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.ta-9 { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.ta-10 { background: linear-gradient(135deg, #f43f5e, #be123c); }

.ticker-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ticker-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.ticker-members {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Feature Showcase Split Layout */
.showcase-section {
    padding: 140px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.showcase-info-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f97316;
    border-radius: 24px;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 
        5px 6px 12px rgba(249, 115, 22, 0.3),
        inset -4px -4px 8px rgba(0, 0, 0, 0.45),
        inset 4px 4px 8px rgba(255, 255, 255, 0.35);
    transition: var(--transition-premium);
}

.feature-badge.personalities {
    background: #8b5cf6;
    box-shadow: 
        5px 6px 12px rgba(139, 92, 246, 0.3),
        inset -4px -4px 8px rgba(0, 0, 0, 0.45),
        inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.feature-badge.automod {
    background: #10b981;
    box-shadow: 
        5px 6px 12px rgba(16, 185, 129, 0.3),
        inset -4px -4px 8px rgba(0, 0, 0, 0.45),
        inset 4px 4px 8px rgba(255, 255, 255, 0.35);
}

.showcase-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.35;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    min-height: 140px;
    transition: opacity 0.3s ease;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.showcase-link {
    color: white;
    background: rgba(18, 22, 37, 0.7);
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 44px;
    box-shadow: 
        4px 6px 12px rgba(0, 0, 0, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.45),
        inset 3px 3px 6px rgba(255, 255, 255, 0.08);
    transition: var(--transition-premium);
}

.showcase-link i {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.showcase-link:hover {
    color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 
        6px 8px 16px rgba(0, 0, 0, 0.45),
        inset -2px -2px 4px rgba(0, 0, 0, 0.35),
        inset 2px 2px 4px rgba(255, 255, 255, 0.12);
}

.showcase-link:hover i {
    transform: translateX(4px);
}

.showcase-selectors {
    display: flex;
    gap: 16px;
    width: 100%;
}

.selector-bar {
    flex: 1;
    height: 10px;
    background: rgba(8, 10, 18, 0.6);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 1px 2px 3px rgba(0, 0, 0, 0.6),
        inset -1px -2px 3px rgba(255, 255, 255, 0.04);
}

.selector-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0; width: 0;
    background: #f97316;
    border-radius: 5px;
    transition: width 0.3s ease;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.3);
}

.selector-bar[data-feature="personalities"] .selector-fill {
    background: #8b5cf6;
}

.selector-bar[data-feature="automod"] .selector-fill {
    background: #10b981;
}

.selector-bar.active .selector-fill {
    width: 100%;
}

.showcase-visual-side {
    position: relative;
    width: 100%;
}

.showcase-card-glow {
    position: absolute;
    top: -40px; left: -40px; right: -40px; bottom: -40px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    transition: background 0.6s ease;
}

/* Showcase Tablet Card styled as thick 3D clay */
.showcase-card {
    position: relative;
    z-index: 2;
    background: #121524;
    border: none;
    border-radius: 36px;
    box-shadow: 
        15px 20px 45px rgba(0, 0, 0, 0.55),
        inset -8px -8px 20px rgba(0, 0, 0, 0.6),
        inset 8px 8px 20px rgba(255, 255, 255, 0.08);
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    transition: var(--transition-premium);
}

.showcase-card-header {
    height: 58px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.showcase-card-dots {
    display: flex;
    gap: 8px;
}

.showcase-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 
        inset 1px 1px 2px rgba(0,0,0,0.6),
        1px 1px 2px rgba(255,255,255,0.06);
}

.showcase-card-dots span:nth-child(1) { background: #ef4444; }
.showcase-card-dots span:nth-child(2) { background: #f59e0b; }
.showcase-card-dots span:nth-child(3) { background: #10b981; }

.showcase-card-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.showcase-card-title i {
    width: 16px;
    height: 16px;
}

.showcase-card-body {
    padding: 32px;
    transition: opacity 0.3s ease;
}

/* Showcase items as puffy clay bubbles */
.memory-showcase-list, .personality-showcase-list, .automod-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.memory-showcase-item, .personality-showcase-item, .automod-showcase-item {
    background: #181d33;
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-premium);
    box-shadow: 
        5px 6px 12px rgba(0, 0, 0, 0.35),
        inset -3px -3px 8px rgba(0, 0, 0, 0.5),
        inset 3px 3px 8px rgba(255, 255, 255, 0.05);
}

.memory-showcase-item:hover, .personality-showcase-item:hover, .automod-showcase-item:hover {
    background: #1c223c;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        8px 10px 18px rgba(0, 0, 0, 0.45),
        inset -2px -2px 6px rgba(0, 0, 0, 0.4),
        inset 2px 2px 6px rgba(255, 255, 255, 0.08);
}

.memory-item-icon, .personality-item-icon, .automod-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f97316;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        3px 4px 8px rgba(249, 115, 22, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.personality-item-icon {
    background: #8b5cf6;
    box-shadow: 
        3px 4px 8px rgba(139, 92, 246, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.automod-item-icon {
    background: #10b981;
    box-shadow: 
        3px 4px 8px rgba(16, 185, 129, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.memory-item-icon i, .personality-item-icon i, .automod-item-icon i {
    width: 18px;
    height: 18px;
}

.memory-item-details, .personality-item-details, .automod-item-details {
    flex: 1;
    margin-left: 18px;
    text-align: left;
}

.memory-item-text, .personality-item-title, .automod-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.memory-item-time, .personality-item-desc, .automod-item-action {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.memory-item-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 
        3px 4px 6px rgba(0, 0, 0, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.1);
}

.action-btn i {
    width: 14px;
    height: 14px;
}

.edit-btn {
    background: #8b5cf6;
    color: white;
}

.edit-btn:hover {
    background: #9d73fa;
    transform: scale(1.1);
}

.delete-btn {
    background: #ef4444;
    color: white;
}

.delete-btn:hover {
    background: #f87171;
    transform: scale(1.1);
}

/* Custom Clay 3D Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(8, 10, 18, 0.6);
    transition: .4s;
    border-radius: 26px;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.6),
        inset -1px -1px 3px rgba(255, 255, 255, 0.05);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.4),
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5);
}

input:checked + .slider {
    background-color: #8b5cf6;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(139, 92, 246, 0.4);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.automod-badge {
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.automod-badge.high {
    background: #ef4444;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(239, 68, 68, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.automod-badge.medium {
    background: #f59e0b;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(245, 158, 11, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.automod-badge.success {
    background: #10b981;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(16, 185, 129, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Puffy Bento Grid 2.0 (Redesigned as physical clay blocks) */
.features-bento {
    padding: 160px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: white;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.5),
        4px 4px 12px rgba(0, 0, 0, 0.4);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 270px;
    gap: 28px;
}

/* Individual Bento boxes styled as distinct volumetric clay panels */
.bento-card {
    background: #121524;
    border: none;
    border-radius: 36px;
    padding: 44px;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 
        10px 14px 28px rgba(0, 0, 0, 0.45),
        inset -8px -8px 16px rgba(0, 0, 0, 0.55),
        inset 8px 8px 16px rgba(255, 255, 255, 0.06);
}

/* Different colored clay panels for each bento card */
.bento-grid .bento-card:nth-child(1) {
    background: #13172c; /* Memory - Slate dark violet */
}
.bento-grid .bento-card:nth-child(2) {
    background: #17152b; /* Personalities - Violet clay */
}
.bento-grid .bento-card:nth-child(3) {
    background: #101c22; /* AutoMod - Deep teal clay */
}
.bento-grid .bento-card:nth-child(4) {
    background: #1c151b; /* Giveaways - Deep pink/red clay */
}
.bento-grid .bento-card:nth-child(5) {
    background: #1a1914; /* Affinity - Deep bronze clay */
}

.bento-card:hover {
    transform: translateY(-8px) rotate(0.5deg) scale(1.02);
    box-shadow: 
        18px 24px 38px rgba(0, 0, 0, 0.55),
        inset -4px -4px 10px rgba(0, 0, 0, 0.4),
        inset 4px 4px 10px rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 54px; height: 54px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--accent-teal);
    transition: var(--transition-premium);
    box-shadow: 
        3px 4px 8px rgba(0,0,0,0.3),
        inset -2px -2px 5px rgba(0, 0, 0, 0.45),
        inset 2px 2px 5px rgba(255, 255, 255, 0.08);
}

.bento-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--accent-teal);
    color: #030712;
    box-shadow: 
        4px 6px 12px rgba(0, 242, 254, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.4);
}

/* Custom icon colors for specific tiles */
.bento-card:nth-child(2):hover .feature-icon {
    background: #8b5cf6;
    color: white;
    box-shadow: 
        4px 6px 12px rgba(139, 92, 246, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}
.bento-card:nth-child(3):hover .feature-icon {
    background: #10b981;
    color: white;
    box-shadow: 
        4px 6px 12px rgba(16, 185, 129, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.35);
}
.bento-card:nth-child(4):hover .feature-icon {
    background: #ff007f;
    color: white;
    box-shadow: 
        4px 6px 12px rgba(255, 0, 127, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.35);
}
.bento-card:nth-child(5):hover .feature-icon {
    background: #f97316;
    color: white;
    box-shadow: 
        4px 6px 12px rgba(249, 115, 22, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.35);
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: white;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

/* Sticky Presentation Console Section */
.sticky-presentation-section {
    padding: 140px 5% 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-title-wrapper {
    text-align: center;
    margin-bottom: 90px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #5865F2;
    border-radius: 24px;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 
        5px 6px 12px rgba(88, 101, 242, 0.3),
        inset -4px -4px 8px rgba(0, 0, 0, 0.45),
        inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.premium-badge i {
    width: 16px;
    height: 16px;
}

.presentation-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    letter-spacing: -1.5px;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.5),
        4px 4px 12px rgba(0, 0, 0, 0.4);
}

.presentation-main-title span {
    background: linear-gradient(135deg, var(--accent-teal), #5865F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    position: relative;
}

/* Sticky Left Console Column */
.sticky-mockup-col {
    position: sticky;
    top: 130px;
    height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sticky-mockup-wrapper {
    width: 100%;
    max-width: 460px;
    position: relative;
}

.mockup-screen-glow {
    position: absolute;
    top: -40px; left: -40px; right: -40px; bottom: -40px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    transition: background 0.6s ease;
}

/* Mockup Frame styled as 3D physical screen panel */
.mockup-frame {
    position: relative;
    z-index: 2;
    background: #111422;
    border: none;
    border-radius: 36px;
    box-shadow: 
        15px 25px 45px rgba(0, 0, 0, 0.6),
        inset -8px -8px 20px rgba(0, 0, 0, 0.65),
        inset 8px 8px 20px rgba(255, 255, 255, 0.08);
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-premium);
}

.mockup-frame-header {
    height: 54px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.frame-dots {
    display: flex;
    gap: 8px;
}

.frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 
        inset 1px 1px 2px rgba(0, 0, 0, 0.6),
        1px 1px 2px rgba(255, 255, 255, 0.05);
}

.frame-dots span:nth-child(1) { background: #ef4444; }
.frame-dots span:nth-child(2) { background: #f59e0b; }
.frame-dots span:nth-child(3) { background: #10b981; }

.frame-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mockup-frame-body {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.3s ease;
}

/* Scroll Content Right Column */
.sticky-content-col {
    display: flex;
    flex-direction: column;
}

.sticky-feature-block {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0;
    opacity: 0.25;
    transform: translateY(30px);
    transition: var(--transition-premium);
}

.sticky-feature-block.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-index {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
    transition: var(--transition-premium);
}

.sticky-feature-block.active .feature-index {
    color: rgba(88, 101, 242, 0.35);
    transform: scale(1.1) translateX(5px);
}

.sticky-feature-block.active[data-feature="memory"] .feature-index { color: rgba(249, 115, 22, 0.35); }
.sticky-feature-block.active[data-feature="domain"] .feature-index { color: rgba(239, 68, 68, 0.35); }
.sticky-feature-block.active[data-feature="automod"] .feature-index { color: rgba(16, 185, 129, 0.35); }
.sticky-feature-block.active[data-feature="achievements"] .feature-index { color: rgba(139, 92, 246, 0.35); }

.sticky-feature-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sticky-feature-block p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 28px;
    text-align: left;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
}

.feature-bullets i {
    width: 18px;
    height: 18px;
    color: #5865F2;
    transition: var(--transition-premium);
}

.sticky-feature-block.active[data-feature="memory"] .feature-bullets i { color: #f97316; }
.sticky-feature-block.active[data-feature="domain"] .feature-bullets i { color: #ef4444; }
.sticky-feature-block.active[data-feature="automod"] .feature-bullets i { color: #10b981; }
.sticky-feature-block.active[data-feature="achievements"] .feature-bullets i { color: #8b5cf6; }

/* Mock Console Screen Internals */
.mock-cloning-screen, .mock-memory-screen, .mock-domain-screen, .mock-automod-screen, .mock-achievements-screen {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    height: 100%;
    justify-content: center;
}

.cloning-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
}

.cloning-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(8, 10, 18, 0.6);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 
        inset 1px 2px 3px rgba(0,0,0,0.6),
        inset -1px -1px 2px rgba(255,255,255,0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 6px;
    box-shadow: inset 1px 1px 3px rgba(255,255,255,0.3);
    animation: fillProgress 3s ease-in-out infinite alternate;
}

.cloning-progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cloning-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.cloning-tag {
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 800;
}

.cloning-tag.text-purple {
    background: #8b5cf6;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(139, 92, 246, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.25);
}
.cloning-tag.text-cyan {
    background: #00f2fe;
    color: #030712;
    box-shadow: 
        3px 4px 8px rgba(0, 242, 254, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}
.cloning-tag.text-green {
    background: #10b981;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(16, 185, 129, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Volumetric Mock memory rows */
.mock-memory-row {
    background: #181d33;
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 
        5px 6px 12px rgba(0, 0, 0, 0.35),
        inset -3px -3px 8px rgba(0, 0, 0, 0.5),
        inset 3px 3px 8px rgba(255, 255, 255, 0.05);
}

.row-icon-box.orange {
    background: #f97316;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(249, 115, 22, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Mock Domain screen */
.trial-defendant-card {
    background: rgba(239, 68, 68, 0.08);
    border: none;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 
        4px 6px 12px rgba(0,0,0,0.35),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
}

.defendant-avatar {
    background: #ef4444;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(239, 68, 68, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.evidence-pill {
    background: #181d33;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 
        4px 6px 12px rgba(0, 0, 0, 0.35),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
}

/* Mock AutoMod rules */
.automod-rule-row {
    background: #181d33;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 
        4px 6px 12px rgba(0, 0, 0, 0.35),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
}

/* Mock Achievements screen */
.ach-mini-card {
    background: #181d33;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 
        4px 6px 12px rgba(0, 0, 0, 0.35),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
}

.ach-mini-icon.purple {
    background: #8b5cf6;
    color: white;
    box-shadow: 
        3px 4px 8px rgba(139, 92, 246, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.ach-mini-icon.gray {
    background: rgba(8, 10, 18, 0.5);
    color: var(--text-muted);
    box-shadow: 
        inset 1px 2px 3px rgba(0, 0, 0, 0.5),
        inset -1px -1px 2px rgba(255, 255, 255, 0.04);
}

.leaderboard-stack-row {
    background: #181d33;
    border: none;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 
        4px 6px 12px rgba(0, 0, 0, 0.35),
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
}

.stack-badge {
    background: #8b5cf6;
    box-shadow: 
        2px 3px 6px rgba(139, 92, 246, 0.3),
        inset -1px -1px 3px rgba(0, 0, 0, 0.4),
        inset 1px 1px 3px rgba(255, 255, 255, 0.3);
}

/* Architecture Section */
.architecture-section {
    padding: 120px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Giant Volumetric Clay Plate */
.arch-container {
    display: flex;
    gap: 70px;
    align-items: center;
    background: #0f1220;
    border: none;
    border-radius: 48px;
    padding: 60px 80px;
    box-shadow: 
        15px 25px 50px rgba(0, 0, 0, 0.55),
        inset -8px -8px 24px rgba(0, 0, 0, 0.65),
        inset 8px 8px 24px rgba(255, 255, 255, 0.08);
}

.arch-text { flex: 1; }
.arch-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: white;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.5),
        4px 4px 12px rgba(0, 0, 0, 0.4);
}

.arch-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 36px;
}

.arch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.arch-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
}
.arch-list i { color: #10b981; font-size: 1.2rem; }

.arch-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glossy, Bubbly Speed Widget Radar */
.speed-widget {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: #181d33;
    border: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        10px 15px 30px rgba(0, 0, 0, 0.5),
        inset -10px -10px 24px rgba(0, 0, 0, 0.6),
        inset 10px 10px 24px rgba(255, 255, 255, 0.08);
}

.ping-circle {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent-teal);
    animation: ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.2);
}

@keyframes ping {
    75%, 100% { transform: scale(1.4); opacity: 0; }
}

.ping-text { text-align: center; }
.ping-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.ping-unit {
    font-size: 1.8rem;
    color: var(--accent-teal);
    font-weight: 800;
    margin-left: 4px;
}
.ping-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* Mega Footer Section - styled as physical clay blocks */
.mega-footer {
    background: #090c15;
    border-top: none;
    border-radius: 48px 48px 0 0;
    padding: 100px 5% 40px 5%;
    box-shadow: 
        0 -15px 40px rgba(0, 0, 0, 0.5),
        inset 0 8px 20px rgba(255, 255, 255, 0.03);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 70px;
    margin-bottom: 70px;
}

.footer-logo { height: 38px; margin-bottom: 24px; filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5)); }
.footer-brand p { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; }

/* Status Capsule */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(8, 10, 18, 0.6);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 
        inset 1px 2px 3px rgba(0,0,0,0.6),
        inset -1px -1px 2px rgba(255,255,255,0.04);
}
.status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 
        0 0 10px #10b981,
        inset -2px -2px 3px rgba(0,0,0,0.4),
        inset 2px 2px 3px rgba(255,255,255,0.5);
}

.footer-links h4 { font-size: 1.1rem; margin-bottom: 24px; color: white; font-weight: 800; }
.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-premium);
}
.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-newsletter h4 { font-size: 1.1rem; margin-bottom: 14px; font-weight: 800; }
.footer-newsletter p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }

/* News letter input styled as carved-out/recessed clay trough */
.newsletter-form {
    display: flex;
    background: rgba(8, 10, 18, 0.7);
    border-radius: 18px;
    padding: 6px;
    box-shadow: 
        inset 2px 3px 6px rgba(0, 0, 0, 0.7),
        inset -1px -1px 3px rgba(255, 255, 255, 0.05);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    font-weight: 600;
}
.newsletter-form button {
    background: var(--primary);
    border: none;
    color: white;
    width: 44px; height: 44px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 
        3px 4px 8px rgba(88, 101, 242, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.45),
        inset 3px 3px 6px rgba(255, 255, 255, 0.25);
}
.newsletter-form button:hover {
    background: #6c79ff;
    transform: scale(1.05);
    box-shadow: 
        4px 6px 12px rgba(88, 101, 242, 0.4),
        inset -2px -2px 4px rgba(0, 0, 0, 0.35),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: var(--transition-premium); }
.footer-legal a:hover { color: white; }

/* Responsive adjustments for Sticky presentation */
@media (max-width: 900px) {
    .sticky-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .sticky-mockup-col {
        position: relative;
        top: 0;
        height: auto;
        margin-bottom: 20px;
    }
    .sticky-feature-block {
        min-height: auto;
        padding: 40px 0;
        opacity: 1;
        transform: none;
    }
}

/* Utilities */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-animate="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Grid adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-large { grid-column: span 1; grid-row: span 1; }
    .bento-wide { grid-column: span 1; }
    .bento-tall { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 900px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .showcase-title {
        height: auto;
        min-height: auto;
    }
    .ticker-section {
        border-radius: 36px;
    }
    .arch-container {
        border-radius: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; letter-spacing: -1px; }
    .desktop-nav { display: none; }
    #smart-header { width: 95%; padding: 0 20px; }
    .arch-container { flex-direction: column; padding: 40px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .avatar-glow-wrapper { width: 180px; height: 180px; }
    .hero-avatar { width: 160px; height: 160px; }
}


.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
    transition: var(--transition-premium);
}

.hero-logo-img {
    height: 80px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.5));
}

@media (max-width: 768px) {
    .hero-logo-img {
        height: 50px;
    }
    .logo img {
        height: 38px;
    }
}
