/* Pixie Journey — Multi-Page Website Styles */

:root {
    --bg-warm-white: #FFF8F3;
    --white: #FFFFFF;
    --tan: #E8DDD4;
    --outline-brown: #806048;
    --text-brown: #6A5344;
    --salmon: #EDACA0;
    --content-peach: #F8D1BD;
    --mood-great: #ffe9b3;
    --mood-good: #d0e6db;
    --mood-okay: #f7e2d9;
    --mood-low: #c5dde8;
    --mood-bad: #eaa090;
    --btn-bg: #d0e6db;
    --font-display: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --font-pixel: 'VT323', monospace;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-warm-white);
    color: var(--text-brown);
    line-height: 1.6;
}

a { color: var(--outline-brown); }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--outline-brown);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--outline-brown);
}
.logo-pixel {
    font-family: var(--font-pixel);
    font-size: 1.75rem;
    letter-spacing: 1px;
}
.logo-journey {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--mood-good);
    text-shadow: 1px 1px 0 var(--outline-brown);
    transition: transform 0.2s ease;
}

.logo:hover .logo-journey {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-4px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-2px); }
}

/* Logo Cubes - simple colored squares, no faces */
.logo-cubes {
    display: grid;
    grid-template-columns: repeat(2, 14px);
    gap: 3px;
    transform: rotate(-3deg);
}
.cube {
    width: 14px;
    height: 14px;
    border: 2px solid var(--outline-brown);
    border-radius: 3px;
}
.cube-1 { background: var(--mood-great); }
.cube-2 { background: var(--mood-good); }
.cube-3 { background: var(--mood-okay); }
.cube-4 { background: var(--mood-low); }
/* Hide faces in header logo */
.logo-cubes .face { display: none; }

/* ===== MOOD STICKER FACES (per styleguide v4.1) ===== */
.sticker-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.sticker-mood {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 3px solid var(--outline-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 3px 3px 0 rgba(128, 96, 72, 0.3);
    cursor: pointer;
    transition: all 0.15s;
}
.sticker-mood:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 rgba(128, 96, 72, 0.3);
}
.sticker-great { background: var(--mood-great); }
.sticker-good { background: var(--mood-good); }
.sticker-okay { background: var(--mood-okay); }
.sticker-low { background: var(--mood-low); }
.sticker-bad { background: var(--mood-bad); }
.sticker-label {
    font-family: var(--font-pixel);
    font-size: 16px;
    color: var(--outline-brown);
}

/* Face container */
.sticker-mood .face,
.entry-demo .face {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.sticker-mood .eyes,
.entry-demo .eyes {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Squinty eyes ^^ - arch curves UP */
.sticker-mood .eye-squinty,
.entry-demo .eye-squinty {
    width: 7px;
    height: 4px;
    background: transparent;
    border: 2px solid var(--outline-brown);
    border-radius: 7px 7px 0 0;
    border-bottom: none;
}

/* Dot eyes */
.sticker-mood .eye-dot,
.entry-demo .eye-dot {
    width: 5px;
    height: 5px;
    background: var(--outline-brown);
    border-radius: 50%;
}

/* Sad droopy eyes - curved DOWN */
.sticker-mood .eye-sad,
.entry-demo .eye-sad {
    width: 6px;
    height: 3px;
    background: transparent;
    border: 2px solid var(--outline-brown);
    border-radius: 0 0 6px 6px;
    border-top: none;
}

/* X eyes */
.sticker-mood .eye-x,
.entry-demo .eye-x {
    width: 8px;
    height: 8px;
    position: relative;
}
.sticker-mood .eye-x::before,
.sticker-mood .eye-x::after,
.entry-demo .eye-x::before,
.entry-demo .eye-x::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: var(--outline-brown);
    border-radius: 1px;
    top: 50%;
    left: 50%;
}
.sticker-mood .eye-x::before,
.entry-demo .eye-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.sticker-mood .eye-x::after,
.entry-demo .eye-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* GREAT: D-mouth - solid fill */
.sticker-mood .mouth-d,
.entry-demo .mouth-d {
    width: 6px;
    height: 5px;
    background: var(--outline-brown);
    border-radius: 0 0 50% 50%;
    margin-top: 1px;
}

/* GOOD: Smile - outline only */
.sticker-mood .mouth-smile,
.entry-demo .mouth-smile {
    width: 8px;
    height: 5px;
    background: transparent;
    border: 2px solid var(--outline-brown);
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: 1px;
}

/* OKAY: Flat line */
.sticker-mood .mouth-flat,
.entry-demo .mouth-flat {
    width: 6px;
    height: 2px;
    background: var(--outline-brown);
    border-radius: 1px;
    margin-top: 2px;
}

/* LOW: Small frown */
.sticker-mood .mouth-small-frown,
.entry-demo .mouth-small-frown {
    width: 8px;
    height: 5px;
    background: transparent;
    border: 2px solid var(--outline-brown);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    margin-top: 2px;
}

/* BAD: Big frown */
.sticker-mood .mouth-frown,
.entry-demo .mouth-frown {
    width: 10px;
    height: 5px;
    background: transparent;
    border: 2px solid var(--outline-brown);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    margin-top: 2px;
}

/* Blush - on Great, Good, Okay ONLY */
.sticker-mood .blush {
    width: 8px;
    height: 5px;
    background: rgba(255, 180, 180, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
}
.sticker-mood .blush.left { left: 4px; }
.sticker-mood .blush.right { right: 4px; }

/* Navigation */
.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    color: var(--outline-brown);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.15s;
}
.main-nav a:hover,
.main-nav a.active {
    background: var(--tan);
}
.main-nav .nav-cta {
    background: var(--btn-bg);
    border: 2px solid var(--outline-brown);
    box-shadow: 2px 2px 0 var(--outline-brown);
}
.main-nav .nav-cta:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--outline-brown);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--outline-brown);
    cursor: pointer;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--text-brown);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumbs a {
    text-decoration: none;
    color: var(--outline-brown);
}
.breadcrumbs i {
    font-size: 0.75rem;
    color: var(--salmon);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: 3px solid var(--outline-brown);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 3px 3px 0 var(--outline-brown);
}
.btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--outline-brown);
}
.btn-primary {
    background: var(--btn-bg);
    color: var(--outline-brown);
}
.btn-secondary {
    background: var(--white);
    color: var(--outline-brown);
}
.btn-lg {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}
.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-mascot { margin-bottom: 2rem; }
.hero-pixie-img {
    max-width: 280px;
    margin: 0 auto;
    filter: drop-shadow(4px 4px 0 var(--outline-brown));
}
.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--outline-brown);
    margin-bottom: 0.25rem;
}
.hero-tagline-sub {
    font-size: 1rem;
    color: var(--text-brown);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-pixel);
    font-size: 3rem;
    font-weight: 400;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--salmon);
    font-weight: 600;
    margin-bottom: 1rem;
}
.hero-pitch {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.hero-launch {
    font-size: 0.9rem;
    color: var(--text-brown);
}

/* ===== FLOATING CIRCLES ===== */
/* MUST be z-index: 0 so cards (z-index: 1) appear above */
.floating-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: float-circle 6s ease-in-out infinite;
}
.circle-1 { width: 200px; height: 200px; background: var(--mood-great); top: 10%; left: -50px; animation-duration: 7s; }
.circle-2 { width: 150px; height: 150px; background: var(--mood-good); top: 60%; right: -30px; animation-duration: 8s; animation-direction: reverse; }
.circle-3 { width: 100px; height: 100px; background: var(--mood-okay); bottom: 20%; left: 10%; animation-duration: 6s; }
.circle-4 { width: 120px; height: 120px; background: var(--mood-low); top: 30%; right: 15%; animation-duration: 9s; animation-direction: reverse; }
.circle-5 { width: 80px; height: 80px; background: var(--salmon); bottom: 10%; right: 25%; animation-duration: 5s; }

@keyframes float-circle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-bottom: 2px solid var(--salmon);
}
.page-header h1 {
    font-family: var(--font-pixel);
    font-size: 3rem;
    font-weight: 400;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.page-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-brown);
}
.effective-date {
    font-size: 0.9rem;
    color: var(--text-brown);
    margin-top: 0.5rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 2rem;
    position: relative;
}
.section-alt {
    background: var(--white);
    border-top: 3px solid var(--outline-brown);
    border-bottom: 3px solid var(--outline-brown);
}
.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.section-title {
    font-family: var(--font-pixel);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--outline-brown);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-brown);
}
.content-narrow {
    max-width: 800px;
}
.text-center { text-align: center; }

/* ===== CARDS ===== */
/* All cards must have z-index: 1 to appear above floating circles (z-index: 0) */
.about-card, .content-card {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 4px 4px 0 var(--outline-brown);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.about-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.about-card h2, .content-card h2 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1.25rem;
}
.about-card p {
    margin-bottom: 1rem;
}
.about-card .btn {
    margin-top: 0.5rem;
}
.about-coming {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--salmon);
    font-weight: 600;
    padding-top: 1.25rem;
    border-top: 2px dashed var(--salmon);
}
.large-text {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
    max-width: 400px;
    margin: 1rem auto;
}
.check-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.check-list i { color: var(--salmon); }

/* ===== STICKER DEMO ===== */
.entry-demo {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 4px 4px 0 var(--outline-brown);
    text-align: center;
}
.entry-demo h3 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1rem;
}
.sticker-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.entry-note { color: var(--text-brown); font-style: italic; }
.support-msg { margin-top: 1rem; text-align: center; }

/* ===== APP TEASER ===== */
.teaser-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.teaser-phone img {
    max-width: 300px;
    border: 3px solid var(--outline-brown);
    border-radius: 24px;
    box-shadow: 4px 4px 0 var(--outline-brown);
}
.teaser-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}
.teaser-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.teaser-features i {
    color: var(--outline-brown);
    font-size: 1.25rem;
    width: 24px;
}

/* ===== LALAH ===== */
.lalah-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.lalah-image img {
    max-width: 160px;
    filter: drop-shadow(3px 3px 0 var(--outline-brown));
}
.lalah-text {
    max-width: 450px;
}
.lalah-text h2 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1rem;
}
.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.lalah-moods {
    list-style: none;
    margin: 1rem 0;
}
.lalah-moods li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lalah-moods i { color: var(--outline-brown); }

/* ===== COMPARISON ===== */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.comparison-card {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 3px 3px 0 var(--outline-brown);
    position: relative;
    z-index: 1;
}
.comparison-card h3 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1rem;
    text-align: center;
}
.comparison-card ul {
    list-style: none;
}
.comparison-card li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.comparison-card li i { width: 20px; }
.comparison-card li.con { color: var(--mood-bad); }
.pixie-card { background: var(--mood-good); }
.pixie-card .tagline {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* ===== PRICING ===== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.toggle-label { font-weight: 600; }
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--tan);
    border: 2px solid var(--outline-brown);
    border-radius: 32px;
    transition: 0.2s;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: var(--white);
    border: 2px solid var(--outline-brown);
    border-radius: 50%;
    transition: 0.2s;
}
input:checked + .toggle-slider { background-color: var(--mood-good); }
input:checked + .toggle-slider:before { transform: translateX(28px); }
.save-badge {
    background: var(--mood-great);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid var(--outline-brown);
}

.pricing-section { max-width: 1100px; }
.pricing-cards, .pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pricing-card, .price-card {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 4px 4px 0 var(--outline-brown);
    position: relative;
    z-index: 1;
    text-align: center;
}
.pricing-card.featured, .price-card.featured {
    border-width: 4px;
    transform: scale(1.02);
    z-index: 1;
}
.pricing-card.locked, .price-card.locked { opacity: 0.9; }
.popular-badge, .locked-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 20px;
    border: 2px solid var(--outline-brown);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}
.popular-badge { background: var(--mood-great); color: var(--outline-brown); }
.locked-badge { background: var(--tan); color: var(--text-brown); }
.pricing-card h3, .price-card h3 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.price .strike {
    text-decoration: line-through;
    color: var(--text-brown);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}
.price-note {
    font-size: 0.9rem;
    color: var(--text-brown);
    margin-bottom: 1rem;
}
.waitlist-deal {
    background: #FFF5E6; /* Cream - allowed card bg */
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.pricing-card ul, .price-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}
.pricing-card li, .price-card li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--salmon);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pricing-card li:last-child, .price-card li:last-child { border-bottom: none; }
.tier-categories {
    font-size: 0.9rem;
    color: var(--text-brown);
    margin-bottom: 1.5rem;
}
.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===== WAITLIST ===== */
.waitlist-highlight {
    background: #f7e2d9; /* Peach - allowed card bg */
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 4px 4px 0 var(--outline-brown);
}
.waitlist-highlight h2 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1rem;
}
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border: 2px solid var(--outline-brown);
    border-radius: 8px;
}
.benefit i { color: var(--outline-brown); }
.referral-note {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ===== EMAIL / WAITLIST FORMS ===== */
.email-box, .waitlist-box {
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 4px 4px 0 var(--outline-brown);
    position: relative;
    z-index: 1;
}
.email-box {
    background: #FFF5E6; /* Soft Cream - PDF download */
}
.waitlist-box {
    background: #f7e2d9; /* Peach - Waitlist */
}
.email-box h2, .waitlist-box h2 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.waitlist-benefits { margin-bottom: 1.5rem; }
.email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.email-form .input {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--outline-brown);
    border-radius: 8px;
    min-width: 250px;
    font-family: var(--font-body);
}
.email-note {
    font-size: 0.85rem;
    color: var(--text-brown);
    margin-bottom: 0.5rem;
}
.email-license {
    font-size: 0.8rem;
    color: var(--outline-brown);
    opacity: 0.8;
}
.form-optional {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--outline-brown);
    text-align: left;
}
.form-optional > p {
    font-weight: 600;
    margin-bottom: 1rem;
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.checkbox-group input {
    width: 18px;
    height: 18px;
}

/* ===== PREVIEW GRID ===== */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.preview-card {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 3px 3px 0 var(--outline-brown);
    position: relative;
    z-index: 1;
}
.preview-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}
.preview-card span {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--outline-brown);
}
.preview-note {
    text-align: center;
    color: var(--text-brown);
    font-size: 0.9rem;
}

/* ===== PREVIEW CARD FLIP ===== */
.preview-card {
    perspective: 800px;
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.preview-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
}
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(180deg);
}
.flip-card-back img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}
.flip-card-back span {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--outline-brown);
    font-size: 0.9rem;
}
.flip-hint {
    font-size: 0.75rem;
    color: var(--text-brown);
    opacity: 0.6;
    margin-top: 0.25rem;
    display: block;
}

/* ===== DOT GRID BONUS ===== */
.dot-grid-bonus {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #FFF5E6;
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0 1.5rem;
    box-shadow: 3px 3px 0 var(--outline-brown);
}
.dot-grid-thumb {
    width: 120px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid var(--outline-brown);
    flex-shrink: 0;
}
.dot-grid-info h3 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.dot-grid-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 2rem;
    gap: 1rem;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    font-family: var(--font-display);
    line-height: 1;
    z-index: 1001;
}
.lightbox-close:hover { opacity: 0.7; }
.lightbox-caption {
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-align: center;
}
.lightbox-cta {
    cursor: pointer;
}

/* ===== FAQ ===== */
.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--outline-brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--salmon);
}
.faq-item {
    background: var(--white);
    border: 2px solid var(--outline-brown);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 2px 2px 0 var(--outline-brown);
}
.faq-item summary {
    font-family: var(--font-display);
    font-weight: 600;
    padding: 1rem 1.25rem;
    cursor: pointer;
    color: var(--outline-brown);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { border-bottom: 1px dashed var(--salmon); }
.faq-item p {
    padding: 1rem 1.25rem;
}
.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.faq-item-preview {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 2px 2px 0 var(--outline-brown);
}
.faq-item-preview h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.faq-item-preview p {
    font-size: 0.95rem;
    margin: 0;
}
.faq-cta { text-align: center; margin-top: 2rem; }

/* ===== FEATURES PAGE ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.step-card {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 3px 3px 0 var(--outline-brown);
}
.step-icon {
    font-size: 2.5rem;
    color: var(--outline-brown);
    margin-bottom: 1rem;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.95rem;
    margin: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border: 3px solid var(--outline-brown);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 2px 2px 0 var(--outline-brown);
    position: relative;
    z-index: 1;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.feature-card h3 i {
    margin-right: 0.5rem;
}
.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}
.unique-feature {
    background: #FFF5E6; /* Cream - allowed card bg */
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--outline-brown);
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
}
.clinical-preview {
    background: #faf6f0; /* Cream White - allowed card bg */
    border: 3px solid var(--outline-brown);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 4px 4px 0 var(--outline-brown);
}
.clinical-preview h3 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1rem;
}
.badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.badge {
    background: var(--white);
    padding: 0.4rem 0.75rem;
    border: 2px solid var(--outline-brown);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.clinical-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.clinical-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.clinical-features i { color: var(--outline-brown); width: 20px; }
.feature-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.feature-summary span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feature-summary i { color: var(--mood-good); }

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--salmon);
}
.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.legal-content h3 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}
.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
}
.legal-notice {
    background: #FFF5E6; /* Cream - allowed card bg */
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--outline-brown);
    margin-bottom: 2rem;
}

/* ===== CRISIS / SAFETY ===== */
.crisis-box {
    background: #fff5f5;
    border: 3px solid #E85A5A;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 4px 4px 0 #8B3A3A;
}
.crisis-box h2 {
    font-family: var(--font-display);
    color: #8B3A3A;
    margin-bottom: 1rem;
}
.crisis-warning {
    background: #E85A5A;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}
.crisis-resources h3 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.crisis-list {
    list-style: none;
    margin: 0;
}
.crisis-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--salmon);
}
.crisis-list li:last-child { border-bottom: none; }
.dont-list, .do-list {
    list-style: none;
    margin: 1rem 0;
}
.dont-list li, .do-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dont-list i { color: var(--mood-bad); }
.do-list i { color: var(--mood-good); }

/* ===== THANK YOU PAGE ===== */
.thank-you-hero { margin-bottom: 2rem; }
.thank-you-mascot {
    max-width: 200px;
    margin: 0 auto 1.5rem;
}
.confirmation-msg {
    font-size: 1.1rem;
    color: var(--text-brown);
}
.wait-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--white);
    border-top: 3px solid var(--outline-brown);
    padding: 3rem 2rem 2rem;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h4 {
    font-family: var(--font-display);
    color: var(--outline-brown);
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section li {
    margin-bottom: 0.5rem;
}
.footer-section a {
    text-decoration: none;
    color: var(--text-brown);
}
.footer-section a:hover { color: var(--outline-brown); }
.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--outline-brown);
    margin-bottom: 0.5rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px dashed var(--salmon);
    font-size: 0.9rem;
    color: var(--text-brown);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--outline-brown);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s;
    z-index: 200;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--salmon);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-brown);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-inner { padding: 0.75rem 1rem; }
    .logo-pixel { font-size: 1.5rem; }
    .logo-journey { font-size: 1.25rem; }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 2px solid var(--outline-brown);
        padding: 1rem;
        flex-direction: column;
        display: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: flex; }
    .main-nav a { width: 100%; text-align: center; padding: 0.75rem; }
    .mobile-menu-toggle { display: block; }
    
    .hero { padding: 2rem 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-pixie-img { max-width: 200px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    
    .section { padding: 2.5rem 1rem; }
    .page-header { padding: 2rem 1rem; }
    .page-header h1 { font-size: 2rem; }
    
    .lalah-intro, .teaser-content { flex-direction: column; text-align: center; }
    .lalah-intro { gap: 1rem; }
    .lalah-image img { max-width: 120px; }
    .lalah-text { text-align: center; }
    .lalah-moods { display: inline-block; text-align: left; }
    
    .email-form { flex-direction: column; align-items: center; }
    .email-form .input { width: 100%; max-width: 300px; }
    
    .pricing-card.featured, .price-card.featured { transform: scale(1); }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .feature-summary { flex-direction: column; gap: 0.75rem; }

    .dot-grid-bonus { flex-direction: column; text-align: center; }
    .dot-grid-bonus img { max-width: 200px; margin: 0 auto; }
}

/* =====================================================
   ACCESSIBILITY: Focus styles
   ===================================================== */
*:focus-visible {
    outline: 3px solid #7A9B90;
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 3px solid #7A9B90;
    outline-offset: 2px;
}

/* Skip navigation link */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #2C4A52;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-nav:focus {
    top: 0;
}

/* Visually hidden labels (accessible but invisible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   ACCESSIBILITY: Reduced motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .circle { display: none; }
    .flip-card-inner { transition: none; }
}

/* =====================================================
   TABLET BREAKPOINT (769px - 1024px)
   ===================================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .preview-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { gap: 2rem; }
    .lalah-intro { gap: 1.5rem; }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    nav, footer, .circle, .skip-nav,
    .lightbox-overlay, .cta, .btn,
    .mobile-toggle, .email-form { display: none !important; }
    
    body { font-size: 11pt; color: #000; background: #fff; }
    .section { padding: 1rem 0; page-break-inside: avoid; }
    a { color: #000; text-decoration: underline; }
    a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
    img { max-width: 100%; page-break-inside: avoid; }
}
