@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    --bg-page: #F3F4F6;
    --card-bg: #FFFFFF;
    --card-bg-subtle: #F8FAFC;
    --border-color: #0F172A;
    --shadow-color: #0F172A;
    
    /* Minimal Neobrutal Pastel Palette (Lovable Inspired) */
    --accent-purple: #8B5CF6;
    --accent-purple-light: #DDD6FE;
    --accent-blue: #3B82F6;
    --accent-blue-light: #BFDBFE;
    --accent-green: #10B981;
    --accent-green-light: #D1FAE5;
    --accent-yellow: #F59E0B;
    --accent-yellow-light: #FEF3C7;
    --accent-pink: #F43F5E;
    --accent-pink-light: #FCE7F3;
    
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-page);
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    padding: 24px 20px;
    line-height: 1.5;
}

.webinar-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- HEADER / BRAND (FLOATING NEO-BRUTAL GLASS) --- */
.nav-bar {
    position: sticky;
    top: 12px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    border-radius: 99px;
    padding: 10px 24px;
    margin: 0 auto 32px auto;
    max-width: 1180px;
    transition: all 0.2s ease;
}
@media (max-width: 768px) {
    .nav-bar {
        top: 8px;
        padding: 8px 16px;
        border-radius: 20px;
        box-shadow: 4px 4px 0px #000000;
        margin-bottom: 20px;
    }
}

.brand-badge {
    background: var(--accent-purple);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    padding: 6px 14px;
    border: 2px solid var(--border-color);
    box-shadow: 2px 2px 0px var(--shadow-color);
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green-light);
    color: #065F46;
    border: 2px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

/* --- HERO SECTION --- */
.hero-section {
    text-align: center;
    max-width: 860px;
    margin: 20px auto 0;
}

.hero-tag {
    display: inline-block;
    background: var(--accent-yellow-light);
    color: #92400E;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 16px;
    border: 2px solid var(--border-color);
    border-radius: 99px;
    margin-bottom: 16px;
    box-shadow: 2px 2px 0px var(--shadow-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent-purple);
    background: var(--accent-purple-light);
    padding: 2px 10px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* --- BENTO FEATURES --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 32px; }
}

.bento-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px var(--shadow-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px var(--shadow-color);
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 2px 2px 0px var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- REGISTRATION FORM CARD --- */
.reg-container {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

.reg-card {
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    box-shadow: 8px 8px 0px var(--shadow-color);
    border-radius: 20px;
    padding: 32px;
}

.reg-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.reg-card p {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-neo {
    background: var(--card-bg-subtle);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
    outline: none;
    transition: all 0.15s ease;
    width: 100%;
}

.input-neo:focus {
    background: #FFFFFF;
    box-shadow: 3px 3px 0px var(--accent-purple);
    border-color: var(--border-color);
}

.session-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.session-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card-bg-subtle);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s ease;
}

.session-radio:hover {
    background: #FFFFFF;
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.session-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-purple);
}

.session-radio.active-session {
    background: var(--accent-purple-light);
    border-color: var(--border-color);
    box-shadow: 3px 3px 0px var(--shadow-color);
}

.btn-neo {
    background: var(--accent-purple);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px var(--shadow-color);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-neo:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px var(--shadow-color);
}

.btn-neo:active {
    transform: translateY(2px);
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.btn-yellow { background: var(--accent-yellow); color: #000000; }
.btn-green { background: var(--accent-green); color: #000000; }
.btn-pink { background: var(--accent-pink); color: #FFFFFF; }
.btn-blue { background: var(--accent-blue); color: #FFFFFF; }

/* --- WEBINAR BROADCAST ROOM (`watch.php`) --- */
.room-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1024px) {
    .room-grid { grid-template-columns: 1fr; }
}

.video-container {
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    box-shadow: 6px 6px 0px var(--shadow-color);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-player-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0F172A;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.badge-live-red {
    background: #DC2626;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 12px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    box-shadow: 2px 2px 0px #000000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-viewers {
    background: #0F172A;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    box-shadow: 2px 2px 0px #000000;
}

/* Animated Placeholder Player Details */
.placeholder-canvas-content {
    text-align: center;
    color: #FFFFFF;
    padding: 24px;
    z-index: 5;
}

.placeholder-canvas-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-yellow);
}

.placeholder-canvas-content p {
    font-size: 15px;
    color: #94A3B8;
    max-width: 500px;
    margin: 0 auto 20px;
}

.code-animation-box {
    background: #1E293B;
    border: 2px solid #334155;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-green-light);
    text-align: left;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.speaker-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
    border-top: 2px solid #F1F5F9;
}

.speaker-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.speaker-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-purple-light);
    border: 2px solid var(--border-color);
    box-shadow: 2px 2px 0px var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* --- SIDE PANEL (INTERACTIVE TABS) --- */
.side-panel {
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    box-shadow: 6px 6px 0px var(--shadow-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 640px;
    overflow: hidden;
}

.panel-tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    background: var(--card-bg-subtle);
}

.tab-btn {
    flex: 1;
    padding: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.15s ease;
    border-right: 1px solid #E2E8F0;
    text-align: center;
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active-tab {
    background: #FFFFFF;
    color: var(--text-main);
    border-bottom: 3px solid var(--accent-purple);
}

.tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.participant-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #F8FAFC;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    animation: fadeIn 0.25s ease;
}

.chat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #F8FAFC;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 13px;
    animation: slideUp 0.25s ease;
}

.chat-author {
    font-weight: 700;
    font-size: 12px;
    color: var(--accent-purple);
    display: flex;
    justify-content: space-between;
}

.chat-input-area {
    padding: 12px;
    border-top: 2px solid var(--border-color);
    background: #FFFFFF;
    display: flex;
    gap: 8px;
}

/* --- OFFER BENTO MODAL (CHECKOUT & MANUAL PAYMENT) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.offer-modal-box {
    background: var(--card-bg);
    border: 4px solid var(--border-color);
    box-shadow: 12px 12px 0px var(--shadow-color);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    animation: zoomIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card-bg-subtle);
    border: 2px solid var(--border-color);
    box-shadow: 2px 2px 0px var(--shadow-color);
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
    background: #FFFFFF;
    border: 3px solid var(--border-color);
    box-shadow: 6px 6px 0px var(--shadow-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.15s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: var(--accent-yellow-light);
    border-color: var(--border-color);
    box-shadow: 8px 8px 0px var(--accent-purple);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--accent-purple);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    padding: 4px 12px;
    border: 2px solid var(--border-color);
    border-radius: 99px;
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin: 12px 0;
}

.price-tag strike {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 8px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 24px;
    font-size: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- MANUAL PAYMENT IBAN & CRYPTO TABS --- */
.pay-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pay-tab-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg-subtle);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--shadow-color);
    transition: all 0.15s ease;
}

.pay-tab-btn.active {
    background: var(--accent-purple-light);
    box-shadow: 4px 4px 0px var(--shadow-color);
    transform: translateY(-2px);
}

.copy-box {
    background: #F1F5F9;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-mono);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.btn-copy {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 1px 1px 0px var(--shadow-color);
}

/* --- ENHANCED LANDING PAGE SECTIONS (COURFY / VIBE CODING STYLE) --- */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 40px auto 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 850px) {
    .grid-2 { grid-template-columns: 1fr; }
}

.module-card {
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    box-shadow: 6px 6px 0px var(--shadow-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.15s ease;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 0px var(--shadow-color);
}

.module-num {
    background: var(--accent-purple);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    padding: 8px 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 2px 2px 0px var(--shadow-color);
    flex-shrink: 0;
}

.module-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-main);
}

.module-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.testimonial-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px var(--shadow-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.star-rating {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.test-quote {
    font-size: 15px;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1.5px solid #E2E8F0;
    padding-top: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-blue-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.faq-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px var(--shadow-color);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.faq-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 26px;
}

.guarantee-box {
    background: var(--accent-green-light);
    border: 3px solid var(--border-color);
    box-shadow: 8px 8px 0px var(--shadow-color);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 768px) {
    .guarantee-box { flex-direction: column; text-align: center; }
}

/* --- FOMO EVERGREEN MECHANICS STYLES --- */
.fomo-top-banner {
    background: #0F172A;
    color: #FFFFFF;
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 2px solid #000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.fomo-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.fomo-badge-flame {
    background: #DC2626;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #FFFFFF;
}

.fomo-banner-cta {
    background: var(--accent-yellow);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    border: 1.5px solid #000000;
    box-shadow: 2px 2px 0px #000000;
    transition: transform 0.1s ease;
}

.fomo-banner-cta:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px #000000;
}

.hero-fomo-box {
    background: #FEF2F2;
    border: 3px solid #DC2626;
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 620px;
    margin: 24px auto 0;
    box-shadow: 6px 6px 0px #991B1B;
    text-align: left;
}

.fomo-timer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #FECACA;
    padding-bottom: 12px;
    margin-bottom: 12px;
    gap: 12px;
    flex-wrap: wrap;
}

.timer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: #991B1B;
    font-weight: 800;
}

.timer-digits {
    background: #000000;
    color: var(--accent-yellow);
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    border: 2px solid #DC2626;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.seat-progress-row {
    width: 100%;
}

.seat-bar-bg {
    width: 100%;
    height: 14px;
    background: #FEE2E2;
    border: 2px solid #991B1B;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.seat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #EF4444, #DC2626);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fomo-bonus-banner {
    background: #FEF3C7;
    border: 2px solid #D97706;
    color: #92400E;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    box-shadow: 2px 2px 0px #B45309;
}

.fomo-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 6px 6px 0px #000000;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    max-width: 340px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.fomo-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.fomo-toast-icon {
    font-size: 24px;
    background: #DC2626;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid #000000;
    box-shadow: 2px 2px 0px #000000;
}

.fomo-toast-text {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.4;
}

/* --- BRAND LOGO & STORY SHOWCASE STYLES --- */
.brand-logo-img {
    height: 42px;
    width: auto;
    display: block;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 768px) {
    .brand-logo-img {
        height: 34px;
    }
}
.logo-link:hover .brand-logo-img {
    transform: scale(1.06) rotate(-2deg);
}

.brand-story-pill {
    position: relative;
    background: #FEF3C7;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #92400E;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 2px 2px 0px #000000;
    transition: all 0.15s ease;
}

.brand-story-pill:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #000000;
}

.story-tooltip {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 320px;
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 8px 8px 0px #000000;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    text-align: left;
}

.brand-story-pill:hover .story-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.tooltip-header {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-purple);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.story-tooltip p {
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
}

.tooltip-badge {
    background: #000000;
    color: var(--accent-yellow);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.brand-story-showcase {
    background: #FFFFFF;
    border: 4px solid #000000;
    border-radius: 24px;
    padding: 28px;
    margin: 24px auto 32px;
    max-width: 950px;
    box-shadow: 10px 10px 0px #000000;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.showcase-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border: 3px solid #000000;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 4px 4px 0px #000000;
}

.showcase-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.2));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-story-showcase:hover .showcase-logo {
    transform: scale(1.05) rotate(1deg);
}

.showcase-badge-neo {
    background: #000000;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    margin-top: 16px;
    letter-spacing: 0.5px;
    border: 1.5px solid #FFFFFF;
}

.showcase-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 6px;
}

.showcase-text-col h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.showcase-text-col h3 span {
    color: var(--accent-purple);
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-decoration-thickness: 4px;
}

.showcase-text-col > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-box-item {
    border: 2.5px solid #000000;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 3px 3px 0px #000000;
}

@media (max-width: 850px) {
    .brand-story-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
        text-align: center;
    }
    .story-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --- NAVBAR LINKS (NEO PREMIUM PILLS) --- */
.nav-links-neo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 16px;
    background: #F8FAFC;
    padding: 6px 10px;
    border: 2px solid #000000;
    border-radius: 99px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}
.nav-links-neo a {
    color: #0F172A;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 6px 14px;
    border-radius: 99px;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}
.nav-links-neo a:hover {
    background: var(--accent-yellow);
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 3px 3px 0px #000000;
}
@media (max-width: 980px) {
    .nav-links-neo { display: none; }
}

/* --- VS COMPARISON TABLE (NEO) --- */
.vs-grid-neo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 0 auto 60px;
    max-width: 1050px;
}
.vs-card-old, .vs-card-new {
    border: 3.5px solid #000000;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 8px 8px 0px #000000;
    position: relative;
    text-align: left;
}
.vs-card-old {
    background: #FFF0F0;
}
.vs-card-new {
    background: #E8FDF2;
}
.vs-badge-old, .vs-badge-new {
    display: inline-block;
    padding: 6px 14px;
    border: 2px solid #000000;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 3px 3px 0px #000000;
    margin-bottom: 16px;
}
.vs-badge-old { background: #DC2626; color: #FFFFFF; }
.vs-badge-new { background: #00FF66; color: #000000; }
.vs-card-old h3, .vs-card-new h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
}
.vs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vs-list li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
@media (max-width: 850px) {
    .vs-grid-neo { grid-template-columns: 1fr; gap: 24px; }
}

/* --- EXTENSION SHOWCASE (NEO) --- */
.extension-showcase-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    background: #FFFFFF;
    border: 4px solid #000000;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 12px 12px 0px #000000;
    margin: 0 auto 60px;
    max-width: 1050px;
    text-align: left;
}
.ext-mockup-neo {
    background: #F8FAFC;
    border: 3px solid #000000;
    border-radius: 16px;
    box-shadow: 6px 6px 0px #000000;
    overflow: hidden;
}
.ext-mockup-header {
    background: #E2E8F0;
    border-bottom: 2.5px solid #000000;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dot-red, .dot-yellow, .dot-green {
    width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid #000;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }
.ext-mockup-body {
    padding: 20px;
}
.ext-text-col h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 14px;
}
.ext-text-col p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.ext-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ext-feat-item {
    background: #F1F5F9;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    box-shadow: 3px 3px 0px #000000;
    color: var(--text-main);
}
@media (max-width: 850px) {
    .extension-showcase-box { grid-template-columns: 1fr; padding: 24px; text-align: center; }
}

/* --- STEPS GUIDE (NEO) --- */
.steps-grid-neo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto 60px;
    max-width: 1100px;
}
.step-card-neo {
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 6px 6px 0px #000000;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}
.step-card-neo:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px #000000;
}
.step-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    background: #FEF3C7;
    color: #92400E;
    border: 2px solid #000000;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 2px 2px 0px #000000;
    margin-bottom: 14px;
}
.step-card-neo h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}
.step-card-neo p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1000px) {
    .steps-grid-neo { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .steps-grid-neo { grid-template-columns: 1fr; }
}

/* --- PRICING TABLES (NEO) --- */
.pricing-grid-neo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0 auto 70px;
    max-width: 1100px;
    align-items: stretch;
}
.pricing-card-neo {
    background: #FFFFFF;
    border: 3.5px solid #000000;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 8px 8px 0px #000000;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease;
}
.pricing-card-neo:hover {
    transform: translateY(-5px);
}
.featured-pricing {
    box-shadow: 12px 12px 0px #000000;
}
.featured-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC2626;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    border: 2px solid #000000;
    box-shadow: 3px 3px 0px #000000;
    white-space: nowrap;
}
.pricing-tier {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pricing-price span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}
.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 16px;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
@media (max-width: 950px) {
    .pricing-grid-neo { grid-template-columns: 1fr; gap: 36px; }
    .featured-pricing { transform: none; }
}

/* --- FOOTER (NEO) --- */
.footer-neo {
    background: #FFFFFF;
    border-top: 4px solid #000000;
    padding: 48px 24px 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 36px;
    max-width: 1140px;
    margin: 0 auto 40px;
    text-align: left;
}
.footer-col-links h5, .footer-col-security h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
    border-bottom: 2px solid #000000;
    padding-bottom: 6px;
    display: inline-block;
}
.footer-col-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.15s ease;
}
.footer-col-links a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}
.sec-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sec-badge-item {
    background: #F8FAFC;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    box-shadow: 2px 2px 0px #000000;
}
.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}
@media (max-width: 850px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 550px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- PWA MOBILE BOTTOM APP BAR (MOBILE FIRST ARCHITECTURE) --- */
.pwa-bottom-bar {
    display: none;
}
@media (max-width: 980px) {
    .pwa-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 12px;
        left: 12px;
        right: 12px;
        z-index: 99999;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 3px solid #000000;
        border-radius: 28px;
        padding: 8px 12px;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0px 8px 0px #000000, 0 12px 28px rgba(0,0,0,0.25);
    }
    .pwa-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #475569;
        font-size: 11px;
        font-weight: 800;
        font-family: var(--font-heading);
        transition: all 0.15s ease;
        padding: 4px 8px;
    }
    .pwa-nav-item:active, .pwa-nav-item:hover {
        color: #000000;
        transform: translateY(-2px);
    }
    .pwa-icon {
        font-size: 20px;
        margin-bottom: 2px;
    }
    .pwa-nav-center .pwa-icon-center {
        background: var(--accent-yellow);
        color: #000000;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 2.5px solid #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 3px 3px 0px #000000;
        margin-top: -20px;
        transition: all 0.2s ease;
    }
    .pwa-nav-center:active .pwa-icon-center {
        transform: scale(0.92);
        box-shadow: 0px 0px 0px #000000;
    }
    /* Add padding to body so bottom bar doesn't overlap content */
    body {
        padding-bottom: 96px !important;
    }
    /* Adjust fomo toast on mobile */
    .fomo-toast {
        bottom: 92px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        max-width: none !important;
        border-radius: 14px !important;
    }
    /* Mobile-first touch enhancements */
    .bento-grid, .vs-grid-neo, .steps-grid-neo, .pricing-grid-neo {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .ext-visual-col, .ext-text-col {
        width: 100% !important;
    }
    .btn-neo, .btn-primary {
        min-height: 52px !important;
        font-size: 16px !important;
        padding: 14px 20px !important;
    }
}

