/* landing.css - High Fidelity Landing Styles for 9Aus */

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

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & theme overrides */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #f3f4f6;
    font-family: var(--font-sans);
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Ambient Radial Background Grid */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at top, #111827 0%, #000000 80%);
    opacity: 0.8;
    pointer-events: none;
}

/* Utility classes */
.md-hidden {
    display: inline;
}

@media (min-width: 768px) {
    .md-hidden {
        display: none !important;
    }
}

/* Reveal Scroll System */
.reveal {
    opacity: 1;
    transition: opacity 1.2s var(--transition-smooth), transform 1.2s var(--transition-smooth), filter 1.2s ease;
}

/* Hidden states using :not(.revealed) so resting transforms are not overwritten */
.reveal:not(.revealed) {
    opacity: 0;
}

header.landing-header:not(.revealed) {
    transform: translateY(-50px);
}

.badge-wrapper:not(.revealed) {
    transform: scale(0.95);
    filter: blur(10px);
}

.reveal-up:not(.revealed) {
    transform: translateY(30px);
}

.crypto-card.center-card:not(.revealed) {
    transform: translateY(50px) scale(0.9);
}

.crypto-card.left-card:not(.revealed) {
    transform: translateX(-150px) scale(0.7) rotateY(25deg) translateY(50px);
}

@media (min-width: 1025px) {
    .crypto-card.left-card:not(.revealed) {
        transform: translateX(-180px) scale(0.8) rotateY(30deg) translateY(50px);
    }
}

.crypto-card.right-card:not(.revealed) {
    transform: translateX(150px) scale(0.7) rotateY(-25deg) translateY(50px);
}

@media (min-width: 1025px) {
    .crypto-card.right-card:not(.revealed) {
        transform: translateX(180px) scale(0.8) rotateY(-30deg) translateY(50px);
    }
}

/* NAVIGATION HEADER */
header.landing-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.logo-link:hover .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

@media (max-width: 640px) {
    .nav-link {
        display: none;
    }
}

.btn-started {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-started:hover {
    background: #e5e7eb;
}

/* HERO SECTION */
main.landing-main {
    position: relative;
    z-index: 10;
    padding-top: 100px;
    padding-bottom: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
}

.hero-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 96px;
}

@media (min-width: 768px) {
    .hero-section {
        margin-top: 64px;
        margin-bottom: 128px;
        padding: 48px 24px;
    }
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    margin-bottom: 32px;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #e5e7eb;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hero-title { font-size: 5rem; }
}
@media (min-width: 1025px) {
    .hero-title { font-size: 7rem; }
}

.gradient-text {
    background: linear-gradient(to right, #d1d5db, #6b7280, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle { 
        font-size: 1.5rem; 
        margin-bottom: 40px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    z-index: 20;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        width: auto;
        max-width: none;
        gap: 24px;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-primary { width: auto; }
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-secondary { width: auto; }
}

.btn-secondary:hover {
    color: #fff;
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translate(2px, -2px);
}

/* 3D FLOATING CARDS PERSPECTIVE */
.perspective-container {
    perspective: 1000px;
    position: relative;
    height: 380px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .perspective-container {
        height: 600px;
        margin-bottom: 160px;
    }
}

.blue-glow-bg {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #3b82f6;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: -10;
    pointer-events: none;
}

@media (min-width: 768px) {
    .blue-glow-bg {
        height: 500px;
        filter: blur(150px);
        opacity: 0.15;
    }
}

.crypto-card {
    position: absolute;
    width: 300px;
    padding: 24px;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s var(--transition-smooth), opacity 0.8s ease;
}

@media (min-width: 768px) {
    .crypto-card {
        width: 320px;
        padding: 32px;
        border-radius: 2.5rem;
    }
}

.crypto-card.center-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 30;
    position: relative;
}

.crypto-card.left-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 20;
    left: 50%;
    margin-left: -150px;
    transform: translateX(-120px) scale(0.75) rotateY(25deg);
    display: none;
}

.crypto-card.right-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 20;
    left: 50%;
    margin-left: -150px;
    transform: translateX(120px) scale(0.75) rotateY(-25deg);
    display: none;
}

@media (min-width: 768px) {
    .crypto-card.left-card,
    .crypto-card.right-card {
        display: block;
    }
    .crypto-card.center-card {
        position: absolute;
    }
}

@media (min-width: 1025px) {
    .crypto-card.left-card {
        margin-left: -160px;
        transform: translateX(-180px) scale(0.8) rotateY(30deg);
    }
    .crypto-card.right-card {
        margin-left: -160px;
        transform: translateX(180px) scale(0.8) rotateY(-30deg);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .card-header {
        margin-bottom: 32px;
    }
}

.card-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .card-logo-wrap {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
}

.card-logo-wrap.btc {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-logo-wrap.eth {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.card-logo-wrap.sol {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.card-header-info {
    text-align: right;
}

.card-coin-name {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    .card-coin-name {
        font-size: 1.125rem;
    }
}

.card-coin-pair {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .card-coin-pair {
        font-size: 0.875rem;
    }
}

.card-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .card-price {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }
}

.card-trend {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .card-trend {
        font-size: 1rem;
    }
}

.card-trend.up { color: #34d399; }
.card-trend.down { color: #f87171; }

.card-chart {
    margin-top: 24px;
    height: 72px;
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    .card-chart {
        margin-top: 32px;
        height: 96px;
    }
}

.card-chart svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* HORIZONTAL SCROLL TICKER */
.ticker-section {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 0;
    overflow: hidden;
    margin-bottom: 80px;
    display: flex;
}

@media (min-width: 768px) {
    .ticker-section {
        padding: 24px 0;
        margin-bottom: 128px;
    }
}

.ticker-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee-anim 25s linear infinite;
}

.ticker-marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
}

@media (min-width: 768px) {
    .ticker-marquee-wrapper {
        gap: 48px;
        padding-right: 48px;
    }
}

@keyframes marquee-anim {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-symbol {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .ticker-symbol {
        font-size: 1.125rem;
    }
}

.ticker-name {
    color: #6b7280;
    font-size: 0.875rem;
}

.ticker-change {
    font-size: 0.875rem;
}

.ticker-change.up { color: #34d399; }
.ticker-change.down { color: #f87171; }

/* BENTO ADVANTAGE GRID */
.bento-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 96px;
}

@media (min-width: 768px) {
    .bento-section {
        margin-bottom: 160px;
    }
}

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

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 80px;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title { 
        font-size: 3.75rem; 
        margin-bottom: 24px;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    font-weight: 300;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.bento-grid {
    display: grid;
    grid-template-cols: 1fr;
    gap: 24px;
}

.bento-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 2rem;
    background: #0A0D14;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
    .bento-card {
        border-radius: 2.5rem;
        padding: 40px;
        min-height: auto;
        height: 100%;
    }
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.bento-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.bento-card:hover .bento-card-gradient {
    opacity: 1;
}

/* Card 1 Spinning Rings Graphic */
.spinning-rings-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    transform: translate(20%, -20%);
    opacity: 0.4;
    pointer-events: none;
}

@media (min-width: 768px) {
    .spinning-rings-container {
        width: 500px;
        height: 500px;
        transform: translate(25%, -33%);
        opacity: 0.6;
    }
}

.ring-layer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.ring-layer.layer-1 {
    animation: spin 10s linear infinite;
}

.ring-layer.layer-2 {
    inset: 20px;
    border-color: rgba(99, 102, 241, 0.2);
    animation: spin 15s linear infinite reverse;
}

@media (min-width: 768px) {
    .ring-layer.layer-2 {
        inset: 32px;
    }
}

.ring-layer.layer-3 {
    inset: 40px;
    border-color: rgba(6, 182, 212, 0.2);
    animation: spin 20s linear infinite;
}

@media (min-width: 768px) {
    .ring-layer.layer-3 {
        inset: 64px;
    }
}

.ring-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3b82f6;
    filter: drop-shadow(0 0 20px #3b82f6);
}

.ring-center-icon svg {
    width: 64px;
    height: 64px;
}

@media (min-width: 768px) {
    .ring-center-icon svg {
        width: 128px;
        height: 128px;
    }
    .ring-center-icon {
        filter: drop-shadow(0 0 30px #3b82f6);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bento-info {
    position: relative;
    z-index: 10;
    max-width: 448px;
    margin-top: auto;
}

.bento-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .bento-title {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }
}

.bento-desc {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .bento-desc {
        font-size: 1.125rem;
    }
}

/* Card 2 Key Features & Green Glow */
.bento-card-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(34, 197, 94, 0.08);
    filter: blur(60px);
    border-radius: 50%;
    transition: background 0.3s ease;
    pointer-events: none;
}

@media (min-width: 768px) {
    .bento-card-center-glow {
        width: 200px;
        height: 200px;
        background: rgba(34, 197, 94, 0.1);
        filter: blur(80px);
    }
}

.bento-card:hover .bento-card-center-glow {
    background: rgba(34, 197, 94, 0.2);
}

.bento-icon-wrapper {
    margin: auto auto 24px auto;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #0F141F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, border-color 0.5s ease;
}

@media (min-width: 768px) {
    .bento-icon-wrapper {
        margin: auto auto 40px auto;
        width: 96px;
        height: 96px;
        border-radius: 24px;
    }
}

.bento-card:hover .bento-icon-wrapper {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.5);
}

.bento-icon-wrapper svg {
    color: #4ade80;
    width: 36px;
    height: 36px;
}

@media (min-width: 768px) {
    .bento-icon-wrapper svg {
        width: 48px;
        height: 48px;
    }
}

.bento-card.text-center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bento-card.text-center .bento-info {
    margin-top: 0;
}

.bento-title-sm {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .bento-title-sm {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }
}

.bento-desc-sm {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Card 3 Dots & Glows */
.dots-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at center, #ffffff 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.ping-container {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
}

@media (min-width: 768px) {
    .ping-container {
        top: 40px;
        right: 40px;
        gap: 12px;
    }
}

.ping {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
}

@media (min-width: 768px) {
    .ping {
        width: 12px;
        height: 12px;
    }
}

.ping-dot {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.ping-dot.blue { background: #3b82f6; }
.ping-dot.indigo { background: #6366f1; }

.ping-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ping-anim 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-pulse.blue { background: #3b82f6; }
.ping-pulse.indigo {
    background: #6366f1;
    animation-delay: 0.5s;
}

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

.bento-top-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bento-top-icon svg {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.5s ease;
}

.bento-card:hover .bento-top-icon svg {
    color: #60a5fa;
}

/* Card 4 Perfect Sync Graphic */
.bento-sync-graphic {
    display: flex;
    flex-grow: 1;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    opacity: 0.3;
    transition: opacity 0.7s ease;
}

@media (min-width: 768px) {
    .bento-sync-graphic {
        gap: 40px;
        justify-content: flex-end;
        margin-bottom: 40px;
    }
}

.bento-card:hover .bento-sync-graphic {
    opacity: 1;
}

.bento-sync-graphic svg {
    color: #fff;
}

.bento-divider-line {
    width: 4px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

@media (min-width: 768px) {
    .bento-divider-line {
        width: 6px;
        height: 64px;
    }
}

@media (max-width: 640px) {
    .bento-sync-graphic {
        transform: scale(0.85);
    }
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-cols: repeat(12, 1fr);
        grid-auto-rows: 400px;
    }
    .bento-col-8 { grid-column: span 8; }
    .bento-col-4 { grid-column: span 4; }
    .bento-col-5 { grid-column: span 5; }
    .bento-col-7 { grid-column: span 7; }
}

/* M1 ENGINE / PROCESSOR SECTION */
.processor-section {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom right, #000000, #050a14);
    padding: 64px 24px;
    margin-bottom: 96px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .processor-section { 
        padding: 160px 24px; 
        margin-bottom: 160px;
    }
}

.processor-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .processor-container {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
}

.processor-content {
    flex: 1;
}

.engine-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    margin-bottom: 16px;
}

.engine-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #93c5fd;
    text-transform: uppercase;
}

.processor-title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .processor-title { 
        font-size: 4.5rem; 
        margin-bottom: 24px;
    }
}

.processor-desc {
    font-size: 1.125rem;
    color: #9ca3af;
    font-weight: 300;
    max-width: 36rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .processor-desc {
        font-size: 1.25rem;
        margin-bottom: 32px;
    }
}

.processor-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.processor-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #d1d5db;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .processor-list-item {
        font-size: 1.125rem;
    }
}

.status-indicator-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.status-indicator-dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
    animation: status-pulse 2s infinite;
}

.status-indicator-dot.indigo {
    background: #6366f1;
    box-shadow: 0 0 8px #6366f1;
    animation: status-pulse 2s infinite;
    animation-delay: 0.5s;
}

@keyframes status-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.processor-graphic {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

@media (min-width: 768px) {
    .processor-graphic {
        height: 500px;
    }
}

.processor-svg-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.dash-path {
    stroke-dasharray: 5, 5;
    animation: dash-move 3s linear infinite;
}

.dash-path.reverse {
    animation-direction: reverse;
}

@keyframes dash-move {
    to { stroke-dashoffset: -20; }
}

.chip-3d {
    position: relative;
    width: 256px;
    height: 256px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: scale(0.65) rotateX(30deg) rotateY(30deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .chip-3d {
        transform: scale(0.8) rotateX(30deg) rotateY(30deg);
    }
    .chip-3d:hover {
        transform: scale(0.85) rotateX(25deg) rotateY(25deg);
    }
}

.chip-3d-inner {
    position: absolute;
    inset: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.chip-3d-glow {
    position: absolute;
    width: 96px;
    height: 96px;
    background: linear-gradient(to right, #2563eb, #6366f1);
    filter: blur(24px);
    border-radius: 50%;
    opacity: 0.8;
}

.chip-3d-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    z-index: 10;
    letter-spacing: 0.1em;
    background: linear-gradient(to bottom, #ffffff, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chip-3d-edge-glow-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #60a5fa, transparent);
}

.chip-3d-edge-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #818cf8, transparent);
}

/* ECOSYSTEM CIRCULAR ORBITS */
.ecosystem-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    margin-bottom: 96px;
}

@media (min-width: 768px) {
    .ecosystem-section {
        margin-bottom: 160px;
    }
}

.orbit-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 48px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

@media (max-width: 400px) {
    .orbit-container {
        transform: scale(0.85);
        margin-top: 24px;
    }
}

@media (max-width: 350px) {
    .orbit-container {
        transform: scale(0.7);
        margin-top: 12px;
    }
}

@media (min-width: 768px) {
    .orbit-container {
        width: 600px;
        height: 600px;
        margin-top: 80px;
    }
}

.center-anchor {
    position: absolute;
    z-index: 30;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .center-anchor {
        width: 128px;
        height: 128px;
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    }
}

.center-anchor svg {
    color: #fff;
    width: 36px;
    height: 36px;
}

@media (min-width: 768px) {
    .center-anchor svg {
        width: 64px;
        height: 64px;
        filter: drop-shadow(0 0 10px #ffffff);
    }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
}

.orbit-ring.ring-1 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: orbit-rotate-anim 20s linear infinite;
}

.orbit-ring.ring-2 {
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    animation: orbit-rotate-anim 30s linear infinite reverse;
}

@media (min-width: 768px) {
    .orbit-ring.ring-1 {
        width: 350px;
        height: 350px;
    }
    .orbit-ring.ring-2 {
        width: 550px;
        height: 550px;
    }
}

.orbit-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .orbit-node {
        width: 64px;
        height: 64px;
    }
}

/* Position nodes on ring 1 */
.orbit-ring.ring-1 .orbit-node.node-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring.ring-1 .orbit-node.node-2 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

/* Position nodes on ring 2 */
.orbit-ring.ring-2 .orbit-node.node-3 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.orbit-ring.ring-2 .orbit-node.node-4 {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.orbit-ring.ring-2 .orbit-node.node-5 {
    top: 0;
    right: 25%;
    transform: translate(50%, -50%);
}

.orbit-node.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.orbit-node.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.orbit-node.green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.orbit-node.red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.orbit-node.yellow {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
}

.orbit-node.blue svg { color: #60a5fa; }
.orbit-node.purple svg { color: #c084fc; }
.orbit-node.green svg { color: #4ade80; }
.orbit-node.red svg { color: #f87171; }
.orbit-node.yellow svg { color: #facc15; }

.orbit-node svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .orbit-node svg {
        width: 24px;
        height: 24px;
    }
}

/* Counter rotation to keep SVG icons upright */
.orbit-ring.ring-1 .orbit-node svg {
    animation: orbit-rotate-anim 20s linear infinite reverse;
}

.orbit-ring.ring-2 .orbit-node svg {
    animation: orbit-rotate-anim 30s linear infinite;
}

@keyframes orbit-rotate-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* STATS SECTION */
.stats-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .stats-section { 
        padding: 128px 0; 
        margin-bottom: 128px;
    }
}

.stats-bg-text-left {
    display: none;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.stats-bg-text-right {
    display: none;
    position: absolute;
    right: 40px;
    bottom: 0;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

@media (min-width: 768px) {
    .stats-bg-text-left,
    .stats-bg-text-right {
        display: block;
    }
}

@media (min-width: 1024px) {
    .stats-bg-text-left { font-size: 20rem; }
    .stats-bg-text-right { font-size: 15rem; }
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-cols: 1fr;
    gap: 36px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-cols: repeat(3, 1fr);
        gap: 48px;
    }
}

.stat-val {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #ffffff, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-val { 
        font-size: 5rem; 
        margin-bottom: 16px;
    }
}

.stat-label {
    font-size: 0.95rem;
    color: #9ca3af;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1.125rem;
    }
}

/* CTA / FOOTER */
.cta-section {
    width: 100%;
    max-width: 896px;
    margin: 0 auto;
    padding: 64px 24px;
    text-align: center;
    position: relative;
    margin-bottom: 96px;
}

@media (min-width: 768px) {
    .cta-section { 
        padding: 160px 24px; 
        margin-bottom: 128px;
    }
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -10;
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-glow {
        filter: blur(150px);
    }
}

.cta-logo {
    color: #fff;
    opacity: 0.5;
    margin: 0 auto 20px auto;
}

.cta-logo svg {
    width: 48px;
    height: 48px;
}

@media (min-width: 768px) {
    .cta-logo {
        margin-bottom: 24px;
    }
    .cta-logo svg {
        width: 64px;
        height: 64px;
    }
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .cta-title { 
        font-size: 4.5rem; 
        margin-bottom: 32px;
    }
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 50px rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-cta { width: auto; }
}

.btn-cta:hover {
    transform: scale(1.05);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(6px);
}

footer.landing-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding-top: 64px;
    padding-bottom: 32px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: flex-start;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e5e7eb;
}

.footer-logo-desc {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 320px;
    text-align: left;
}

.footer-nav {
    display: grid;
    grid-template-cols: repeat(2, 1fr);
    gap: 40px;
    font-size: 0.875rem;
    width: 100%;
}

@media (min-width: 500px) {
    .footer-nav {
        gap: 64px;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .footer-nav {
        grid-template-cols: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-col-title {
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-col-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-link:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.75rem;
    color: #4b5563;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

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

.footer-bottom-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #9ca3af;
}
