:root {
    --bg-black: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --mclaren-orange: #FF8700;
    --neon-blue: #00E5FF;
    --text-main: #FFFFFF;
    --text-dim: #A0A0B0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

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

body {
    background: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-inter);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-outfit);
    font-weight: 700;
    line-height: 1.1;
}

p {
    line-height: 1.6;
    color: var(--text-dim);
}

/* Layout */
.masterpiece-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--mclaren-orange);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-outfit);
}

.logo span {
    color: var(--mclaren-orange);
}

.btn-primary {
    background: var(--mclaren-orange);
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(255, 135, 0, 0.15);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 135, 0, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 60%;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 135, 0, 0.1);
    color: var(--mclaren-orange);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 135, 0, 0.2);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 90%;
    z-index: 1;
    perspective: 1000px;
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255, 135, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

/* Features Grid */
.section {
    padding: 120px 0;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 24px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(255, 135, 0, 0.4);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--mclaren-orange);
    margin-bottom: 32px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Details Section */
.details-split {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 120px;
}

.details-split:nth-child(even) {
    flex-direction: row-reverse;
}

.details-image {
    flex: 1;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.details-split:hover .details-image img {
    transform: scale(1.05);
}

.details-text {
    flex: 1;
}

.details-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.details-list {
    list-style: none;
    margin-top: 32px;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-dim);
}

.details-list li i {
    color: var(--neon-blue);
}

/* Stats Section */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 100px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 100px 0;
}

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

.stat-item .number {
    display: block;
    font-size: 4rem;
    font-family: 'Fira Code', monospace;
    font-weight: 700;
    color: var(--mclaren-orange);
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--mclaren-orange);
}

.credits {
    font-size: 0.8rem;
    color: #444;
}

.credits a {
    color: #666;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.credits a:hover {
    color: var(--mclaren-orange);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 4rem; }
    .hero-visual { width: 50%; right: -5%; }
}

@media (max-width: 768px) {
    .details-split, .details-split:nth-child(even) { flex-direction: column; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .hero-content { width: 100%; }
    .hero-visual { display: none; }
}
