/* ============================================
   NEUBRUTALIST DESIGN SYSTEM — 200BAR.STUDIO
   ============================================ */
:root {
    --bg: #FFFEF0;
    --bg-alt: #f5f0e5;
    --white: #ffffff;
    --black: #000000;
    --text: #000000;
    --text-muted: #4a4a4a;
    --cyan: #00CED1;
    --cyan-dark: #008B8D;
    --yellow: #FEF08A;
    --lime: #A3E635;
    --pink: #EC4899;
    --blue: #3B82F6;
    --orange: #F97316;
    --font-body: 'Space Grotesk', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --shadow-sm: 3px 3px 0px 0px #000;
    --shadow-md: 5px 5px 0px 0px #000;
    --shadow-lg: 8px 8px 0px 0px #000;
    --shadow-xl: 12px 12px 0px 0px #000;
    --border: 3px solid #000;
    --border-thick: 4px solid #000;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ ACCESSIBILITY ============ */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

/* ============ LAYOUT ============ */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
    display: flex;
    gap: 4px;
}
.lang-button {
    background: var(--white);
    border: var(--border);
    color: var(--text);
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 100ms ease;
    box-shadow: var(--shadow-sm);
}
.lang-button:hover {
    background: var(--yellow);
    transform: translate(-1px, -1px);
    box-shadow: var(--shadow-md);
}
.lang-button.active {
    background: var(--cyan);
    color: var(--white);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--bg);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title .highlight {
    display: inline-block;
    background: var(--cyan);
    color: var(--white);
    padding: 0 12px;
    border: var(--border);
    box-shadow: var(--shadow-md);
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    max-width: 28ch;
    margin-bottom: 40px;
    color: var(--text-muted);
}
.cta-button {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    background: var(--cyan);
    color: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    cursor: pointer;
    transition: transform 100ms ease, box-shadow 100ms ease;
}
.cta-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-lg);
}
.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

/* ============ SUPERPOWERS SECTION ============ */
#trust {
    background: var(--yellow);
    border-top: var(--border);
    border-bottom: var(--border);
}
.section-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 48px;
    line-height: 1.1;
}
.superpowers {
    display: grid;
    gap: 24px;
}
.power-item {
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-md);
    padding: 28px;
    transition: transform 100ms ease, box-shadow 100ms ease;
}
.power-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-lg);
}
.power-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.power-item h3::before {
    content: ">";
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: 700;
}
.power-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 50ch;
}

/* ============ ACTION/FORM SECTION ============ */
#action {
    background: var(--bg);
}
#action .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.form-intro p {
    max-width: 50ch;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    padding: 32px;
}
.form-group {
    position: relative;
}
.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--black);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    padding: 14px 0;
    transition: border-color 200ms ease;
}
.form-input:focus {
    outline: none;
    border-bottom-color: var(--cyan);
}
.form-label {
    position: absolute;
    top: 14px;
    left: 0;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    pointer-events: none;
    transition: all 200ms ease;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--black);
    color: var(--white);
    padding: 32px 0;
    text-align: center;
    border-top: var(--border);
}
footer p {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.footer-links {
    margin-top: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    transition: color 200ms ease;
}
.footer-links a:hover {
    color: var(--cyan);
}
.footer-links .separator {
    color: rgba(255,255,255,0.3);
    margin: 0 12px;
}

/* ============ THANK YOU PAGE ============ */
body.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
body.thank-you-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.thank-you-container {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 40px 24px;
    max-width: 700px;
}
.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 3rem;
    font-weight: 700;
    background: var(--cyan);
    color: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
    animation: pulse-brutal 2s infinite;
}
@keyframes pulse-brutal {
    0%, 100% { transform: translate(0, 0); box-shadow: var(--shadow-lg); }
    50% { transform: translate(-2px, -2px); box-shadow: var(--shadow-xl); }
}
.thank-you-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1;
}
.thank-you-title .highlight {
    background: var(--cyan);
    color: var(--white);
    padding: 0 8px;
    border: 2px solid var(--black);
}
.thank-you-message {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.countdown {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 32px;
    font-family: var(--font-mono);
}
.countdown-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border: 2px solid var(--black);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============ PRIVACY & TERMS PAGES ============ */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}
.legal-header {
    margin-bottom: 64px;
    padding-top: 40px;
}
.legal-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.1;
}
.legal-title .highlight {
    background: var(--cyan);
    color: var(--white);
    padding: 0 8px;
    border: 2px solid var(--black);
}
.legal-updated {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}
.legal-section {
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-md);
    padding: 28px;
    margin-bottom: 24px;
    transition: transform 100ms ease, box-shadow 100ms ease;
}
.legal-section:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}
.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.legal-section h2::before {
    content: ">";
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 1.4rem;
    font-weight: 700;
}
.legal-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 12px;
}
.legal-section p,
.legal-section li {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.legal-section ul {
    list-style: none;
    padding-left: 0;
}
.legal-section li {
    position: relative;
    padding-left: 24px;
}
.legal-section li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-weight: 700;
}
.legal-section a {
    color: var(--cyan-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 200ms ease;
}
.legal-section a:hover {
    color: var(--cyan);
}
.contact-info {
    background: var(--bg-alt);
    padding: 20px;
    border: 2px solid var(--black);
    margin: 16px 0;
}
.contact-info p {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin: 4px 0;
    color: var(--text);
}
.back-button {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--bg);
    color: var(--text);
    border: var(--border);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    margin: 32px 0;
    transition: transform 100ms ease, box-shadow 100ms ease;
}
.back-button:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-md);
}

/* ============ ANIMATIONS ============ */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
    .superpowers {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    #action .container {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
    .superpowers {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    section { padding: 56px 0; }
    .lang-switcher { top: 12px; right: 12px; }
}
