/* thethird.quest - Pop-Art + Layered Depth */

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

:root {
    --primary: #F5C518;
    --black: #1A1A1A;
    --accent: #E8003D;
    --white: #F9F9F9;
    --halftone: #FFE066;
    --blue: #0057FF;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    position: relative;
}

/* Halftone dot background */
.halftone-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, var(--halftone) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Hero */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-panel {
    position: relative;
    background: var(--white);
    border: 3px solid var(--black);
    box-shadow: 8px 8px 0 var(--black);
    padding: 4rem 3rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.kinetic-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--black);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.kinetic-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: letterIn 0.4s forwards;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
}

/* Speech Bubble */
.speech-bubble {
    display: inline-block;
    background: var(--primary);
    border: 3px solid var(--black);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    position: relative;
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    color: var(--black);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid var(--black);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid var(--primary);
    z-index: 1;
}

/* Watercolor blobs */
.watercolor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    pointer-events: none;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background: var(--halftone);
    top: -60px;
    left: -60px;
}

.blob-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    bottom: -40px;
    right: -40px;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--blue);
    top: -80px;
    right: -80px;
    opacity: 0.25;
}

/* Features */
.features {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    text-align: center;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--black);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 3px solid var(--black);
    box-shadow: 5px 5px 0 var(--black);
    padding: 2.5rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: scale(1.04);
    box-shadow: 8px 8px 0 var(--black);
}

.feature-card .card-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
}

/* Callout */
.callout {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.callout-panel {
    position: relative;
    background: var(--primary);
    border: 3px solid var(--black);
    box-shadow: 8px 8px 0 var(--black);
    padding: 4rem 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.callout-panel h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.callout-panel p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.cta-btn {
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    padding: 0.8rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    border-top: 3px solid var(--black);
    font-size: 0.9rem;
}
