@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=VT323&family=Orbitron:wght@400;700;900&family=Playfair+Display:wght@400;500;700&family=JetBrains+Mono:wght@300;400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=switzer@400,500,600,700&display=swap');

:root {
    /* Light theme (warm corporate) - default */
    --bg-primary: #F5F1E8;
    --bg-gradient-start: rgba(245, 241, 232, 0.95);
    --bg-gradient-end: #F5F1E8;
    --bg-gradient-accent: rgba(255, 215, 0, 0.03);

    --text-primary: #2C3E50;
    --text-secondary: #3E4E5E;
    --text-muted: #5A6978;

    --accent-primary: #C17D45;
    --accent-secondary: #D4842C;

    --card-bg: rgba(255, 255, 255, 0.6);
    --card-border: rgba(193, 125, 69, 0.3);
    --card-shadow: 5px 5px 0px rgba(44, 62, 80, 0.1);
    --card-hover-bg: rgba(255, 255, 255, 0.8);
    --card-hover-border: rgba(193, 125, 69, 0.5);
    --card-hover-shadow: 8px 8px 0px rgba(44, 62, 80, 0.15);

    --button-bg: #D4842C;
    --button-text: #FFF;
    --button-border: #C17D45;
    --button-shadow: 4px 4px 0px rgba(44, 62, 80, 0.15);
    --button-hover-bg: #C17D45;
    --button-hover-shadow: 6px 6px 0px rgba(44, 62, 80, 0.2);

    --footer-border: rgba(193, 125, 69, 0.2);

    --cd-glow: rgba(193, 125, 69, 0.3);
    --cd-glow-secondary: rgba(212, 132, 44, 0.2);

    --border-radius: 2px;
}

[data-theme="dark"] {
    /* Dark theme (retro-futuristic) */
    --bg-primary: #4A5A7A;
    --bg-gradient-start: rgba(74, 90, 122, 0.8);
    --bg-gradient-end: #4A5A7A;
    --bg-gradient-accent: rgba(168, 255, 208, 0.05);

    --text-primary: #B3EFD4;
    --text-secondary: #B3EFD4;
    --text-muted: #B3EFD4;

    --accent-primary: #A8FFD0;
    --accent-secondary: #73F5D2;

    --card-bg: rgba(179, 239, 212, 0.08);
    --card-border: rgba(168, 255, 208, 0.2);
    --card-shadow: 0 8px 32px rgba(59, 74, 105, 0.1);
    --card-hover-bg: rgba(179, 239, 212, 0.15);
    --card-hover-border: rgba(168, 255, 208, 0.4);
    --card-hover-shadow: 0 16px 48px rgba(59, 74, 105, 0.2);

    --button-bg: #FCD45B;
    --button-text: #2D2D2D;
    --button-border: #FCD45B;
    --button-shadow: 0 4px 12px rgba(59, 74, 105, 0.3);
    --button-hover-bg: #FBE68A;
    --button-hover-shadow: 0 6px 20px rgba(59, 74, 105, 0.4);

    --footer-border: rgba(168, 255, 208, 0.2);

    --cd-glow: rgba(168, 255, 208, 0.4);
    --cd-glow-secondary: rgba(115, 245, 210, 0.3);

    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}


@keyframes subtleBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, var(--bg-gradient-accent) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    pointer-events: none;
    z-index: -1;
    transition: background 0.3s ease;
}





.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

.header {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.logo {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    text-transform: lowercase;
    font-family: 'Playfair Display', serif;
    position: relative;
    transition: color 0.3s ease;
}

.tagline {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.rotating-text {
    color: var(--accent-primary);
    display: inline-block;
    min-width: 100px;
    text-align: left;
    position: relative;
    transition: color 0.3s ease;
}

.rotating-text::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 1.2em;
    background: var(--accent-primary);
    animation: blink 1s infinite;
    transition: background 0.3s ease;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    margin: 4rem 0 8rem;
    min-height: 500px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-transform: none;
    font-weight: 300;
    font-family: 'JetBrains Mono', monospace;
    font-style: normal;
    opacity: 0.9;
    max-width: 600px;
    letter-spacing: -0.02em;
    touch-action: none;
    transition: color 0.3s ease;
}

.cta-button {
    background: var(--button-bg);
    color: var(--button-text);
    padding: 1rem 2rem;
    border: 2px solid var(--button-border);
    border-radius: var(--border-radius);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    box-shadow: var(--button-shadow);
}

.cta-button:hover {
    background: var(--button-hover-bg);
    transform: translate(-2px, -2px);
    box-shadow: var(--button-hover-shadow);
}

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

.cd-placeholder {
    width: 525px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.8;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.minidisc-cartridge {
    width: 480px;
    height: 435px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    overflow: visible;
    pointer-events: none;
    transition: all 0.3s ease;
}

.minidisc-cartridge::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.minidisc-cartridge::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.cartridge-label {
    position: absolute;
    bottom: 8px;
    left: 12px;
    font-size: 0.6rem;
    color: var(--accent-primary);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.1em;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 1px;
    border: 1px solid var(--card-border);
    pointer-events: none;
    transition: all 0.3s ease;
}

.cd-disc {
    width: 420px;
    height: 420px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 50%),
        conic-gradient(
            from 0deg,
            #c0c0c0,
            #e8e8e8,
            #ffb6c1,
            #dda0dd,
            #b19cd9,
            #87ceeb,
            #98fb98,
            #f0e68c,
            #ffd700,
            #ffa07a,
            #ffb6c1,
            #c0c0c0
        );
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(168, 255, 208, 0.3),
        0 0 60px rgba(115, 245, 210, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: rotate 120s linear infinite;
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow 0.6s ease;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

.cd-disc:hover {
    box-shadow:
        0 0 40px var(--cd-glow),
        0 0 80px var(--cd-glow-secondary),
        inset 0 0 25px rgba(255, 255, 255, 0.4);
}



.cd-disc::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 60%
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
}

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

.cd-center {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, #e8e8e8, #808080);
    border-radius: 50%;
    position: absolute;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.cd-label {
    position: absolute;
    font-size: 0.7rem;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', monospace;
    bottom: 80px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}


.products-section {
    margin: 6rem 0;
}

.products-section + .products-section {
    margin-top: 8rem;
}

.section-title {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 4rem;
    text-transform: lowercase;
    text-align: left;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.05em;
    font-family: 'Orbitron', monospace;
    transition: color 0.3s ease;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 380px));
    gap: 2rem;
    justify-content: center;
}

.product-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.product-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.product-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.product-card:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.product-card:nth-child(5) {
    animation: fadeInUp 0.8s ease-out 1.0s both;
}

.product-card:nth-child(6) {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.product-card:nth-child(7) {
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.product-card:nth-child(8) {
    animation: fadeInUp 0.8s ease-out 1.6s both;
}

.product-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    font-family: 'Orbitron', monospace;
    backdrop-filter: blur(10px);
}

.status-indicator {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 1px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.status-indicator::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

.status-live::before {
    background: #00ff64;
    box-shadow: 0 0 8px rgba(0, 255, 100, 0.6);
}

.status-wip::before {
    background: #ffdc00;
    box-shadow: 0 0 8px rgba(255, 220, 0, 0.6);
}

.status-paused::before {
    background: #ff8c00;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
}

.status-sunset::before {
    background: linear-gradient(135deg, #ff4500, #ff8c00);
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
}

.product-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    transform: translate(-3px, -3px);
    box-shadow: var(--card-hover-shadow);
}

.product-card:hover .product-icon {
    transform: scale(1.05);
    background: var(--card-hover-border);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-icon {
    font-size: 1.8rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-border);
    border: 2px solid var(--card-border);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: lowercase;
    letter-spacing: 0.02em;
    font-family: 'Orbitron', monospace;
    transition: color 0.3s ease;
}

.product-subtitle {
    color: var(--accent-secondary);
    font-size: 0.85rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    text-transform: none;
    opacity: 0.85;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer {
    text-align: center;
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--footer-border);
    margin-top: 4rem;
    transition: border-color 0.3s ease;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    font-family: 'Orbitron', monospace;
    opacity: 0.7;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 0;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    transform: translate(-2px, -2px);
    box-shadow: var(--card-hover-shadow);
}

.theme-toggle-icon {
    font-size: 1.2rem;
}

.theme-toggle-text {
    display: none;
}

/* MVP Studio page */
.mvp-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.mvp-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 4rem 0 1.75rem;
    text-align: center;
}

.logo-link {
    text-decoration: none;
}

.mvp-header .tagline {
    margin-bottom: 1.5rem;
}

.mvp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    font-weight: 500;
    color: var(--text-primary);
}

.mvp-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.mvp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: stretch;
}

.mvp-hero-copy {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mvp-hero-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(160deg, #2f3543 0%, #262c39 55%, #1f2531 100%);
    color: #f7d9a0;
    letter-spacing: 0.06em;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
    text-transform: none;
    border: 1px solid rgba(247, 217, 160, 0.35);
    box-shadow:
        0 8px 20px rgba(18, 22, 32, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(247, 217, 160, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mvp-hero-cta::after {
    content: '↓';
    font-size: 0.85rem;
}

.mvp-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(18, 22, 32, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(247, 217, 160, 0.32);
    border-color: rgba(247, 217, 160, 0.55);
}

.mvp-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.mvp-subtext {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 34rem;
    line-height: 1.75;
}


.mvp-spec-sheet {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--card-shadow);
    display: grid;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mvp-hero-copy:hover,
.mvp-spec-sheet:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
    background: var(--card-hover-bg);
}

.mvp-spec {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(193, 125, 69, 0.25);
}

.mvp-spec:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.mvp-spec-label {
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: none;
    color: rgba(193, 125, 69, 0.7);
}

.mvp-spec-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.mvp-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--card-border) 20%, var(--card-border) 80%, transparent 100%);
    opacity: 0.6;
}

.mvp-section {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    text-align: center;
}

.mvp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.mvp-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.mvp-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.9rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.mvp-card-week {
    align-self: flex-start;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: none;
    color: var(--accent-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(193, 125, 69, 0.4);
    background: rgba(193, 125, 69, 0.12);
}

.mvp-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
    background: var(--card-hover-bg);
}

.mvp-card:hover .mvp-card-week {
    border-color: var(--card-hover-border);
    background: rgba(212, 132, 44, 0.18);
    color: var(--accent-secondary);
}

.mvp-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

.mvp-list {
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: left;
}

.mvp-list li {
    position: relative;
    padding-left: 1.4rem;
}

.mvp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-secondary);
}

.mvp-steps {
    list-style: none;
    font-size: 1rem;
    color: var(--text-secondary);
    display: grid;
    gap: 1.25rem;
    counter-reset: steps;
    text-align: center;
    width: 100%;
    justify-items: center;
}

.mvp-steps li {
    counter-increment: steps;
    position: relative;
    line-height: 1.7;
    max-width: 28rem;
    display: grid;
    justify-items: center;
    gap: 0.65rem;
}

.mvp-steps li::before {
    content: counter(steps);
    position: static;
    display: inline-flex;
    width: 1.7rem;
    height: 1.7rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: var(--accent-primary);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    margin-bottom: 0.65rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.mvp-steps li:hover::before {
    transform: translate(-3px, -3px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
    background: var(--card-hover-bg);
    color: var(--accent-secondary);
}

.mvp-cta {
    display: grid;
    gap: 1.25rem;
    justify-items: center;
    text-align: center;
    padding: 2.4rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 231, 0.88));
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.mvp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(193, 125, 69, 0.15), transparent 45%, rgba(212, 132, 44, 0.12));
    pointer-events: none;
}

.mvp-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 30rem;
}

.mvp-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.1rem;
    background: linear-gradient(160deg, #313846 0%, #272e3b 55%, #1f2430 100%);
    color: #f7d9a0;
    letter-spacing: 0.05em;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    border: 1px solid rgba(247, 217, 160, 0.35);
    border-radius: 5px;
    text-decoration: none;
    box-shadow:
        0 14px 28px rgba(18, 22, 32, 0.38),
        0 4px 10px rgba(11, 14, 22, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(247, 217, 160, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mvp-cta-button::after {
    content: '↗';
    font-size: 0.95rem;
}

.mvp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 36px rgba(18, 22, 32, 0.42),
        0 6px 12px rgba(11, 14, 22, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -2px 0 rgba(247, 217, 160, 0.3);
    border-color: rgba(247, 217, 160, 0.55);
}

.mvp-footer {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}

.mvp-footer-text {
    line-height: 1.7;
}

.mvp-link {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.mvp-link:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(300px, 380px));
    }

    .products-grid--four {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .products-grid--four {
        grid-template-columns: repeat(2, minmax(300px, 380px));
    }
}

@media (max-width: 899px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: none;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .cd-placeholder {
        width: 375px;
        height: 330px;
    }

    .minidisc-cartridge {
        width: 345px;
        height: 300px;
    }

    .cd-disc {
        width: 270px;
        height: 270px;
    }

    .logo {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.75rem;
    }

    .mvp-wrapper {
        padding: 3rem 1.25rem 4rem;
        gap: 2.5rem;
    }

    .mvp-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mvp-hero-copy,
    .mvp-spec-sheet {
        padding: 2rem 1.5rem;
    }

    .mvp-hero-cta {
        align-self: center;
        width: 100%;
        justify-content: center;
    }

    .mvp-spec-sheet {
        gap: 1rem;
    }

    .mvp-section-title {
        font-size: 1.8rem;
    }

    .mvp-cta {
        padding: 2rem 1.5rem;
    }

    .mvp-cta-title {
        font-size: 1.2rem;
    }
}

/* Terminal cursor animation */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}



@media (prefers-reduced-motion: reduce) {
    .mvp-subtext::after {
        animation: none;
        opacity: 0;
    }
}
