/* ============================================
   MURIO - EMOTIONAL LANDING PAGE
   Focus: User transformation, not features
   ============================================ */

/* ==========================================
   DESIGN TOKENS
   ========================================== */
:root {
    /* Colors */
    --gold: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8860B;
    --gold-glow: rgba(212, 175, 55, 0.4);

    --cream: #FAF8F5;
    --cream-warm: #F5F0E8;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;

    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --text-white: #FFFFFF;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1000px;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   BACKGROUND
   ========================================== */
.bg-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #FAF8F5 0%, #F5F0E8 100%);
    z-index: -2;
}

.bg-noise {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 32px;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.nav-cta {
    position: relative;
    background: var(--gradient-gold);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    padding: 140px 32px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 520px;
}

.hero-prelude {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.8;
}

.fade-line {
    opacity: 0.7;
    font-style: italic;
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 36px;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-epic {
    position: relative;
    overflow: hidden;
}

.btn-epic .btn-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    border-radius: 100px;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-footnote {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.screen-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.scan-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 20px var(--gold);
    animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {

    0%,
    100% {
        top: 15%;
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    50% {
        top: 75%;
    }
}

.floating-data-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    animation: bubbleFloat 4s ease-in-out infinite;
    font-size: 0.85rem;
    font-weight: 600;
}

.bubble-1 {
    top: 25%;
    left: -10px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 50%;
    right: -20px;
    animation-delay: 0.7s;
}

.bubble-3 {
    bottom: 25%;
    left: 5px;
    animation-delay: 1.4s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.bubble-label {
    color: var(--text-dark);
}

.bubble-value {
    color: var(--gold-dark);
}

/* ==========================================
   SECTION DIVIDER
   ========================================== */
.section-divider {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-pulse {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    border-radius: 2px;
    animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ==========================================
   COMMON SECTION STYLES
   ========================================== */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro.light {
    color: var(--white);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-eyebrow.light {
    color: var(--gold-light);
}

.section-title-epic {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
}

.section-title-epic.light {
    color: var(--white);
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ==========================================
   STORY PARAGRAPHS
   ========================================== */
.story-paragraph {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-large {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.story-paragraph em {
    color: var(--gold-dark);
    font-style: italic;
}

.story-paragraph strong {
    color: var(--text-dark);
    font-weight: 600;
}

.story-paragraph.light {
    color: rgba(255, 255, 255, 0.8);
}

.story-paragraph.light strong {
    color: var(--gold);
}

.story-centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.story-emphasis {
    font-size: 1.25rem;
}

/* ==========================================
   EXPERIENCE SECTION
   ========================================== */
.experience-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.insight-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-card {
    background: var(--cream);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.insight-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.insight-emoji {
    font-size: 1.5rem;
}

.insight-label {
    font-weight: 500;
    color: var(--text-dark);
}

/* ==========================================
   MEMORY SECTION
   ========================================== */
.memory-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--charcoal);
}

.memory-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.memory-content {
    position: relative;
    z-index: 1;
}

.memory-visual {
    margin-top: 50px;
    text-align: center;
}

.memory-frame {
    position: relative;
    display: inline-block;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.memory-image {
    width: 100%;
    filter: grayscale(1) contrast(1.1) brightness(0.9);
}

.memory-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.memory-year {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.memory-caption {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ==========================================
   NARRATOR SECTION
   ========================================== */
.narrator-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.narrator-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.story-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.style-badge {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.circa {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.story-card-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-medium);
    font-style: italic;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--gold);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ==========================================
   QUEST SECTION
   ========================================== */
.quest-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.quest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s;
}

.badge-item.unlocked {
    background: var(--white);
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-soft);
}

.badge-item.locked {
    opacity: 0.5;
}

.badge-emoji {
    font-size: 2rem;
}

.badge-title {
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================
   PROOF SECTION
   ========================================== */
.proof-section {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    text-align: center;
}

.proof-content {
    max-width: 700px;
    margin: 0 auto;
}

.proof-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.proof-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.counter-highlight {
    color: var(--gold);
    font-size: 1.15em;
}

.proof-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   JOIN SECTION
   ========================================== */
.join-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.join-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.join-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.join-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Beta Form */
.beta-form-container {
    position: relative;
}

.beta-form {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.btn-submit-epic {
    width: 100%;
    position: relative;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

.btn-submit-epic .btn-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

.btn-submit-epic:hover {
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 36px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-medium);
}

/* Department Autocomplete */
.department-autocomplete {
    position: relative;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--gold);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: var(--shadow-medium);
}

.autocomplete-results.active {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
    background: var(--cream);
}

.autocomplete-item .dept-code {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.autocomplete-item .dept-name {
    color: var(--text-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    padding: 60px 32px 40px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-icon {
    background: rgba(212, 175, 55, 0.2);
}

.footer-logo .logo-icon svg {
    color: var(--gold);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 30px auto 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   ARCHEOLOGY SECTION
   ========================================== */
.archeology-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-content.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.xray-demo {
    background: var(--cream);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
}

.xray-layer {
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.layer-surface {
    background: var(--white);
    border: 2px solid #E5E7EB;
}

.layer-hidden {
    background: var(--gradient-gold);
    color: var(--white);
}

.xray-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 12px 0;
}

.layer-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 4px;
}

.layer-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ==========================================
   QUESTS SECTION
   ========================================== */
.quests-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.quests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.quest-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-out-expo);
    text-align: center;
}

.quest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.quest-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.quest-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.quest-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.quests-cta {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.quests-cta strong {
    color: var(--gold-dark);
}

/* ==========================================
   ALBUM SECTION
   ========================================== */
.album-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.album-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.album-card {
    background: var(--cream);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.album-card:not(.locked) {
    background: var(--white);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-soft);
}

.album-card.locked {
    opacity: 0.5;
}

.album-style {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.album-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.album-card:not(.locked) .album-count {
    color: var(--gold-dark);
    font-weight: 600;
}

/* ==========================================
   MEMORY LOCATION LABEL
   ========================================== */
.memory-location {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   TYPEWRITER CURSOR FIX
   ========================================== */
.typewriter-text::after {
    content: '|';
    color: var(--gold);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.ar-bubble,
.badge-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out-expo);
}

.ar-bubble.revealed,
.badge-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   TEMPORAL SLIDER (1950/2025)
   ========================================== */
.slider-container {
    position: relative;
    max-width: 600px;
    /* Wider for slider */
    aspect-ratio: 16 / 9;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    cursor: ew-resize;
    user-select: none;
}

.slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-new {
    z-index: 1;
}

.slider-old {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    /* Start at 50% */
}

/* Labels */
.slider-label {
    position: absolute;
    top: 20px;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.label-new {
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
}

.label-old {
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* Handle */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--gold);
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: inherit;
}

.handle-circle {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--black);
    z-index: 2;
}

.handle-circle svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    /* White arrows */
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-cta-container {
        align-items: center;
    }

    .title-line {
        font-size: 3.5rem;
    }

    .story-content,
    .story-content.reverse,
    .narrator-content,
    .quest-content,
    .join-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .story-visual {
        display: flex;
        justify-content: center;
    }

    .insight-card-stack,
    .badge-showcase {
        max-width: 450px;
        margin: 0 auto;
    }

    .quests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        /* Above mobile menu */
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out-expo);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: var(--font-display);
    }

    /* Hero & Sections */
    .title-line {
        font-size: 2.8rem;
    }

    .quests-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 100%;
        max-width: 300px;
        height: 600px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    /* Hide some floating bubbles on small mobile to avoid clutter */
    .bubble-2,
    .bubble-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .title-line {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        padding: 16px 24px;
    }

    .beta-form {
        padding: 24px;
    }

    .section-container {
        padding: 0 20px;
    }
}