@import url('https://fonts.googleapis.com/css2?family=Aldrich&display=swap');

/* Color Variables */
:root {
    --bg-color: #030C07;
    --accent-color: #00E5A3;
    --accent-glow: rgba(0, 229, 163, 0.15);
    --emerald-color: #051A10;
    --text-white: #FFFFFF;
    --text-muted: #8A9A92;
    --card-bg: rgba(26, 26, 26, 0.4);
    --border-color: rgba(0, 229, 163, 0.1);
    --font-body: 'Aldrich', sans-serif;
    --font-subheading: 'Aldrich', sans-serif;
    
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--emerald-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Layout Containers & Background Glows */
.soil-landing-wrapper {
    position: relative;
    width: 100%;
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 163, 0.08) 0%, rgba(3, 12, 7, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Header */
.soil-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background: linear-gradient(to bottom, rgba(3, 12, 7, 0.9) 0%, rgba(3, 12, 7, 0) 100%);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 229, 163, 0.03);
}

.soil-logo {
    display: flex;
    flex-direction: column;
}

.soil-logo-main {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-white);
    line-height: 1;
}

.soil-logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-top: 4px;
}

.soil-nav {
    display: flex;
    gap: 40px;
}

.soil-nav a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
}

.soil-nav a:hover,
.soil-nav a.active {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Interactive Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 80px 50px 80px;
    background: radial-gradient(circle at 70% 30%, rgba(0, 229, 163, 0.05) 0%, rgba(3, 12, 7, 0) 60%);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    width: 100%;
    align-items: center;
    gap: 40px;
}

.hero-content {
    z-index: 5;
}

.hero-tagline {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 6.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    background: transparent;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.hero-btn:hover {
    background: rgba(0, 229, 163, 0.05);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn span.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-btn:hover span.arrow {
    transform: translateX(4px);
}

/* 3D Wheel Interactive Layout & HUD Radar */
.hero-visual-container {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.wheel-hud-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* Concentric Radar Rings */
.hud-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 163, 0.08);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transform-style: preserve-3d;
}

.ring-1 {
    width: 250px;
    height: 250px;
    border-style: dotted;
    animation: spin 60s linear infinite;
}

.ring-2 {
    width: 420px;
    height: 420px;
    border-color: rgba(0, 229, 163, 0.05);
    animation: pulse-ring 6s ease-in-out infinite alternate;
}

.ring-3 {
    width: 580px;
    height: 580px;
    border-style: dashed;
    border-width: 1px;
    border-color: rgba(0, 229, 163, 0.06);
    animation: spin 120s linear infinite reverse;
}

.ring-4 {
    width: 750px;
    height: 750px;
    border-color: rgba(0, 229, 163, 0.02);
    animation: pulse-ring 10s ease-in-out infinite alternate;
}

/* Interactive Wheel Image with Mouse Parallax */
.interactive-wheel {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.interactive-wheel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8));
    user-select: none;
    pointer-events: none;
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    cursor: pointer;
    transform-style: preserve-3d;
}

.hotspot-dot {
    width: 14px;
    height: 14px;
    background-color: var(--text-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 229, 163, 0.3), 0 0 20px var(--accent-color);
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotspot-dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 163, 0.5);
    animation: pulse-dot 2s infinite;
}

.hotspot-label {
    font-family: var(--font-subheading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
    margin-left: 15px;
    text-transform: uppercase;
    pointer-events: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hotspot:hover .hotspot-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(0, 229, 163, 0.4), 0 0 25px var(--accent-color);
}

.hotspot:hover .hotspot-label {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Precise Hotspot Placements based on Screenshot */
.hotspot-endurance {
    top: 15%;
    right: 2%;
}

.hotspot-power {
    top: 50%;
    left: -5%;
}

/* Layout requires label to be on the bottom for Power */
.hotspot-power {
    flex-direction: column;
    align-items: center;
}
.hotspot-power .hotspot-label {
    margin-left: 0;
    margin-top: 15px;
}

.hotspot-performance {
    bottom: 18%;
    right: 5%;
}

/* Section 2: Technology Details */
.tech-section {
    position: relative;
    padding: 140px 80px;
    background: radial-gradient(circle at 30% 60%, rgba(0, 229, 163, 0.04) 0%, rgba(3, 12, 7, 0) 50%);
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.tech-content {
    z-index: 5;
}

.tech-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tech-title {
    font-weight: 800;
    font-size: clamp(2rem, 3.8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.tech-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Glowing Electro Wheel */
.tech-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-wheel-container {
    position: relative;
    width: 440px;
    height: 440px;
}

.tech-wheel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(0, 229, 163, 0.15));
}

.neon-grid-mesh {
    position: absolute;
    width: 150%;
    height: 150%;
    background-image: 
        radial-gradient(rgba(0, 229, 163, 0.05) 1px, transparent 1px), 
        radial-gradient(rgba(0, 229, 163, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

/* Section 3: Feature Icon Blocks */
.features-section {
    padding: 100px 80px;
    background: linear-gradient(to bottom, rgba(3, 12, 7, 0) 0%, rgba(5, 26, 16, 0.2) 50%, rgba(3, 12, 7, 0) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 45px 35px;
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.30s ease;
    transform-style: preserve-3d;
}

.feature-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 8px;
    background: rgba(0, 229, 163, 0.03);
    border: 1px solid rgba(0, 229, 163, 0.1);
    color: var(--accent-color);
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0, 229, 163, 0.05);
}

.feature-card h3 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
}

.feature-card:hover {
    border-color: rgba(0, 229, 163, 0.4);
    box-shadow: 0 10px 30px rgba(0, 229, 163, 0.12);
}

/* Section 4: Showcase Box (Transform Any Bike) */
.showcase-section {
    padding: 120px 80px;
    display: flex;
    justify-content: center;
}

.showcase-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px 80px;
    width: 100%;
    max-width: 1100px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.showcase-title {
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 50px;
}

.showcase-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.accessory-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accessory-visual-frame {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.accessory-visual-frame img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 229, 163, 0.1));
}

.accessory-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.showcase-divider {
    height: 120px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 163, 0.2), transparent);
}

/* Section 5: Specs Section */
.specs-section {
    padding: 100px 80px 140px 80px;
    background: radial-gradient(circle at 75% 75%, rgba(0, 229, 163, 0.03) 0%, rgba(3, 12, 7, 0) 60%);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.specs-wheel-container {
    width: 480px;
    height: 480px;
}

.specs-wheel-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
}

.specs-details {
    z-index: 5;
}

.specs-header {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specs-subheader {
    font-size: 12px;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.specs-table {
    display: flex;
    flex-direction: column;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 229, 163, 0.1);
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-label {
    font-size: 14px;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.specs-value {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer Section */
.soil-footer {
    padding: 60px 80px;
    background-color: #020805;
    border-top: 1px solid rgba(0, 229, 163, 0.05);
    z-index: 10;
    position: relative;
}

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

.footer-socials {
    display: flex;
    gap: 25px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 18px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-socials a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Keyframe Animations */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.15;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.35;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
    .soil-header {
        padding: 20px 40px;
    }
    .hero-section, .tech-section, .features-section, .showcase-section, .specs-section, .soil-footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual-container {
        height: 500px;
    }
    .interactive-wheel {
        width: 380px;
        height: 380px;
    }
    .ring-1 { width: 180px; height: 180px; }
    .ring-2 { width: 320px; height: 320px; }
    .ring-3 { width: 450px; height: 450px; }
    .ring-4 { width: 600px; height: 600px; }
    .hotspot-power {
        left: 5%;
    }
    .hotspot-endurance {
        right: 10%;
    }
    .hotspot-performance {
        right: 12%;
    }
    .tech-grid, .specs-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .showcase-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .showcase-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .soil-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .soil-nav {
        gap: 20px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-visual-container {
        height: 400px;
    }
    .interactive-wheel {
        width: 280px;
        height: 280px;
    }
    .ring-1, .ring-2, .ring-3, .ring-4 {
        display: none; /* Hide large rings on mobile for performance */
    }
    .hotspot-endurance { top: 10%; right: 5%; }
    .hotspot-power { top: 50%; left: 0%; }
    .hotspot-performance { bottom: 10%; right: 5%; }
    .specs-wheel-container, .tech-wheel-container {
        width: 320px;
        height: 320px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
