:root {
    --black: #000000;
    --white: #FFFFFF;
    --neon-yellow: #F5FF00;
    --brutal-red: #FF1F1F;
    --light-pink: #FFB3C6;
    --light-red: #FF6B6B;
    --light-purple: #D4AAFF;
    --light-yellow: #FFFDE7;
    --border-thick: 3px solid var(--black);
    --border-thick-4: 4px solid var(--black);
    --shadow-offset: 4px 4px 0px var(--black);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    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)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Loader */
.brutal-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    width: 0%;
    background: var(--neon-yellow);
    border-right: 3px solid var(--black);
    z-index: 10000;
    transition: width 1.5s ease-out, background-color 0.3s ease, opacity 0.3s ease;
}

#loader-overlay {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.brutalist-loader {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brutalist-loader span {
    width: 14px;
    height: 14px;
    background: #000000;
    border: 2px solid #000000;
    animation: brutalBounce 0.6s infinite alternate;
}

.brutalist-loader span:nth-child(1) { background: #F5FF00; animation-delay: 0s; }
.brutalist-loader span:nth-child(2) { background: #FF1F1F; animation-delay: 0.15s; }
.brutalist-loader span:nth-child(3) { background: #D4AAFF; animation-delay: 0.3s; }
.brutalist-loader span:nth-child(4) { background: #FFB3C6; animation-delay: 0.45s; }

@keyframes brutalBounce {
    from { transform: translateY(0px) scaleY(1); }
    to { transform: translateY(-10px) scaleY(1.2); }
}

.loader-text {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Skeleton */
.skeleton {
    background: #E0E0E0 !important;
    border: 3px solid #000000;
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.6) 50%,
        transparent 100%
    );
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.card-inner {
    opacity: 0; /* JS will fade this in */
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    border-bottom: var(--border-thick-4);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    border-bottom: 4px solid var(--neon-yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--neon-yellow);
}

/* Backgrounds & Text Utilities */
.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-light-pink { background-color: var(--light-pink); }
.bg-light-red { background-color: var(--light-red); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-yellow { background-color: var(--neon-yellow); }
.bg-pink-tint { background-color: rgba(255, 179, 198, 0.2); }
.bg-purple-tint { background-color: rgba(212, 170, 255, 0.2); }
.bg-pink-tint-15 { background-color: rgba(255, 179, 198, 0.15); }
.bg-purple-tint-15 { background-color: rgba(212, 170, 255, 0.15); }
.bg-light-yellow { background-color: var(--light-yellow); }

.text-white { color: var(--white); }
.text-yellow { color: var(--neon-yellow); }
.text-red { color: var(--brutal-red); }
.text-black-bold { color: var(--black); font-weight: 700; }
.text-light-pink { color: var(--light-pink); }
.text-light-purple { color: var(--light-purple); }
.text-stroke-black { -webkit-text-stroke: 1px var(--black); }
.border-white { border-color: var(--white) !important; }

/* Main Content */
main {
    padding-top: 5rem;
}

section {
    padding: 4rem 2rem;
    max-width: 100%;
}

.section-title {
    margin-left: max(2rem, calc((100vw - 1200px) / 2));
}
.section-subtitle {
    margin-left: max(2rem, calc((100vw - 1200px) / 2));
}
.product-grid, .pricing-grid, .steps-grid, .reviews-grid, .contact-grid, .hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
    background-color: var(--white);
    background-image: 
        linear-gradient(#E8E8E8 1px, transparent 1px),
        linear-gradient(90deg, #E8E8E8 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-text-box {
    border: 4px solid var(--black);
    box-shadow: 6px 6px 0px var(--black);
    padding: 24px 32px;
    background: var(--white);
    display: inline-block;
    border-radius: 0;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--black);
    animation: flicker 4s infinite;
}

@keyframes flicker {
    0%, 95%, 100% { opacity: 1; }
    96% { opacity: 0.4; }
    97% { opacity: 1; }
    98% { opacity: 0.2; }
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border: var(--border-thick);
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-offset);
    transition: all 0.1s ease;
}

.btn:hover {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--black);
}

.btn-yellow {
    background-color: var(--neon-yellow);
    color: var(--black);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-red {
    background-color: var(--brutal-red);
    color: var(--white);
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
}

/* Marquee */
.marquee-container {
    background-color: var(--black);
    color: var(--neon-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: var(--border-thick-4);
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card Base */
.product-card, .pricing-card, .step-card, .review-card, .contact-card {
    border: var(--border-thick);
    padding: 2rem;
    box-shadow: var(--shadow-offset);
    transition: all 0.1s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover, .pricing-card:hover, .step-card:hover, .review-card:hover, .contact-card:hover {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--black);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.tag.black { background-color: var(--black); color: var(--white); }
.tag.yellow { background-color: var(--neon-yellow); color: var(--black); }

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card p {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-display {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.thick-border {
    border: 6px solid var(--black) !important;
}

.badge-wrapper {
    /* wrapper styling handled by absolute badge */
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background-color: var(--black);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 2px solid var(--black);
    z-index: 10;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.duration, .savings {
    font-weight: 700;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 0.8rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: var(--white);
}

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

.initial-box {
    width: 50px;
    height: 50px;
    border: var(--border-thick);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.stars {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.icon-box {
    background-color: var(--black);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 700;
}

.contact-value {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.contact-subtext {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.response-strip {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    border: var(--border-thick);
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    border-top: 4px solid var(--neon-yellow);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--neon-yellow);
    font-weight: 700;
}

.footer-center {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-box {
    background-color: var(--neon-yellow);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.1s;
}

.social-box:hover {
    transform: translate(2px, 2px);
}

.copyright {
    text-align: center;
    font-weight: 700;
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--black);
    border-top: 3px solid var(--neon-yellow);
    border-bottom: 3px solid var(--neon-yellow);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.trust-marquee {
    display: inline-block;
    animation: trustScroll 20s linear infinite;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--neon-yellow);
    font-size: 14px;
    letter-spacing: 2px;
}

.trust-content {
    display: inline-flex;
    gap: 60px;
}

.trust-content span {
    display: inline-block;
    white-space: pre;
}

@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FAQ Section */
#faq {
    background-color: var(--neon-yellow);
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
    padding: 80px 40px;
}

#faq .section-title {
    color: var(--black);
    margin-left: max(0px, calc((100vw - 800px) / 2));
}

#faq .section-subtitle {
    color: var(--black);
    margin-bottom: 3rem;
    margin-left: max(0px, calc((100vw - 800px) / 2));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background-color: var(--white);
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    margin-bottom: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s;
    min-height: 48px;
}

.faq-item:hover {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--black);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--black);
    font-size: 16px;
    padding-right: 1rem;
}

.faq-icon {
    font-weight: bold;
    color: var(--black);
    font-size: 24px;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--black);
    font-size: 14px;
}

.faq-answer p {
    padding-top: 12px;
    border-top: 2px solid var(--black);
}

.faq-item.open .faq-answer-wrapper {
    max-height: 500px;
}

.faq-item.open:nth-child(odd) {
    background-color: var(--light-pink);
}

.faq-item.open:nth-child(even) {
    background-color: var(--light-purple);
}

/* Coming Soon Buttons */
.btn-coming-soon {
    background-color: #E0E0E0;
    color: #888888;
    border: 3px solid #888888;
    box-shadow: 3px 3px 0px #888888;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-coming-soon:hover {
    transform: none;
    box-shadow: 3px 3px 0px #888888;
}

.badge-dropping-soon {
    background-color: var(--light-pink);
    color: var(--black);
    border: 2px solid var(--black);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    main {
        padding-top: 0;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    .hero-text-box {
        padding: 16px 20px;
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        margin-left: 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-left: 0;
        margin-bottom: 1.5rem;
    }

    .product-grid, .pricing-grid, .steps-grid, .reviews-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #faq {
        padding: 40px 20px;
    }

    .faq-header {
        padding: 15px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 15px 15px 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-right {
        justify-content: center;
    }

    .response-strip {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
}
