/* MTP Product Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mtp-accent: #C9A86C;
    --mtp-accent-light: #D4B87A;
    --mtp-accent-dark: #A68B55;
    --bg-dark: #0d0d0f;
    --bg-card: #1A1A1F;
    --bg-card-alt: #151518;
    --text-white: #f8f8f8;
    --text-light: #E3E3E6;
    --text-gray: #9c9ca4;
    --text-muted: #6c6c74;
    --border-subtle: rgba(201, 168, 108, 0.2);
    --glow-mtp: rgba(201, 168, 108, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(ellipse at center, #2a2520 0%, #1a1815 30%, var(--bg-dark) 70%, #080809 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.95) 0%, rgba(13, 13, 15, 0) 100%);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--mtp-accent);
}

.nav-logo {
    height: 36px;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--mtp-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--mtp-accent);
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-title span {
    font-weight: 600;
}

.hero-tagline {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--glow-mtp) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-logo {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgba(201, 168, 108, 0.3));
}

/* Sections */
.section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 12px;
    color: var(--mtp-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--mtp-accent);
    font-weight: 500;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* What MTP Is Now Section */
.now-section {
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 108, 0.03) 50%, transparent 100%);
}

.now-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.now-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.now-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

.now-text p:first-of-type {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 300;
}

.now-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--mtp-accent);
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.pillar-title {
    font-size: 18px;
    color: var(--mtp-accent);
    margin-bottom: 8px;
    font-weight: 500;
}

.pillar-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Roots Section */
.roots-section {
    position: relative;
}

.roots-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.roots-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.roots-intro p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.roots-intro p:first-of-type {
    font-size: 24px;
    color: var(--text-white);
    font-weight: 300;
}

.roots-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.timeline-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--mtp-accent), transparent);
    border-radius: 2px;
}

.timeline-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.timeline-era {
    font-size: 12px;
    color: var(--mtp-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 500;
}

.timeline-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* What We Create Section */
.create-section {
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 108, 0.03) 50%, transparent 100%);
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.create-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.create-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(201, 168, 108, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.create-card:hover {
    border-color: var(--mtp-accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.create-card:hover::before {
    opacity: 1;
}

.create-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.create-title {
    font-size: 24px;
    color: var(--mtp-accent);
    margin-bottom: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.create-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Collaboration Section */
.collab-section {
    position: relative;
}

.collab-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.collab-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.collab-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.collab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collab-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
}

.collab-card:hover {
    border-color: var(--border-subtle);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.collab-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.collab-title {
    font-size: 20px;
    color: var(--mtp-accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.collab-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 108, 0.05) 50%, transparent 100%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-title span {
    color: var(--mtp-accent);
    font-weight: 500;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--mtp-accent) 0%, var(--mtp-accent-dark) 100%);
    color: #0d0d0f;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 108, 0.4);
}

/* Footer */
.footer {
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    height: 32px;
    opacity: 0.7;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

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

    .hero-badge {
        margin: 0 auto;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-container {
        width: 300px;
        height: 300px;
    }

    .hero-logo {
        width: 200px;
    }

    .now-content {
        grid-template-columns: 1fr;
    }

    .roots-timeline {
        grid-template-columns: 1fr;
    }

    .create-grid {
        grid-template-columns: 1fr;
    }

    .collab-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-header {
        padding: 15px 20px;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
