/* ═══════════════════════════════════════════════════════
   FRICTION GENIE - INDIE BOOTSTRAP THEME
   Complete stylesheet for all pages
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    /* Colors */
    --ink: #1a1a2e;
    --ink-soft: #4a4a6a;
    --ink-muted: #9090b0;
    --cream: #faf9f6;
    --cream-dark: #f0ede6;
    --genie: #6c4fd8;
    --genie-light: #ede9fb;
    --genie-dark: #4a32b0;
    --gold: #e8a020;
    --gold-light: #fef6e7;
    --ocean: #2c9bb8;
    --ocean-light: #e7f6fa;
    --sunset: #f56565;
    --sunset-light: #fff5f5;
    --forest: #48bb78;
    --forest-light: #f0fff4;
    --lavender: #9f7aea;
    --lavender-light: #faf5ff;
    --border: #e2ddd8;

    /* Fonts */
    --font-serif: 'Instrument Serif', serif;
    --font-sans: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* ── Global Resets & Base ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

img {
    max-width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR - Universal
   ═══════════════════════════════════════════════════════ */

.fg-nav {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.fg-nav.minimal {
    backdrop-filter: none;
    background: white;
}

.fg-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--genie);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
}

.fg-logo:hover {
    color: var(--genie-dark);
}

.logo-sparkle {
    font-size: 1.2rem;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--genie);
    transition: width 0.3s;
}

.nav-menu .nav-link:hover {
    color: var(--genie);
}

.nav-menu .nav-link:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-nav-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
}

.btn-nav-secondary:hover {
    color: var(--genie);
    background: var(--genie-light);
}

.btn-nav-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    background: var(--genie);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-primary:hover {
    background: var(--genie-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 79, 216, 0.3);
}

.btn-nav-text {
    font-size: 0.85rem;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-nav-text:hover {
    color: var(--genie);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--ink-soft);
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu-link:hover {
    background: var(--genie-light);
    color: var(--genie);
}

.mobile-menu-link.highlighted {
    background: var(--genie);
    color: white;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

/* Credit Display */
.credit-display {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding: 0.4rem 0.8rem;
    background: var(--cream);
    border-radius: 8px;
}

.credit-badge {
    background: var(--genie-light);
    color: var(--genie);
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Add Credits Button */
.btn-add-credits {
    background: var(--genie);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-add-credits:hover {
    background: var(--genie-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 79, 216, 0.3);
}

/* User Dropdown */
.user-dropdown .dropdown-toggle {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    font-weight: 500;
}

.user-dropdown .dropdown-toggle:hover {
    background: var(--cream-dark);
    border-color: var(--genie);
}

.user-dropdown .dropdown-toggle::after {
    margin-left: 0;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--genie-light);
    color: var(--genie);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.user-dropdown .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    min-width: 200px;
    margin-top: 0.5rem;
}

.user-dropdown .dropdown-item {
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.user-dropdown .dropdown-item:hover {
    background: var(--genie-light);
    color: var(--genie);
}

.user-dropdown .dropdown-item .item-icon {
    width: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--border);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION - Landing Page
   ═══════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 79, 216, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--genie-light);
    color: var(--genie);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease 0.1s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--genie) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.6s ease 0.3s both;
}

.btn-hero-primary {
    padding: 1rem 2rem;
    background: var(--genie);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-primary:hover {
    background: var(--genie-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 79, 216, 0.3);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    background: white;
    color: var(--ink-soft);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-secondary:hover {
    border-color: var(--genie);
    color: var(--genie);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: fadeUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeUp 0.8s ease 0.5s both;
}

.visual-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.visual-card i {
    font-size: 1.5rem;
}

.visual-card.card-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.visual-card.card-1 i {
    color: var(--gold);
}

.visual-card.card-2 {
    top: 50%;
    right: 15%;
    animation: float 6s ease-in-out 1s infinite;
}

.visual-card.card-2 i {
    color: var(--ocean);
}

.visual-card.card-3 {
    bottom: 15%;
    left: 25%;
    animation: float 6s ease-in-out 2s infinite;
}

.visual-card.card-3 i {
    color: var(--genie);
}

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════ */

.features-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--cream);
    color: var(--ink-soft);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--genie);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon.genie {
    background: var(--genie-light);
    color: var(--genie);
}

.feature-icon.gold {
    background: var(--gold-light);
    color: var(--gold);
}

.feature-icon.ocean {
    background: var(--ocean-light);
    color: var(--ocean);
}

.feature-icon.sunset {
    background: var(--sunset-light);
    color: var(--sunset);
}

.feature-icon.forest {
    background: var(--forest-light);
    color: var(--forest);
}

.feature-icon.lavender {
    background: var(--lavender-light);
    color: var(--lavender);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════ */

.how-it-works-section {
    padding: 6rem 0;
    background: var(--cream);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr 100px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--genie-light);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

.step-visual {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--genie-light);
    color: var(--genie);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-connector {
    height: 60px;
    width: 2px;
    background: var(--border);
    margin-left: 40px;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--genie);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--genie);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.fg-footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--genie);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--cream);
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--genie-light);
    color: var(--genie);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--ink-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--genie);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.footer-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   AUTH PAGES (Login & Register)
   ═══════════════════════════════════════════════════════ */

.auth-body {
    background: var(--cream);
}

.auth-container {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.auth-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(60px);
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--genie-light);
    top: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    bottom: 20%;
    right: 10%;
    animation: float 18s ease-in-out 3s infinite;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--ocean-light);
    top: 50%;
    right: 30%;
    animation: float 20s ease-in-out 6s infinite;
}

.auth-card {
    position: relative;
    z-index: 1;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    animation: fadeUp 0.6s ease both;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--genie-light);
    color: var(--genie);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.auth-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin: 0;
}

/* Auth Form */
.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.fg-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--genie);
}

.label-link:hover {
    text-decoration: underline;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.input-with-icon .fg-input {
    padding-left: 3rem;
    padding-right: 3rem;
}

.input-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.input-toggle:hover {
    color: var(--genie);
}

.fg-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--cream);
    transition: all 0.2s;
    outline: none;
}

.fg-input:focus {
    border-color: var(--genie);
    box-shadow: 0 0 0 3px rgba(108, 79, 216, 0.1);
    background: white;
}

.fg-input.error {
    border-color: var(--sunset);
    background: var(--sunset-light);
}

.form-error {
    font-size: 0.8rem;
    color: var(--sunset);
    margin-top: 0.4rem;
    display: block;
}

/* Password Strength */
.password-strength {
    margin-top: 0.75rem;
}

.strength-bar {
    height: 4px;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s;
    background: var(--ink-muted);
}

.strength-fill.weak {
    background: var(--sunset);
}

.strength-fill.medium {
    background: var(--gold);
}

.strength-fill.strong {
    background: var(--forest);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--ink-muted);
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--genie);
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.checkbox-label a {
    color: var(--genie);
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Auth Buttons */
.btn-auth-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--genie);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-auth-primary:hover:not(:disabled) {
    background: var(--genie-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 79, 216, 0.3);
}

.btn-auth-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--ink-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Social Auth */
.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    padding: 0.75rem 1rem;
    background: white;
    color: var(--ink-soft);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-social:hover {
    border-color: var(--genie);
    color: var(--genie);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.auth-footer a {
    color: var(--genie);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Features */
.auth-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeUp 0.6s ease 0.2s both;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.auth-feature-item i {
    color: var(--genie);
}

/* ═══════════════════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════════════════ */

.dashboard-body {
    background: var(--cream);
}

/* Dashboard Navbar */
.dash-nav {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.dash-nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dash-search {
    position: relative;
    display: flex;
    align-items: center;
}

.dash-search i {
    position: absolute;
    left: 1rem;
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.dash-search input {
    width: 300px;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    font-size: 0.85rem;
    color: var(--ink);
    outline: none;
    transition: all 0.2s;
}

.dash-search input:focus {
    border-color: var(--genie);
    background: white;
    box-shadow: 0 0 0 3px rgba(108, 79, 216, 0.1);
}

.dash-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon-nav {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-nav:hover {
    background: var(--cream-dark);
    border-color: var(--genie);
    color: var(--genie);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sunset);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notification Dropdown */
.notification-menu {
    width: 360px;
    max-height: 500px;
    overflow-y: auto;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--ink);
}

.btn-mark-read {
    background: none;
    border: none;
    color: var(--genie);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.btn-mark-read:hover {
    text-decoration: underline;
}

.notification-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.notification-item:hover {
    background: var(--cream);
}

.notification-item.unread {
    background: var(--genie-light);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon.genie {
    background: var(--genie-light);
    color: var(--genie);
}

.notification-icon.gold {
    background: var(--gold-light);
    color: var(--gold);
}

.notification-icon.ocean {
    background: var(--ocean-light);
    color: var(--ocean);
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 0.85rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.notification-footer {
    padding: 0.75rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.notification-footer a {
    font-size: 0.85rem;
    color: var(--genie);
    font-weight: 500;
}

.notification-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Layout */
.dash-layout {
    display: flex;
    min-height: calc(100vh - 70px);
}

/* Sidebar */
.dash-sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.btn-sidebar-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--genie);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-sidebar-primary:hover {
    background: var(--genie-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 79, 216, 0.3);
}

.sidebar-nav {
    flex: 1;
}

.sidebar-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin: 1.5rem 0 0.75rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.sidebar-link:hover {
    background: var(--genie-light);
    color: var(--genie);
}

.sidebar-link.active {
    background: var(--genie-light);
    color: var(--genie);
}

.sidebar-link i {
    width: 18px;
    font-size: 0.95rem;
}

.sidebar-link span:not(.sidebar-badge) {
    flex: 1;
}

.sidebar-badge {
    background: var(--cream-dark);
    color: var(--ink-soft);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sidebar-link.active .sidebar-badge {
    background: var(--genie);
    color: white;
}

/* Usage Widget */
.usage-widget {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.usage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.usage-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
}

.usage-value {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
}

.usage-bar {
    height: 6px;
    background: var(--cream-dark);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.usage-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--genie), var(--lavender));
    border-radius: 3px;
    transition: width 0.5s;
}

.usage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.usage-footer span {
    color: var(--ink-muted);
}

.usage-footer a {
    color: var(--genie);
    font-weight: 600;
}

.usage-footer a:hover {
    text-decoration: underline;
}

/* Mobile Sidebar Toggle */
.mobile-sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
.dash-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.dash-header {
    margin-bottom: 2rem;
}

.dash-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.dash-subtitle {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin: 0;
}

/* Stat Cards */
.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-icon.genie {
    background: var(--genie-light);
    color: var(--genie);
}

.stat-icon.gold {
    background: var(--gold-light);
    color: var(--gold);
}

.stat-icon.ocean {
    background: var(--ocean-light);
    color: var(--ocean);
}

.stat-icon.sunset {
    background: var(--sunset-light);
    color: var(--sunset);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.stat-change {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-change.positive {
    color: var(--forest);
}

.stat-change.negative {
    color: var(--sunset);
}

.stat-change.neutral {
    color: var(--ink-muted);
}

/* Dashboard Section */
.dash-section {
    margin-bottom: 3rem;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title-inline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}

.btn-text-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--genie);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-text-link:hover {
    text-decoration: underline;
}

/* Genies Grid */
.genies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.genie-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.genie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--genie);
}

.genie-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.25rem 0;
}

.genie-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.genie-status.processing {
    background: var(--ocean-light);
    color: var(--ocean);
}

.genie-status.complete {
    background: var(--forest-light);
    color: var(--forest);
}

.genie-actions {
    display: flex;
    gap: 0.25rem;
}

.btn-genie-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: none;
    border: none;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-genie-action:hover {
    background: var(--cream);
    color: var(--genie);
}

.btn-genie-action.active {
    color: var(--genie);
}

.genie-card-body {
    padding: 1.25rem;
}

.genie-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--cream);
    color: var(--ink-soft);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.genie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.genie-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.genie-card-footer {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.genie-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.genie-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.genie-sentiment {
    display: flex;
    gap: 0.5rem;
}

.sentiment-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sentiment-badge.positive {
    background: var(--forest-light);
    color: var(--forest);
}

.sentiment-badge.neutral {
    background: var(--gold-light);
    color: var(--gold);
}

.sentiment-badge.negative {
    background: var(--sunset-light);
    color: var(--sunset);
}

/* Quick Action Cards */
.quick-action-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
    height: 100%;
}

.quick-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.qac-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.qac-icon.genie {
    background: var(--genie-light);
    color: var(--genie);
}

.qac-icon.gold {
    background: var(--gold-light);
    color: var(--gold);
}

.qac-content {
    flex: 1;
}

.qac-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.qac-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.btn-qac {
    background: none;
    border: none;
    color: var(--genie);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.btn-qac:hover {
    gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    /* Dashboard Sidebar */
    .dash-sidebar {
        position: fixed;
        left: -260px;
        top: 70px;
        z-index: 99;
        transition: left 0.3s;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .dash-sidebar.show {
        left: 0;
    }

    .mobile-sidebar-toggle {
        display: block;
    }

    .dash-search {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .fg-nav {
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .dash-nav-right .credit-display span:not(.credit-badge) {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: 4rem 0 5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-visual {
        display: none;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .steps-container .step-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-visual {
        display: none;
    }

    .step-connector {
        display: none;
    }

    /* Auth */
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-features {
        flex-direction: column;
        gap: 1rem;
    }

    /* Dashboard */
    .dash-main {
        padding: 1.5rem 1rem;
    }

    .genies-grid {
        grid-template-columns: 1fr;
    }

    .social-auth {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .dash-title {
        font-size: 1.5rem;
    }
}



/* ═══════════════════════════════════════════════════════
   PRICING SECTION - Add this to your styles.css
   ═══════════════════════════════════════════════════════ */

.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--genie);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--genie-light) 0%, white 100%);
    border: 2px solid var(--genie);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--genie);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-plan {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--ink-muted);
    margin-top: 0.5rem;
}

.price-amount {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
}

.pricing-body {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.85rem;
}

.pricing-features li i.fa-check {
    color: var(--forest);
}

.pricing-features li i.fa-times {
    color: var(--ink-muted);
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.pricing-note strong {
    color: var(--genie);
    font-size: 0.95rem;
}

.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--cream-dark);
    color: var(--ink-soft);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-pricing:hover {
    background: var(--genie);
    color: white;
    border-color: var(--genie);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(108, 79, 216, 0.3);
}

.btn-pricing.primary {
    background: var(--genie);
    color: white;
    border-color: var(--genie);
}

.btn-pricing.primary:hover {
    background: var(--genie-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(108, 79, 216, 0.4);
}

/* Pricing Notes */
.pricing-notes {
    margin-top: 4rem;
}

.pricing-note-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.pricing-note-card:hover {
    transform: translateY(-4px);
    border-color: var(--genie);
}

.pricing-note-card i {
    font-size: 2rem;
    color: var(--genie);
    margin-bottom: 0.75rem;
}

.pricing-note-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.pricing-note-card p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════ */

.faq-section {
    padding: 6rem 0;
    background: var(--cream);
}

.faq-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--genie);
}

.faq-item .accordion-header {
    margin: 0;
}

.faq-item .accordion-button {
    background: white;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.5rem 1.75rem;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--genie-light);
    color: var(--genie-dark);
}

.faq-item .accordion-button::after {
    display: none;
}

.faq-item .accordion-button i {
    font-size: 0.85rem;
    color: var(--genie);
    transition: transform 0.3s;
}

.faq-item .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-item .accordion-button:hover {
    background: var(--genie-light);
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 0 1.75rem 1.5rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 4rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.faq-cta-content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.faq-cta-content p {
    font-size: 1rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--genie);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-faq-contact:hover {
    background: var(--genie-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 79, 216, 0.3);
    color: white;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .faq-item .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }
}


/* Mobile sidebar positioning */
@media (max-width: 991px) {
    .dash-sidebar {
        position: fixed;
        left: -280px; /* Hidden off-screen */
        transition: left 0.3s ease;
        z-index: 1050;
    }

    .dash-sidebar.show {
        left: 0; /* Slide in */
    }
}


/*       */
/* ═══════════════════════════════════════════════════════
   NEW GENIE PAGE - Add to styles.css
   ═══════════════════════════════════════════════════════ */

.new-genie-page {
    background: var(--cream);
    min-height: calc(100vh - 60px);
}

/* Page layout */
.page-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.page-header {
    margin-bottom: 2.5rem;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.page-header p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Mode toggle */
.mode-toggle {
    display: flex;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 2rem;
    width: fit-content;
    gap: 2px;
}

.mode-btn {
    border: none;
    background: none;
    padding: 0.5rem 1.2rem;
    border-radius: 7px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.mode-btn.active {
    background: var(--genie);
    color: white;
}

.mode-btn:not(.active):hover {
    background: var(--cream-dark);
    color: var(--ink);
}

/* Card (reuses existing styles but adds specific tweaks) */
.new-genie-page .fg-card {
    margin-bottom: 1rem;
    animation: fadeUp 0.3s ease both;
}

/* Form elements */
.fg-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
    display: block;
}

.fg-label .optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-muted);
    font-size: 0.75rem;
}

.fg-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
}

.fg-input:focus {
    border-color: var(--genie);
    box-shadow: 0 0 0 3px rgba(108, 79, 216, 0.1);
    background: white;
}

.fg-input::placeholder {
    color: var(--ink-muted);
}

textarea.fg-input {
    min-height: 100px;
}

textarea.fg-input.tall {
    min-height: 160px;
}

.char-count {
    font-size: 0.75rem;
    color: var(--ink-muted);
    text-align: right;
    margin-top: 0.3rem;
}

/* Guided form fields */
.guided-field {
    margin-bottom: 1.25rem;
}

.guided-field:last-child {
    margin-bottom: 0;
}

/* Hint box (for dump mode) */
.hint-box {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: var(--genie-light);
    border: 1px solid #ddd4f7;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.hint-icon {
    color: var(--genie);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Category chips */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    border: 1.5px solid var(--border);
    background: white;
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s;
}

.chip:hover {
    border-color: var(--genie);
    background: var(--genie-light);
    color: var(--genie-dark);
}

.chip.selected {
    background: var(--genie);
    border-color: var(--genie);
    color: white;
}

/* Submit area */
.submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1.5rem;
}

.cost-note {
    font-size: 0.85rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cost-note strong {
    color: var(--genie);
    font-weight: 600;
}

.btn-genie {
    border: none;
    background: var(--genie);
    color: white;
    border-radius: 10px;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-genie:hover {
    background: var(--genie-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(108, 79, 216, 0.3);
    color: white;
}

.btn-genie:active {
    transform: translateY(0);
}

.btn-genie .genie-icon {
    font-size: 1.1rem;
}

/* Disclaimer */
.disclaimer {
    font-size: 0.75rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-wrap {
        padding: 2rem 1rem 3rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .submit-area {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-genie {
        justify-content: center;
        width: 100%;
    }

    .cost-note {
        justify-content: center;
        order: 2;
    }

    .btn-genie {
        order: 1;
    }
}

@media (max-width: 480px) {
    .chip-group {
        gap: 0.4rem;
    }

    .chip {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
}


 .success-page {
     flex: 1;
     padding: 2.5rem 1.5rem 5rem;
     max-width: 680px;
     width: 100%;
 }

.success-page .page-header {
    margin-bottom: 2rem;
}

.success-page .page-header h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.success-page .page-header p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Queue status strip */
.queue-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--genie-light);
    border: 1px solid #ddd4f7;
    border-radius: 10px;
    padding: 0.875rem 1.1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--genie-dark);
}

.queue-orb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--genie);
    flex-shrink: 0;
    animation: pulse-orb 2s ease-in-out infinite;
}

@keyframes pulse-orb {
    0%, 100% { box-shadow: 0 0 0 0 rgba(108,79,216,0.4); }
    50%       { box-shadow: 0 0 0 5px rgba(108,79,216,0); }
}

.queue-strip .wait-pill {
    margin-left: auto;
    background: white;
    border: 1px solid #ddd4f7;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
    white-space: nowrap;
}

/* Idea summary card */
.idea-summary {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.idea-summary-header {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.idea-summary-header .card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ink-muted);
}

.idea-summary-header .mode-pill {
    font-size: 0.72rem;
    color: var(--ink-muted);
    background: var(--cream-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.idea-summary-body {
    padding: 1.25rem;
}

.idea-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.idea-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.idea-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--cream);
    border-radius: 20px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.idea-chip .chip-label {
    color: var(--ink-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Progress steps */
.progress-steps-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.steps-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.step-row:not(:last-child) {
    padding-bottom: 1.25rem;
}

.step-row:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    width: 2px;
    height: calc(100% - 12px);
    background: var(--border);
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--ink-muted);
    position: relative;
    z-index: 1;
}

.step-dot.done {
    border-color: var(--genie);
    background: var(--genie);
    color: white;
}

.step-dot.active {
    border-color: var(--genie);
    background: var(--genie-light);
    color: var(--genie);
}

.spin-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--genie);
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.step-info { padding-top: 0.2rem; }

.step-info .step-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.1rem;
}

.step-info .step-note {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

/* Actions */
.success-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-secondary-fg {
    padding: 0.875rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: white;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary-fg:hover {
    border-color: var(--genie);
    color: var(--genie);
}

@media (max-width: 576px) {
    .success-page { padding: 1.5rem 1rem 3rem; }
    .success-page .page-header h1 { font-size: 1.75rem; }
    .success-actions { flex-direction: column; }
}

.queue-strip--ready {
    background: var(--forest-light);
    border-color: var(--forest);
}
.queue-orb--ready {
    background: var(--forest);
    animation: none;
}
.wait-pill--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.wait-pill--link:hover {
    opacity: 0.8;
}
.forum-preview {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
.forum-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.post-count {
    font-size: 0.8rem;
    color: var(--ink-muted);
}
.forum-post-card {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.forum-post-card:last-child {
    border-bottom: none;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.post-username {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--genie);
}
.post-comment-count {
    font-size: 0.75rem;
    color: var(--ink-muted);
}
.post-title {
    font-weight: 600;
    margin-bottom: 6px;
}
.post-body-preview {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}
.post-top-comment {
    font-size: 0.8rem;
    color: var(--ink-muted);
    background: white;
    border-radius: 6px;
    padding: 8px 12px;
    border-left: 2px solid var(--border);
}
.comment-username {
    font-weight: 600;
    color: var(--ink);
    margin-right: 6px;
}
.more-posts-note {
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-align: center;
    padding-top: 12px;
    margin: 0;
}


/* ── Wide success page when forum is ready ── */
.success-page--wide {
    max-width: 820px;
}

/* ── Forum thread container ── */
.forum-thread {
    margin-bottom: 2rem;
}

.forum-thread-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* ── Individual post ── */
.forum-post {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s;
}

.forum-post:hover {
    border-color: #ddd4f7;
}

.forum-post-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--genie-light);
    color: var(--genie);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.fp-username {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--genie);
}

.fp-time {
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.fp-comment-count {
    font-size: 0.75rem;
    color: var(--ink-muted);
    white-space: nowrap;
}

.fp-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.fp-body {
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}

/* ── Comments ── */
.fp-comments {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fc-item {
    display: flex;
    gap: 0.75rem;
}

.fc-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.fc-avatar--sm {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
}

.fc-content {
    flex: 1;
}

.fc-meta {
    margin-bottom: 0.2rem;
}

.fc-username {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
}

.fc-body {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ── Replies ── */
.fc-replies {
    margin-top: 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fc-item--reply .fc-avatar {
    background: var(--lavender-light);
    color: var(--lavender);
}


/* ── Wide layout when forum is ready ── */
.success-page--wide {
    max-width: 820px;
}

/* ── Analysis summary verdict ── */
.analysis-summary {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.analysis-summary-icon {
    font-size: 1.2rem;
    color: var(--genie);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.analysis-summary p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
    font-style: italic;
}

/* ── Score dials grid ── */
.score-dials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.score-dial {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: border-color 0.2s, transform 0.2s;
}

.score-dial:hover {
    border-color: var(--dial-color);
    transform: translateY(-2px);
}

.dial-ring-wrap {
    position: relative;
    width: 80px;
    height: 80px;
}

.dial-svg {
    width: 80px;
    height: 80px;
}

.dial-arc {
    transition: stroke-dasharray 1s ease;
}

.dial-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dial-color);
}

.dial-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    text-align: center;
}

@media (max-width: 600px) {
    .score-dials {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Forum thread ── */
.forum-thread {
    margin-bottom: 2rem;
}

.forum-thread-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* ── Forum post card ── */
.forum-post {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s;
}

.forum-post:hover {
    border-color: #ddd4f7;
}

.forum-post-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--genie-light);
    color: var(--genie);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.fp-username {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--genie);
}

.fp-time {
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.fp-comment-count {
    font-size: 0.75rem;
    color: var(--ink-muted);
    white-space: nowrap;
}

.fp-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.fp-body {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}

/* ── Comments ── */
.fp-comments {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fc-item {
    display: flex;
    gap: 0.75rem;
}

.fc-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.fc-avatar--sm {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
}

.fc-content {
    flex: 1;
}

.fc-meta {
    margin-bottom: 0.2rem;
}

.fc-username {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
}

.fc-body {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ── Replies ── */
.fc-replies {
    margin-top: 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fc-item--reply .fc-avatar {
    background: var(--lavender-light);
    color: var(--lavender);
}



/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.comparison-card.featured {
    border: 3px solid #6366f1;
    transform: scale(1.02);
}

.comparison-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.comparison-badge {
    position: absolute;
    top: -1px;
    right: 30px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.comparison-header {
    padding: 40px 30px 30px;
    border-bottom: 2px solid #f1f5f9;
    text-align: center;
}

.comparison-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #64748b;
}

.comparison-card.frictiongenie .comparison-logo {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.comparison-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-label.generic {
    background: #fee2e2;
    color: #991b1b;
}

.comparison-label.thoughtful {
    background: #fef3c7;
    color: #92400e;
}

.comparison-label.real {
    background: #dcfce7;
    color: #166534;
}

.comparison-body {
    padding: 30px;
}

.comparison-intro {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

.comparison-questions {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comparison-questions li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #e2e8f0;
    transition: all 0.2s ease;
}

.comparison-questions.highlight li {
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
    border-left: 3px solid #6366f1;
}

.comparison-questions li:hover {
    background: #f1f5f9;
    border-left-color: #6366f1;
}

.question-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.comparison-questions.highlight .question-number {
    background: #6366f1;
    color: white;
}

.question-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}

.question-text em {
    color: #6366f1;
    font-style: normal;
    font-weight: 600;
}

.question-source {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
    font-style: italic;
}

.comparison-verdict {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.comparison-verdict.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.comparison-verdict i {
    font-size: 24px;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-verdict.success i {
    color: #16a34a;
}

.comparison-verdict p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #1e293b;
}

.comparison-verdict strong {
    color: #0f172a;
    display: block;
    margin-bottom: 4px;
}

/* Key Insight Box */
.comparison-insight {
    margin-top: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.comparison-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.insight-content {
    padding: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.insight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fbbf24;
    flex-shrink: 0;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.insight-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.insight-text p strong {
    color: #fbbf24;
    font-weight: 600;
}

.insight-cta {
    margin-top: 20px;
    font-size: 14px;
}

.insight-cta a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.insight-cta a:hover {
    color: #93c5fd;
}

/* Try It Yourself Box */
.try-yourself-box {
    margin-top: 50px;
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.try-yourself-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.try-yourself-box p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
}

.btn-try-yourself {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-try-yourself:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .comparison-card.featured {
        transform: scale(1);
    }

    .insight-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .comparison-body {
        padding: 20px;
    }

    .question-text {
        font-size: 13px;
    }

    .try-yourself-box {
        padding: 30px 20px;
    }
}

/* Simple Hero */
.hero-section-simple {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #f0f9ff 100%);
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e9d5ff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 30px;
}

.hero-title-simple {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-simple {
    font-size: 20px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 50px;
}

/* Simple Flow */
.simple-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.flow-step {
    flex: 1;
    text-align: center;
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: #64748b;
    transition: all 0.5s ease;
    transform: scale(1);
}

.flow-icon.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transform: scale(1.15);
}

/* Optional: Add a subtle pulse effect */
@keyframes pulse {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.2); }
}

.flow-icon.active {
    animation: pulse 1.5s ease-in-out infinite;
}

.flow-label {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.flow-example {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 24px;
    color: #cbd5e1;
    flex-shrink: 0;
}

/* CTA */
.hero-cta-simple {
    margin-top: 40px;
}

.btn-hero-simple-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-simple-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

.hero-cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: #64748b;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.trust-item i {
    color: #10b981;
    font-size: 18px;
}

/* What You Get */
.what-you-get-section {
    padding: 80px 0;
    background: white;
}

.section-header-simple {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-simple h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.section-header-simple p {
    font-size: 18px;
    color: #64748b;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #e9d5ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.benefit-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Mock Forum */
.mock-forum {
    width: 100%;
    max-width: 250px;
}

.mock-post {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #e2e8f0;
}

.mock-post.positive { border-left-color: #10b981; }
.mock-post.neutral { border-left-color: #f59e0b; }
.mock-post.critical { border-left-color: #ef4444; }

.mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    flex-shrink: 0;
}

.mock-text {
    flex: 1;
}

.mock-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 6px;
}

.mock-line.short {
    width: 60%;
}

/* Mock Scores */
.mock-scores {
    width: 100%;
    max-width: 250px;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.score-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    width: 70px;
}

.score-bar {
    flex: 1;
    height: 10px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
}

.score-number {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    width: 30px;
}

/* Mock Questions */
.mock-questions {
    width: 100%;
    max-width: 250px;
}

.mock-question {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: #f0f9ff;
    border-radius: 10px;
}

.mock-question i {
    color: #6366f1;
    font-size: 18px;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
}

.question-line {
    height: 6px;
    background: #dbeafe;
    border-radius: 3px;
    margin-bottom: 4px;
}

.question-line.short {
    width: 70%;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Who This Helps */
.who-this-helps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f0f9ff 100%);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.use-case-simple {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.use-case-simple:hover {
    border-color: #e9d5ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.use-case-icon.startup {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.use-case-icon.writer {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777;
}

.use-case-icon.marketer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.use-case-icon.creator {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #7c3aed;
}

.use-case-icon.designer {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.use-case-icon.anyone {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.use-case-simple h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.use-case-simple p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.use-case-example-text {
    font-size: 13px;
    color: #6366f1;
    font-style: italic;
    padding: 12px;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 3px solid #6366f1;
}

/* How Simple */
.how-simple-section {
    padding: 80px 0;
    background: white;
}

.simple-steps {
    max-width: 800px;
    margin: 0 auto;
}

.simple-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px dashed #e2e8f0;
}

.simple-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.simple-step.optional {
    opacity: 0.7;
}

.step-number-big {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.step-number-big.optional {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.step-content-simple {
    flex: 1;
}

.step-content-simple h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.optional-badge {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.step-content-simple p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.step-visual-example {
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

/* Example Visuals */
.example-input {
    max-width: 400px;
    margin: 0 auto;
}

.input-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.input-line.short {
    width: 60%;
}

.example-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #6366f1;
    font-weight: 600;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #e9d5ff;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.example-results {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.result-badge {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.result-badge.good {
    background: #d1fae5;
    color: #065f46;
}

.result-badge.warning {
    background: #fef3c7;
    color: #92400e;
}

.result-badge.critical {
    background: #fee2e2;
    color: #991b1b;
}

.example-improvement {
    display: flex;
    justify-content: center;
}

.improvement-arrow {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
}

.improvement-arrow .before {
    color: #ef4444;
}

.improvement-arrow .after {
    color: #10b981;
}

.improvement-arrow i {
    color: #6366f1;
}

/* Simple Pricing */
.pricing-simple-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
}

.pricing-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-simple-card {
    background: white;
    border: 3px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-simple-card.featured {
    border-color: #6366f1;
    transform: scale(1.05);
}

.pricing-simple-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-badge-simple {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-simple-header {
    margin-bottom: 30px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.pricing-icon.free {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.pricing-icon.paid {
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.pricing-simple-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.price-big {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.price-note {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.pricing-description {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

.pricing-simple-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.pricing-simple-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
}

.pricing-simple-list li i {
    color: #10b981;
    margin-top: 3px;
}

.pricing-simple-list li.disabled {
    opacity: 0.5;
}

.pricing-simple-list li.disabled i {
    color: #cbd5e1;
}

.pricing-value {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #1e40af;
    font-weight: 600;
    margin-top: 20px;
}

.btn-pricing-simple {
    display: block;
    width: 100%;
    padding: 14px;
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-pricing-simple:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-pricing-simple.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.btn-pricing-simple.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.pricing-simple-notes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.note-item i {
    color: #10b981;
}

/* FAQ Simple */
.faq-simple-section {
    padding: 80px 0;
    background: white;
}

.faq-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-simple-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.faq-simple-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-simple-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.faq-simple-item a {
    color: #6366f1;
    text-decoration: none;
}

.faq-simple-item a:hover {
    text-decoration: underline;
}

/* CTA Simple */
.cta-simple-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.cta-simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.cta-simple-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-simple-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-simple-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-cta-simple-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 50px;
    background: white;
    color: #6366f1;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-simple-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    color: #6366f1;
}

.cta-simple-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Simple */
.fg-footer-simple {
    background: #0f172a;
    padding: 40px 0;
}

.footer-simple-content {
    text-align: center;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links-simple {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links-simple a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links-simple a:hover {
    color: white;
}

.footer-simple-note {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-simple {
        font-size: 32px;
    }

    .hero-subtitle-simple {
        font-size: 16px;
    }

    .simple-flow {
        flex-direction: column;
        gap: 30px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .pricing-simple-card.featured {
        transform: scale(1);
    }

    .cta-simple-content h2 {
        font-size: 28px;
    }
}


/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-badge-comparison {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border: 2px solid #e9d5ff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 20px;
}

/* Tab Navigation */
.comparison-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.comparison-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-tab i {
    font-size: 18px;
}

.comparison-tab:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.comparison-tab.active {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.comparison-tab.featured {
    border-color: #7c3aed;
}

.comparison-tab.featured.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
}

.tab-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fbbf24;
    color: #78350f;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tab Content */
.comparison-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.comparison-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.comparison-card-tab {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.comparison-header-tab {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 2px solid #f1f5f9;
    text-align: center;
}

.comparison-label-tab {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.comparison-label-tab.generic {
    background: #fee2e2;
    color: #991b1b;
}

.comparison-label-tab.thoughtful {
    background: #fef3c7;
    color: #92400e;
}

.comparison-label-tab.real {
    background: #dcfce7;
    color: #166534;
}

.comparison-header-tab h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.comparison-header-tab p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.comparison-body-tab {
    padding: 40px;
}

/* Questions List */
.questions-list {
    margin-bottom: 40px;
}

.question-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #e2e8f0;
    transition: all 0.2s ease;
}

.question-item:hover {
    background: #f1f5f9;
    border-left-color: #6366f1;
}

.questions-list.highlight .question-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
    border-left-color: #6366f1;
}

.q-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.questions-list.highlight .q-number {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.q-content {
    flex: 1;
}

.q-text {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 10px;
}

.q-text strong {
    color: #6366f1;
    font-weight: 600;
}

.q-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.q-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6366f1;
    font-style: italic;
}

.q-source i {
    font-size: 12px;
}

/* Verdict Boxes */
.verdict-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    align-items: flex-start;
}

.verdict-box.bad {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.verdict-box.neutral {
    background: #fffbeb;
    border: 2px solid #fde68a;
}

.verdict-box.good {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.verdict-box i {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 3px;
}

.verdict-box.bad i {
    color: #dc2626;
}

.verdict-box.neutral i {
    color: #d97706;
}

.verdict-box.good i {
    color: #16a34a;
}

.verdict-box strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 8px;
}

.verdict-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #1e293b;
    margin: 0;
}

/* Key Insight Box */
.key-insight-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.key-insight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.insight-icon-big {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fbbf24;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.insight-text-big {
    flex: 1;
    position: relative;
    z-index: 1;
}

.insight-text-big h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.comparison-examples {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.example-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.example-row:last-child {
    margin-bottom: 0;
}

.example-label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-label.chatgpt-color {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
}

.example-label.fg-color {
    background: rgba(16, 185, 129, 0.2);
    color: #86efac;
}

.example-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.insight-conclusion {
    font-size: 18px;
    color: white;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Try It Box */
.try-it-box {
    margin-top: 50px;
    background: white;
    border: 3px dashed #cbd5e1;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.try-it-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.try-it-box p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-try-it {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-try-it:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-tabs {
        flex-direction: column;
    }

    .comparison-tab {
        width: 100%;
        justify-content: center;
    }

    .comparison-header-tab,
    .comparison-body-tab {
        padding: 30px 20px;
    }

    .question-item {
        flex-direction: column;
        gap: 12px;
    }

    .key-insight-box {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }

    .comparison-examples {
        padding: 20px;
    }

    .example-row {
        flex-direction: column;
        gap: 8px;
    }

    .try-it-box {
        padding: 30px 20px;
    }
}

/* Use Case Tabs (Level 1) */
.use-case-tabs-wrapper {
    margin: 40px 0;
}

.use-case-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.use-case-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.use-case-tab i {
    font-size: 28px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.use-case-tab span {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

.use-case-tab:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

.use-case-tab:hover i {
    color: #6366f1;
}

.use-case-tab.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.use-case-tab.active i {
    color: white;
}

.use-case-tab.active span {
    color: white;
}

/* Use Case Content */
.use-case-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.use-case-content.active {
    display: block;
}

.use-case-description {
    text-align: center;
    margin: 40px 0 30px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
}

.use-case-description h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.use-case-description p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .use-case-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .use-case-tab {
        min-width: auto;
        padding: 16px 20px;
    }

    .use-case-tab i {
        font-size: 24px;
    }

    .use-case-tab span {
        font-size: 12px;
    }
}

.btn-view-results {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-view-results:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-view-results i {
    font-size: 14px;
}

.insight-breakdown {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.insight-breakdown h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.breakdown-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-icon {
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.breakdown-icon i {
    font-size: 20px;
    color: #fbbf24;
}

.breakdown-text strong {
    display: block;
    font-size: 15px;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.breakdown-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
}
/* Comment Tags */
.fc-tags {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
}

.fc-tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    background: var(--tag-color, #9ca3af);
    color: white;
    opacity: 0.9;
}

/* Score Button - 4 mini dials */
.fc-score-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px 6px;
    margin-left: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.fc-score-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fc-score-btn svg {
    display: block;
}

/* Score Popup (modal overlay) */
.fc-scores-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.fc-scores-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fc-scores-popup-inner {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fc-scores-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.fc-scores-close:hover {
    background: #e5e7eb;
    color: #374151;
    transform: rotate(90deg);
}

/* Comment Score Dials (popup version) */
.comment-score-dials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.comment-score-dials .score-dial {
    text-align: center;
}

.comment-score-dials .dial-ring-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.comment-score-dials .dial-svg {
    width: 60px;
    height: 60px;
}

.comment-score-dials .dial-value {
    font-size: 16px;
    font-weight: 600;
}

.comment-score-dials .dial-label {
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


     /* Genie Dashboard Styles */
 .genie-dashboard-page {
     max-width: 900px;
     margin: 0 auto;
     padding: 2rem;
 }

/* Run Stack */
.run-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Run Card */
.run-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.2s ease;
}

.run-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.run-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.run-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    padding: 0.375rem 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.run-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
}

.run-status--complete {
    background: #f0fdf4;
    color: #16a34a;
}

.run-status--processing {
    background: #fef3c7;
    color: #d97706;
}

.run-status--pending {
    background: #f3f4f6;
    color: #6b7280;
}

.run-meta {
    margin-left: auto;
    font-size: 0.875rem;
    color: #6b7280;
}

.run-meta i {
    margin-right: 0.375rem;
}

.run-card-body {
    padding: 2rem 1.5rem;
}

/* Run Summary */
.run-summary {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.run-summary-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.run-summary p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1f2937;
}

/* Run Dials */
.run-dials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.run-dial {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.dial-svg {
    width: 100%;
    height: 100%;
}

.dial-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.dial-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.dial-label {
    font-size: 0.6875rem;
    color: #6b7280;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Run Stats */
.run-stats {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.run-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.run-stats i {
    color: #9ca3af;
}

/* Processing State */
.run-processing {
    text-align: center;
    padding: 2rem 1rem;
}

.processing-spinner {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.queue-orb {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c4fd8, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(108, 79, 216, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.run-processing h3 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: #111827;
}

.run-processing p {
    margin: 0 0 1rem;
    color: #6b7280;
    font-size: 0.9375rem;
}

.wait-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

/* Question Form */
.run-questions h3 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: #111827;
}

.run-questions > p {
    margin: 0 0 1.5rem;
    color: #6b7280;
    font-size: 0.9375rem;
}

.question-group {
    margin-bottom: 1.5rem;
}

.question-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.question-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s ease;
}

.question-input:focus {
    outline: none;
    border-color: #6c4fd8;
    box-shadow: 0 0 0 3px rgba(108, 79, 216, 0.1);
}

/* Buttons */
.btn-genie {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-genie--primary {
    background: linear-gradient(135deg, #6c4fd8, #8b5cf6);
    color: white;
}

.btn-genie--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 79, 216, 0.3);
}

/* Previous Genies Section */
.previous-genies-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem;
}

.previous-genies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.prev-genie-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.prev-genie-card:hover {
    border-color: #6c4fd8;
    box-shadow: 0 4px 12px rgba(108, 79, 216, 0.15);
    transform: translateY(-2px);
}

.prev-genie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.prev-genie-status {
    font-size: 1rem;
}

.prev-genie-status--complete {
    color: #16a34a;
}

.prev-genie-status--processing {
    color: #d97706;
}

.prev-genie-date {
    font-size: 0.8125rem;
    color: #9ca3af;
}

.prev-genie-idea {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
    margin: 0 0 1rem;
}

.prev-genie-scores {
    display: flex;
    gap: 1.5rem;
}

.prev-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prev-score-icon {
    font-size: 1rem;
}

.prev-score-value {
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .run-dials {
        grid-template-columns: repeat(2, 1fr);
    }

    .previous-genies-grid {
        grid-template-columns: 1fr;
    }
}




