/* ============================================
   TryMyOutfit Landing Page Styles
   ============================================ */

:root {
    /* PALETTE - Global */
    --bg-color: #050505;
    --text-main: #FFFFFF;
    --accent-yellow: #FCEE0A;
    --accent-green: #38FF14;
    --accent-pink: #FF00FF;
    --grid-line: rgba(255, 255, 255, 0.15);
    --card-bg: #0A0A0A;

    /* Cyberpunk Specifics */
    --neon-glow: 0 0 10px rgba(252, 238, 10, 0.5), 0 0 20px rgba(252, 238, 10, 0.3);

    /* Bloom Variables - Default OFF (none) */
    --bloom-white: none;
    --bloom-yellow: none;
    --bloom-green: none;
    --bloom-pink: none;
}

/* Active Bloom State (Toggled via JS class 'bloom-on') */
body.bloom-on {
    --bloom-white: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.3);
    --bloom-yellow: 0 0 5px rgba(252, 238, 10, 0.8), 0 0 15px rgba(252, 238, 10, 0.4);
    --bloom-green: 0 0 5px rgba(56, 255, 20, 0.8), 0 0 15px rgba(56, 255, 20, 0.4);
    --bloom-pink: 0 0 5px rgba(255, 0, 255, 0.8), 0 0 15px rgba(255, 0, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    text-shadow: var(--bloom-white);
}

/* Prevent scrolling during intro */
body.loading {
    overflow: hidden;
    height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
}

/* Scribble Font Classes (For Hero/Story Only) */
.marker-font {
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 1px;
}

.rough-font {
    font-family: 'Rock Salt', cursive;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Remove bloom from grey text for readability */
.section-subtitle,
.hero-subtitle,
.step-time,
.price-amount span,
.accordion-content,
.copyright,
.feature-list li,
.test-card div,
.step-card p,
.adv-card p,
.price-card p,
.feature-text p,
.problem-card p,
.store-btns+div,
.footer-grid p {
    text-shadow: none !important;
}

/* --- CRT GRAIN & SCANLINE EFFECT --- */
#crt-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 2px, 3px 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Animated Grain Overlay */
#crt-layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.08;
    animation: grain 0.5s steps(5) infinite;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, -5%);
    }

    20% {
        transform: translate(-10%, 5%);
    }

    30% {
        transform: translate(5%, -10%);
    }

    40% {
        transform: translate(-5%, 15%);
    }

    50% {
        transform: translate(-10%, 5%);
    }

    60% {
        transform: translate(15%, 0);
    }

    70% {
        transform: translate(0, 10%);
    }

    80% {
        transform: translate(-15%, 0);
    }

    90% {
        transform: translate(10%, 5%);
    }
}

/* Subtle Flicker */
@keyframes crt-flicker {
    0% {
        opacity: 0.98;
    }

    5% {
        opacity: 0.95;
    }

    10% {
        opacity: 0.98;
    }

    100% {
        opacity: 0.98;
    }
}

#crt-layer::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(18, 16, 16, 0.05);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: crt-flicker 0.15s infinite;
}

/* --- UTILITIES & BLOOM OVERRIDES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.pill-btn {
    background: var(--accent-yellow);
    color: black;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Syne', sans-serif;
    box-shadow: 0 0 10px rgba(252, 238, 10, 0.6);
    text-shadow: none;
}

.pill-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(252, 238, 10, 0.8);
}

.pill-btn.outline {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    text-shadow: var(--bloom-white);
}

.pill-btn.outline:hover {
    background: var(--text-main);
    color: black;
    text-shadow: none;
}

.text-yellow {
    color: var(--accent-yellow);
    text-shadow: var(--bloom-yellow);
}

.text-green {
    color: var(--accent-green);
    text-shadow: var(--bloom-green);
}

.text-pink {
    color: var(--accent-pink);
    text-shadow: var(--bloom-pink);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 10px;
    text-align: center;
    text-shadow: var(--bloom-white);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #888;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ENTRANCE ANIMATION CLASSES --- */
.reveal-element {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-element.in-view {
    opacity: 1;
}

/* Animation 1: Glitch Up (Used for Cards) */
.glitch-up.in-view {
    animation: cyber-snap 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes cyber-snap {
    0% {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
        filter: blur(5px);
    }

    50% {
        transform: translateY(-5px) scale(1.02);
        opacity: 1;
        filter: none;
    }

    70% {
        transform: translateY(2px) scale(0.99);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Animation 2: Pop In (Used for Icons/Badges/Images) */
.pop-in.in-view {
    animation: pop-wiggle 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pop-wiggle {
    0% {
        transform: scale(0.5) rotate(-5deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Animation 3: Slide Skew (Used for Titles/Text) */
.slide-skew.in-view {
    animation: slide-skew-anim 0.8s ease-out forwards;
}

@keyframes slide-skew-anim {
    0% {
        transform: translateX(-30px) skewX(-20deg);
        opacity: 0;
    }

    100% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
    }
}

/* Stagger Delays for Grids */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* --- HERO & STORY SPECIAL EFFECTS --- */

/* Cyberpunk Grid Background */
.cyberpunk-bg {
    background-image:
        linear-gradient(rgba(56, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: #080808;
}

/* Glitch Title Effect */
.glitch-title {
    position: relative;
    color: white;
    opacity: 0;
    animation: fade-in-up 1s 2.5s forwards;
    text-shadow: var(--bloom-white);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-title::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -2px;
    text-shadow: -1px 0 var(--accent-green);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 30px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 100px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 60px, 0);
    }

    60% {
        clip: rect(50px, 9999px, 80px, 0);
    }

    80% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    100% {
        clip: rect(90px, 9999px, 100px, 0);
    }
}

/* RIPPLE EFFECT ANIMATION */
@keyframes ripple-wave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
        border-width: 3px;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
        border-width: 1px;
    }
}

.target-card.ripple-active::before,
.target-card.ripple-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-green), inset 0 0 15px var(--accent-green);
}

.target-card.ripple-active::before {
    animation: ripple-wave 1.5s ease-out infinite;
}

.target-card.ripple-active::after {
    animation: ripple-wave 1.5s ease-out 0.4s infinite;
}

/* Scribble SVG Animations */
.scribble-svg {
    position: absolute;
    pointer-events: none;
    overflow: visible;
    z-index: 20;
}

.scribble-path {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s ease-out forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grid-line);
    padding: 20px 0;
    opacity: 0;
    animation: fade-in 1s 5s forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne';
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px var(--accent-pink);
}

/* --- HERO COVER SECTION --- */
.hero-cover {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--grid-line);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    filter: contrast(1.2) grayscale(0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 6rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 4px 4px 0px black, 0 0 20px rgba(255, 255, 255, 0.5);
    max-width: 100%;
    word-break: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: black;
    display: inline-block;
    padding: 5px 10px;
    transform: rotate(-1deg);
    opacity: 0;
    animation: fade-in-up 1s 4.8s forwards;
    text-shadow: none;
}

.hero-cta-btn {
    opacity: 0;
    animation: fade-in-up 1s 5s forwards;
}

.hero-arrow {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 150px;
    height: 150px;
    transform: rotate(20deg);
    display: none;
    opacity: 0;
    animation: fade-in 1s 5.2s forwards;
}

@media(min-width: 768px) {
    .hero-arrow {
        display: block;
    }
}

/* --- INTRO ANIMATION STYLES --- */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3B6EA5;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.retro-desktop {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url('https://placehold.co/100x100/3B6EA5/3B6EA5');
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.retro-window {
    width: 600px;
    height: 400px;
    background: #ECE9D8;
    border: 1px solid #0055EA;
    border-radius: 8px 8px 0 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        width 0.6s ease-in-out, height 0.6s ease-in-out;
    overflow: hidden;
    z-index: 10;
}

.retro-window.open {
    transform: translate(-50%, -50%) scale(1);
}

.retro-window.maximized {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0;
    border: none;
    transform: translate(-50%, -50%) scale(1);
}

.title-bar {
    height: 30px;
    background: linear-gradient(to bottom, #0058E6 0%, #3A93FF 10%, #0054E3 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: white;
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    border-radius: 6px 6px 0 0;
    transition: opacity 0.3s;
}

.window-controls {
    display: flex;
    gap: 5px;
}

.win-btn {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 3px;
    border: 1px solid #fff;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
}

.win-btn.close {
    background: #E4421F;
}

.win-btn.max {
    background: #2055C1;
}

.win-btn.min {
    background: #2055C1;
}

.window-content {
    flex: 1;
    background: black;
    position: relative;
    overflow: hidden;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url('https://cdnjs.cloudflare.com/ajax/libs/galleriffic/2.0.1/css/loader.gif') no-repeat center center;
    background-size: contain;
    z-index: 5;
}

/* FAKE MOUSE */
#fake-cursor {
    position: absolute;
    top: 110%;
    left: 110%;
    width: 20px;
    height: 20px;
    z-index: 9999;
    pointer-events: none;
    transition: top 1s ease-in-out, left 1s ease-in-out;
}

#fake-cursor svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

#fake-cursor.click {
    animation: click-anim 0.2s;
}

@keyframes click-anim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

/* --- SCROLL STORY CONTAINER --- */
.story-wrapper {
    height: 500vh;
    position: relative;
}

.sticky-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    background:
        radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.8) 0%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(rgba(56, 255, 20, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 255, 20, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* SCENE & CARDS (Cyberpunk Style) */
.scene-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.story-card {
    position: absolute;
    width: 300px;
    height: 520px;
    border: 2px solid white;
    background: #111;
    display: flex;
    flex-direction: column;
    transition: transform 0.1s linear, opacity 0.1s linear;
    box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    will-change: transform;
}

.card-header {
    padding: 10px;
    border-bottom: 2px solid white;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.2rem;
    color: var(--accent-yellow);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    background: #111;
    text-shadow: var(--bloom-yellow);
}

.card-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.source-card {
    z-index: 10;
}

.source-img {
    background-image: url('/images/outfit.jpg');
    filter: grayscale(0.5);
}

.target-card {
    z-index: 5;
    opacity: 0.3;
    border-color: var(--accent-green);
}

.target-img {
    background-image: url('/images/before.png');
}

/* SCANNER EFFECT */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-green);
    box-shadow: 0 0 20px var(--accent-green);
    opacity: 0;
    z-index: 20;
}

/* EXTRACTED GARMENTS */
.garment-layer {
    position: absolute;
    width: 200px;
    height: 150px;
    border: 2px dashed var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 30;
    background-size: cover;
    background-position: center;
    background-color: #000;
    transform: scale(0.8);
    will-change: transform;
}

.g-jacket {
    top: 80px;
    left: 50px;
    background-image: url('https://images.unsplash.com/photo-1591047139829-d91aecb6caea?auto=format&fit=crop&w=400&q=80');
}

.g-pants {
    bottom: 80px;
    left: 50px;
    height: 180px;
    background-image: url('https://images.unsplash.com/photo-1542272617-08f08630329f?auto=format&fit=crop&w=400&q=80');
}

.result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/after.jpg');
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.result-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background: var(--accent-green);
    color: black;
    padding: 10px 20px;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    display: none;
    box-shadow: 5px 5px 0px black;
    border: 2px solid white;
    white-space: nowrap;
    z-index: 10;
    text-shadow: none;
}

.story-arrow-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    z-index: 40;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    filter: drop-shadow(0 0 5px var(--accent-yellow));
}

/* NARRATIVE TEXT (Scribble Style) */
.narrative-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    z-index: 50;
}

.narrative-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Rock Salt', cursive;
    color: var(--accent-yellow);
    text-transform: uppercase;
    text-shadow: 2px 2px 0px black, var(--bloom-yellow);
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translateY(20px);
}

.narrative-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- SECTION 2: PROBLEM (CLEAN SUMMIT STYLE) --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--grid-line);
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
}

.stat-large {
    font-family: 'Syne';
    font-size: 3.5rem;
    color: var(--accent-yellow);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: var(--bloom-yellow);
}

.problem-icon {
    font-size: 2.5rem;
    margin-top: 20px;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* --- SECTION 3: HOW IT WORKS (CLEAN) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.step-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border: 1px solid var(--grid-line);
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-green);
    z-index: 10;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--bg-color);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: var(--bloom-yellow);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-shadow: var(--bloom-white);
}

.step-time {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SECTION 4: PRICING (CLEAN) --- */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--grid-line);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.premium {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(252, 238, 10, 0.1);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--grid-line);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge.popular {
    background: var(--accent-yellow);
    color: black;
    box-shadow: var(--bloom-yellow);
}

.price-amount {
    font-family: 'Syne';
    font-size: 3rem;
    margin: 20px 0;
    font-weight: 800;
    text-shadow: var(--bloom-white);
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--accent-yellow);
    font-weight: bold;
    text-shadow: var(--bloom-yellow);
}

/* --- SECTION 5: WHY TMO --- */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.adv-card {
    background: var(--card-bg);
    border: 1px solid var(--grid-line);
    padding: 30px;
    transition: 0.3s;
}

.adv-card:hover {
    transform: scale(1.05);
}

.highlight-box {
    background: rgba(252, 238, 10, 0.1);
    color: var(--accent-yellow);
    padding: 5px 10px;
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    font-family: 'Syne';
    text-shadow: var(--bloom-yellow);
}

/* --- SECTION 6: SOCIAL PROOF --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    background: var(--card-bg);
    border: 1px solid var(--grid-line);
    padding: 30px;
    position: relative;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #333;
    margin-bottom: 20px;
    object-fit: cover;
    border: 2px solid #222;
}

.green-badge {
    background: rgba(56, 255, 20, 0.1);
    color: var(--accent-green);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 15px;
    text-shadow: var(--bloom-green);
}

/* --- SECTION 7: FEATURES --- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
}

.feature-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid var(--grid-line);
}

.feature-list li {
    margin-bottom: 10px;
    color: #ccc;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-yellow);
    margin-right: 10px;
    text-shadow: var(--bloom-yellow);
}

/* --- SECTION 8: FAQ --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--grid-line);
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--accent-yellow);
    text-shadow: var(--bloom-yellow);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    color: #aaa;
    line-height: 1.6;
}

.accordion-content.open {
    max-height: 200px;
    padding-bottom: 20px;
}

/* --- SECTION 9: VIDEO --- */
.video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid var(--grid-line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn {
    font-size: 4rem;
    color: var(--accent-yellow);
    opacity: 0.8;
    text-shadow: var(--bloom-yellow);
}

/* --- SECTION 10: DOWNLOAD --- */
.store-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.store-badge {
    height: 50px;
    cursor: pointer;
    border: 1px solid var(--grid-line);
    border-radius: 8px;
    background: black;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- SECTION 11: NEWSLETTER --- */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    background: transparent;
    border: 1px solid var(--grid-line);
    padding: 15px;
    color: white;
    font-family: 'Space Grotesk';
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-yellow);
    box-shadow: var(--bloom-yellow);
}

/* --- SECTION 12: FOOTER --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--grid-line);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    text-shadow: var(--bloom-yellow);
}

.social-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.copyright {
    padding-top: 20px;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .story-card {
        width: 240px;
        height: 400px;
    }

    .garment-layer {
        width: 160px;
        height: 120px;
    }

    .g-jacket {
        top: 60px;
        left: 40px;
    }

    .g-pants {
        bottom: 60px;
        left: 40px;
        height: 140px;
    }

    .scene-container {
        transform: scale(0.75);
        height: 500px;
    }

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

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

    .narrative-text {
        font-size: 1.2rem;
    }

    /* Adjust Intro Window for Mobile */
    .retro-window {
        width: 90vw;
        height: 300px;
    }
}